:root {
  --ink: #07131f;
  --ink-2: #102330;
  --ink-3: #173547;
  --gold: #c5a15b;
  --gold-2: #e6d3a5;
  --paper: #f5f2eb;
  --paper-2: #ece7dd;
  --white: #ffffff;
  --text: #18242d;
  --muted: #64717a;
  --border: #dfe3e5;
  --success: #2f7354;
  --shadow: 0 18px 50px rgba(7, 19, 31, 0.12);
  --shadow-sm: 0 8px 24px rgba(7, 19, 31, 0.09);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold-2); color: var(--ink); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 68px 0; }
.section-paper { background: var(--paper); }
.section-dark { background: var(--ink); color: var(--white); }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head.center { text-align: center; margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #896d36;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold); }
.section-dark .eyebrow { color: var(--gold-2); }
h1, h2, h3, h4 { margin: 0; color: var(--ink); line-height: 1.15; letter-spacing: -0.025em; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
h1 { font-size: clamp(2.5rem, 5vw, 5.3rem); }
h2 { font-size: clamp(2rem, 3.7vw, 3.55rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0; }
.lead { color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 720px; }
.section-dark .lead { color: #c9d2d8; }
.gold { color: var(--gold); }

.skip-link { position: absolute; left: -9999px; top: 10px; z-index: 9999; padding: 10px 16px; background: var(--white); color: var(--ink); }
.skip-link:focus { left: 10px; }

.top-strip { background: #02080d; color: #d6dde2; font-size: 0.78rem; }
.top-strip .container { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.top-strip a:hover { color: var(--gold-2); }
.top-strip__right { display: flex; gap: 20px; align-items: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 19, 31, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand img { width: 54px; height: 54px; border-radius: 13px; object-fit: cover; }
.brand-copy strong { display: block; color: var(--gold-2); letter-spacing: 0.11em; font-size: 0.92rem; }
.brand-copy span { display: block; color: #aebbc3; font-size: 0.72rem; margin-top: 2px; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav a { color: #d8e0e5; font-size: 0.88rem; font-weight: 700; position: relative; padding: 10px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; background: var(--gold); transition: right .25s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.header-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border: 1px solid var(--gold); border-radius: 999px; color: var(--gold-2); font-weight: 800; font-size: 0.82rem; white-space: nowrap; }
.header-cta:hover { background: var(--gold); color: var(--ink); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: transparent; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 20px; height: 2px; background: var(--white); position: relative; transition: .2s ease; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 23px; border-radius: 999px; border: 1px solid transparent; font-weight: 800; font-size: 0.9rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--ink); box-shadow: 0 8px 22px rgba(197,161,91,.24); }
.btn-primary:hover { background: #d4b674; box-shadow: 0 13px 28px rgba(197,161,91,.32); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-3); }
.btn-outline { border-color: rgba(7,19,31,.24); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); background: var(--white); }
.section-dark .btn-outline { border-color: rgba(255,255,255,.25); color: var(--white); }
.section-dark .btn-outline:hover { border-color: var(--gold); color: var(--gold-2); background: transparent; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--ink); }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }

.home-hero { background: var(--paper); overflow: hidden; position: relative; }
.home-hero::before { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; border: 1px solid rgba(197,161,91,.24); right: -250px; top: -210px; }
.home-hero__grid { min-height: 700px; display: grid; grid-template-columns: 1.06fr .94fr; gap: 70px; align-items: center; padding: 78px 0; position: relative; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 760px; }
.hero-copy .lead { margin-top: 24px; }
.hero-copy .btns { margin-top: 34px; }
.hero-note { margin-top: 22px; display: flex; gap: 24px; flex-wrap: wrap; color: var(--muted); font-size: .84rem; font-weight: 700; }
.hero-note span { display: flex; align-items: center; gap: 7px; }
.hero-note span::before { content: "✓"; color: var(--success); font-weight: 900; }
.hero-visual { position: relative; min-height: 560px; }
.hero-image-main { position: absolute; inset: 0 0 40px 32px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(7,19,31,.6)); }
.hero-image-small { position: absolute; width: 220px; height: 270px; left: -18px; bottom: 0; border: 8px solid var(--paper); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-sm); }
.hero-image-small img { width: 100%; height: 100%; object-fit: cover; }
.hero-status { position: absolute; right: -26px; bottom: 18px; width: 245px; padding: 20px; border-radius: 18px; background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.hero-status small { color: var(--gold-2); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-status strong { display: block; margin-top: 6px; font-size: 1.15rem; }
.hero-status span { color: #b7c2c9; font-size: .82rem; }

.stats-band { background: var(--ink); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 30px; border-right: 1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--gold-2); font-size: clamp(1.9rem, 3vw, 3.2rem); line-height: 1; }
.stat span { display: block; color: #bdc8ce; font-size: .82rem; margin-top: 9px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.project-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); }
.project-card__image { height: 300px; position: relative; overflow: hidden; background: #d8d8d8; }
.project-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover .project-card__image img { transform: scale(1.035); }
.status { position: absolute; top: 18px; left: 18px; padding: 8px 12px; background: rgba(7,19,31,.9); color: var(--white); border-radius: 999px; font-size: .72rem; font-weight: 800; backdrop-filter: blur(8px); }
.status.live { background: rgba(197,161,91,.94); color: var(--ink); }
.project-card__body { padding: 24px; }
.project-card__meta { color: #8d6f34; font-size: .75rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 800; }
.project-card h3 { margin-top: 8px; }
.project-card p { color: var(--muted); font-size: .9rem; margin-top: 12px; }
.project-card .text-link { margin-top: 20px; font-size: .88rem; }
.project-grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.project-grid-4 .project-card__image { height: 390px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { padding: 32px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); }
.service-index { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); color: #8d6f34; font-weight: 900; }
.service-card h3 { margin-top: 24px; }
.service-card p { margin-top: 12px; color: var(--muted); font-size: .91rem; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; counter-reset: process; }
.process-item { position: relative; padding: 30px 24px 26px; border-left: 1px solid rgba(255,255,255,.12); }
.process-item:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.process-item::before { counter-increment: process; content: "0" counter(process); display: block; color: var(--gold); font-weight: 900; font-size: .78rem; letter-spacing: .12em; margin-bottom: 30px; }
.process-item h3 { font-size: 1.05rem; }
.process-item p { color: #b9c4ca; font-size: .84rem; margin-top: 10px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-image { min-height: 560px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.check-list li::before { content: "✓"; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--paper-2); color: var(--success); font-weight: 900; flex: 0 0 auto; }

.cta-panel { background: var(--ink); color: var(--white); border-radius: var(--radius-lg); padding: 54px 58px; display: flex; align-items: center; justify-content: space-between; gap: 40px; overflow: hidden; position: relative; }
.cta-panel::after { content: ""; width: 340px; height: 340px; border: 1px solid rgba(197,161,91,.32); border-radius: 50%; position: absolute; right: -180px; top: -170px; }
.cta-panel h2 { font-size: clamp(1.8rem, 3vw, 3rem); max-width: 700px; position: relative; z-index: 2; }
.cta-panel p { color: #bdc8ce; margin-top: 14px; max-width: 680px; position: relative; z-index: 2; }
.cta-panel .btns { flex-shrink: 0; position: relative; z-index: 2; }

.inner-hero { background: var(--ink); color: var(--white); padding: 84px 0 78px; position: relative; overflow: hidden; }
.inner-hero::after { content: ""; width: 520px; height: 520px; border-radius: 50%; border: 1px solid rgba(197,161,91,.28); position: absolute; right: -160px; top: -310px; }
.breadcrumbs { color: #9daab2; font-size: .78rem; font-weight: 700; margin-bottom: 20px; position: relative; z-index: 2; }
.breadcrumbs a:hover { color: var(--gold-2); }
.inner-hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 4.7rem); max-width: 900px; position: relative; z-index: 2; }
.inner-hero p { color: #bdc8ce; max-width: 760px; margin-top: 22px; font-size: 1.05rem; position: relative; z-index: 2; }

.project-hero { background: var(--paper); padding: 34px 0 80px; }
.project-hero__media { position: relative; height: min(66vw, 680px); min-height: 460px; border-radius: var(--radius-lg); overflow: hidden; }
.project-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.project-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(7,19,31,.78)); }
.project-hero__copy { position: absolute; z-index: 2; left: clamp(24px, 5vw, 64px); right: clamp(24px, 5vw, 64px); bottom: clamp(24px, 5vw, 56px); color: var(--white); }
.project-hero__copy .breadcrumbs { margin-bottom: 13px; color: #d7dfe3; }
.project-hero__copy h1 { color: var(--white); font-size: clamp(2.3rem, 5vw, 5rem); }
.project-hero__copy p { margin-top: 14px; color: #dbe2e6; max-width: 680px; }
.project-facts { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--white); margin-top: -1px; }
.fact { padding: 26px; border-right: 1px solid var(--border); }
.fact:last-child { border-right: 0; }
.fact small { color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; font-weight: 800; }
.fact strong { display: block; margin-top: 7px; color: var(--ink); font-size: 1rem; }

.content-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: start; }
.prose h2 { margin-bottom: 20px; }
.prose h3 { margin: 32px 0 12px; }
.prose p { color: var(--muted); margin-bottom: 18px; }
.prose ul { color: var(--muted); padding-left: 20px; }
.prose li { margin-bottom: 9px; }
.info-box { background: var(--paper); border-radius: var(--radius-md); padding: 30px; position: sticky; top: 120px; }
.info-box h3 { margin-bottom: 20px; }
.info-box dl { margin: 0; }
.info-box dl > div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid #d9d5cb; }
.info-box dl > div:last-child { border-bottom: 0; }
.info-box dt { color: var(--muted); }
.info-box dd { margin: 0; color: var(--ink); font-weight: 800; text-align: right; }
.info-box .btn { width: 100%; margin-top: 22px; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery a { min-height: 280px; border-radius: var(--radius-sm); overflow: hidden; background: var(--paper-2); }
.gallery a:first-child { grid-column: span 2; grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery a:hover img { transform: scale(1.03); }
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.92); display: none; align-items: center; justify-content: center; padding: 50px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 86vh; object-fit: contain; }
.lightbox button { position: absolute; top: 20px; right: 22px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; color: var(--white); font-size: 1.5rem; cursor: pointer; }

.faq-list { display: grid; gap: 12px; }
details { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--white); padding: 0 22px; }
summary { cursor: pointer; list-style: none; padding: 21px 40px 21px 0; font-weight: 800; color: var(--ink); position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 16px; font-size: 1.5rem; color: #8d6f34; }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); padding: 0 0 22px; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.contact-card small { display: block; color: #8d6f34; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; font-size: .7rem; }
.contact-card strong, .contact-card a { display: block; margin-top: 8px; color: var(--ink); font-weight: 800; }
.contact-card p { color: var(--muted); font-size: .85rem; margin-top: 6px; }
.form-card { padding: 36px; background: var(--paper); border-radius: var(--radius-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field.full { grid-column: 1 / -1; }
label { display: block; color: var(--ink); font-weight: 800; font-size: .82rem; margin-bottom: 7px; }
input, textarea, select { width: 100%; border: 1px solid #cfd5d8; background: var(--white); border-radius: 10px; padding: 13px 14px; outline: none; color: var(--text); }
textarea { min-height: 138px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197,161,91,.15); }
.check-field { display: flex; gap: 10px; align-items: flex-start; font-size: .78rem; color: var(--muted); }
.check-field input { width: auto; margin-top: 4px; }
.check-field a { text-decoration: underline; }
.form-card .btn { margin-top: 20px; }
.map-shell { height: 420px; border-radius: var(--radius-md); overflow: hidden; background: var(--paper-2); }
.map-shell iframe { width: 100%; height: 100%; border: 0; }

.legal { max-width: 850px; }
.legal h2 { font-size: 1.45rem; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--muted); }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 8px; }

.site-footer { background: #02080d; color: #b9c4ca; padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .8fr 1fr; gap: 50px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { max-width: 340px; font-size: .87rem; }
.footer-title { color: var(--white); font-size: .86rem; font-weight: 900; margin-bottom: 17px; }
.footer-links { display: grid; gap: 10px; font-size: .84rem; }
.footer-links a:hover { color: var(--gold-2); }
.footer-contact { font-size: .84rem; display: grid; gap: 10px; }
.footer-contact strong { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; font-size: .75rem; }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }

.mobile-actions { display: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .header-cta { display: none; }
  .home-hero__grid { gap: 34px; }
  .hero-status { right: 0; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.12); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 840px) {
  :root { --header-height: 72px; }
  .top-strip { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-cta { display: none; }
  .main-nav { position: fixed; left: 0; right: 0; top: var(--header-height); background: var(--ink); padding: 24px 20px 32px; display: grid; gap: 4px; border-top: 1px solid rgba(255,255,255,.08); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: .25s ease; }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav a::after { display: none; }
  .brand img { width: 46px; height: 46px; }
  .home-hero__grid { grid-template-columns: 1fr; min-height: auto; padding: 58px 0 72px; }
  .hero-copy h1 { font-size: clamp(2.45rem, 10vw, 4.3rem); }
  .hero-visual { min-height: 500px; }
  .hero-image-main { left: 0; }
  .hero-image-small { left: -4px; width: 180px; height: 225px; }
  .hero-status { right: 10px; width: 220px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .card-grid, .services-grid { grid-template-columns: 1fr 1fr; }
  .project-grid-4 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-item:nth-child(2n) { border-right: 1px solid rgba(255,255,255,.12); }
  .split, .content-grid, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .split-image { min-height: 430px; }
  .info-box { position: static; }
  .cta-panel { align-items: flex-start; flex-direction: column; padding: 44px 34px; }
  .project-facts { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery a:first-child { grid-column: span 2; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 54px 0; }
  .brand-copy span { display: none; }
  .brand-copy strong { font-size: .8rem; }
  .home-hero__grid { padding-top: 46px; }
  .hero-copy .lead { font-size: .98rem; }
  .btns { align-items: stretch; }
  .btns .btn { width: 100%; }
  .hero-note { display: grid; gap: 8px; }
  .hero-visual { min-height: 420px; }
  .hero-image-main { bottom: 18px; }
  .hero-image-small { width: 130px; height: 165px; border-width: 5px; }
  .hero-status { width: 190px; padding: 16px; bottom: 0; right: 0; }
  .stats-grid, .card-grid, .services-grid, .process-grid, .project-facts, .form-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat:last-child { border-bottom: 0; }
  .project-card__image, .project-grid-4 .project-card__image { height: 290px; }
  .process-item, .process-item:nth-child(2n), .process-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.12); }
  .inner-hero { padding: 62px 0 60px; }
  .project-hero { padding-top: 14px; }
  .project-hero__media { min-height: 520px; height: 76vh; border-radius: 18px; }
  .fact { border-right: 0; border-bottom: 1px solid var(--border); }
  .fact:last-child { border-bottom: 0; }
  .gallery { grid-template-columns: 1fr; }
  .gallery a, .gallery a:first-child { grid-column: auto; min-height: 260px; }
  .form-card { padding: 26px 20px; }
  .form-field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
  .mobile-actions { display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 1200; padding: 6px; background: rgba(7,19,31,.96); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; box-shadow: var(--shadow); backdrop-filter: blur(14px); }
  .mobile-actions a { min-height: 48px; display: grid; place-items: center; border-radius: 11px; font-size: .82rem; font-weight: 900; color: var(--white); }
  .mobile-actions a:last-child { background: #25d366; color: #06280f; }
  body { padding-bottom: 78px; }
}

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

/* ===== Ana sayfa V2 · premium editoryal düzen ===== */
.home-v2 .site-header { background: rgba(5, 14, 23, .92); }
.home-v2 .header-cta { min-width: 144px; }
.premium-hero { position: relative; min-height: clamp(680px, 82vh, 900px); display: flex; align-items: stretch; overflow: hidden; background: var(--ink); color: var(--white); }
.premium-hero__media, .premium-hero__shade { position: absolute; inset: 0; }
.premium-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; transform: scale(1.015); }
.premium-hero__shade { background: linear-gradient(90deg, rgba(3,10,17,.90) 0%, rgba(3,10,17,.75) 38%, rgba(3,10,17,.25) 70%, rgba(3,10,17,.08) 100%), linear-gradient(0deg, rgba(3,10,17,.48), transparent 45%); }
.premium-hero__inner { position: relative; z-index: 2; display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 40px; padding-top: 88px; padding-bottom: 76px; }
.premium-hero__copy { width: min(750px, 68%); }
.premium-kicker { color: var(--gold-2); font-weight: 800; text-transform: uppercase; letter-spacing: .17em; font-size: .76rem; margin-bottom: 22px; }
.premium-hero h1 { color: var(--white); font-size: clamp(3rem, 6.1vw, 6.7rem); max-width: 850px; letter-spacing: -.055em; line-height: .98; }
.premium-hero h1 span { color: var(--gold-2); display: block; }
.premium-hero__copy > p { max-width: 680px; margin-top: 28px; color: #d8e0e5; font-size: clamp(1rem, 1.55vw, 1.18rem); line-height: 1.75; }
.premium-hero__buttons { margin-top: 36px; }
.btn-glass { color: var(--white); border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.05); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.premium-hero__proof { align-self: flex-end; margin-bottom: 12px; width: 255px; border-left: 1px solid rgba(255,255,255,.38); padding-left: 24px; color: var(--white); }
.premium-hero__proof .proof-label { display: block; color: var(--gold-2); text-transform: uppercase; font-size: .68rem; font-weight: 800; letter-spacing: .13em; }
.premium-hero__proof strong { display: block; margin-top: 7px; font-size: 1.12rem; }
.premium-hero__proof > span:last-child { color: #cbd5da; display: block; margin-top: 4px; font-size: .78rem; }
.premium-scroll { position: absolute; z-index: 3; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; color: #dce3e7; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: .65rem; }
.premium-scroll span { color: var(--gold-2); font-size: 1rem; }

.premium-heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: 80px; align-items: end; margin-bottom: 46px; }
.premium-heading h2 { max-width: 760px; }
.premium-heading > p { color: var(--muted); max-width: 500px; justify-self: end; }
.editorial-projects { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, 320px); gap: 18px; }
.editorial-project { position: relative; overflow: hidden; border-radius: 8px; min-height: 0; background: var(--ink); }
.editorial-project--wide { grid-row: 1 / span 2; }
.editorial-project img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.editorial-project--wide img { object-position: center 35%; }
.editorial-project:hover img { transform: scale(1.035); }
.editorial-project__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,12,19,.06) 24%, rgba(4,12,19,.78) 100%); }
.editorial-project__status { position: absolute; left: 22px; top: 22px; z-index: 2; padding: 8px 11px; background: rgba(7,19,31,.78); backdrop-filter: blur(9px); color: var(--gold-2); text-transform: uppercase; letter-spacing: .09em; font-size: .63rem; font-weight: 800; }
.editorial-project__copy { position: absolute; left: 28px; right: 28px; bottom: 26px; z-index: 2; color: var(--white); }
.editorial-project__copy small { display: block; color: #d6dfe4; font-weight: 700; font-size: .76rem; }
.editorial-project__copy strong { display: block; margin-top: 6px; font-size: clamp(1.45rem, 2.3vw, 2.3rem); letter-spacing: -.035em; }
.editorial-project__copy em { display: block; margin-top: 10px; color: var(--gold-2); font-style: normal; font-weight: 800; font-size: .76rem; opacity: 0; transform: translateY(4px); transition: .25s ease; }
.editorial-project:hover .editorial-project__copy em { opacity: 1; transform: translateY(0); }
.premium-projects__all { margin-top: 32px; text-align: right; }

.live-project { padding: 110px 0; overflow: hidden; }
.live-project__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; align-items: center; }
.live-pill { display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 7px 11px; color: #cbd4d9; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; margin-bottom: 22px; }
.live-pill span { width: 8px; height: 8px; border-radius: 50%; background: #62bc87; box-shadow: 0 0 0 5px rgba(98,188,135,.12); }
.live-project__copy h2 { max-width: 620px; }
.live-project__copy .lead { margin-top: 22px; max-width: 620px; }
.live-facts { display: grid; grid-template-columns: repeat(3,1fr); margin: 34px 0; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.live-facts > div { padding: 22px 18px 22px 0; border-right: 1px solid rgba(255,255,255,.13); }
.live-facts > div:last-child { border-right: 0; padding-left: 18px; }
.live-facts > div:nth-child(2) { padding-left: 18px; }
.live-facts small { display: block; color: #8ea0ab; text-transform: uppercase; letter-spacing: .1em; font-size: .62rem; font-weight: 800; }
.live-facts strong { color: var(--white); display: block; margin-top: 7px; font-size: .9rem; }
.live-project__media { min-height: 590px; position: relative; }
.live-image { overflow: hidden; border-radius: 8px; box-shadow: 0 24px 60px rgba(0,0,0,.28); }
.live-image img { width: 100%; height: 100%; object-fit: cover; }
.live-image--main { position: absolute; inset: 0 0 70px 90px; }
.live-image--secondary { position: absolute; left: 0; bottom: 0; width: 245px; height: 310px; border: 8px solid var(--ink); }

.premium-stats { background: #0d1d28; color: var(--white); border-top: 1px solid rgba(255,255,255,.07); }
.premium-stats__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.premium-stats__grid > div { padding: 42px 28px; border-right: 1px solid rgba(255,255,255,.1); }
.premium-stats__grid > div:last-child { border-right: 0; }
.premium-stats strong { color: var(--gold-2); display: block; font-size: clamp(2rem,3.6vw,3.5rem); line-height: 1; letter-spacing: -.04em; }
.premium-stats span { display: block; margin-top: 9px; color: #b8c3ca; font-size: .78rem; }

.journey__heading { margin-bottom: 52px; }
.journey-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.journey-step__image { position: relative; height: 330px; overflow: hidden; background: var(--paper); }
.journey-step__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.journey-step:hover img { transform: scale(1.025); }
.journey-step__image span { position: absolute; top: 0; left: 0; background: var(--ink); color: var(--gold-2); width: 50px; height: 50px; display: grid; place-items: center; font-size: .7rem; font-weight: 900; letter-spacing: .08em; }
.journey-step h3 { margin-top: 20px; font-size: 1.05rem; }
.journey-step p { margin-top: 8px; color: var(--muted); font-size: .82rem; }
.journey__link { margin-top: 34px; }

.approach__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: center; }
.approach__visual { background: var(--white); padding: 34px; min-height: 600px; display: grid; place-items: center; border: 1px solid #e6e0d6; }
.approach__visual img { width: 100%; height: 100%; object-fit: contain; }
.approach__copy .lead { margin-top: 22px; }
.approach-list { margin: 32px 0; border-top: 1px solid #d8d2c7; }
.approach-list > div { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 21px 0; border-bottom: 1px solid #d8d2c7; }
.approach-list > div > span { color: #94753a; font-weight: 900; font-size: .72rem; letter-spacing: .08em; }
.approach-list section h3 { font-size: 1rem; }
.approach-list section p { margin-top: 6px; color: var(--muted); font-size: .84rem; }

.premium-contact { background: var(--white); }
.premium-contact__panel { background: var(--ink); color: var(--white); padding: 64px 68px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; position: relative; overflow: hidden; }
.premium-contact__panel::after { content:""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(197,161,91,.25); border-radius: 50%; right: -280px; top: -250px; }
.premium-contact__panel h2 { color: var(--white); max-width: 820px; font-size: clamp(2rem,3.8vw,3.8rem); }
.premium-contact__panel p { color: #bdc8ce; max-width: 710px; margin-top: 16px; }
.premium-contact__actions { position: relative; z-index: 2; display: grid; gap: 18px; min-width: 230px; }
.premium-phone { display: block; border-top: 1px solid rgba(255,255,255,.18); padding-top: 16px; color: var(--white); }
.premium-phone small { display: block; color: #aab8c0; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.premium-phone strong { display: block; margin-top: 4px; font-size: 1.12rem; color: var(--gold-2); }

@media (max-width: 1000px) {
  .premium-hero__proof { display: none; }
  .premium-hero__copy { width: min(760px, 88%); }
  .premium-heading { grid-template-columns: 1fr; gap: 20px; }
  .premium-heading > p { justify-self: start; }
  .editorial-projects { grid-template-columns: 1fr 1fr; grid-template-rows: 470px 300px; }
  .editorial-project--wide { grid-column: 1 / -1; grid-row: auto; }
  .live-project__grid, .approach__grid { grid-template-columns: 1fr; gap: 52px; }
  .live-project__copy { max-width: 760px; }
  .journey-grid { grid-template-columns: repeat(2,1fr); row-gap: 44px; }
  .premium-contact__panel { grid-template-columns: 1fr; }
  .premium-contact__actions { min-width: 0; max-width: 320px; }
}

@media (max-width: 720px) {
  .home-v2 .top-strip { display: none; }
  .premium-hero { min-height: 720px; }
  .premium-hero__media img { object-position: 51% center; }
  .premium-hero__shade { background: linear-gradient(180deg, rgba(3,10,17,.2) 0%, rgba(3,10,17,.68) 45%, rgba(3,10,17,.94) 100%); }
  .premium-hero__inner { align-items: flex-end; padding-top: 60px; padding-bottom: 84px; }
  .premium-hero__copy { width: 100%; }
  .premium-hero h1 { font-size: clamp(2.75rem, 13vw, 4.3rem); line-height: 1; }
  .premium-hero__copy > p { font-size: .96rem; line-height: 1.65; }
  .premium-hero__buttons { display: grid; grid-template-columns: 1fr; }
  .premium-hero__buttons .btn { width: 100%; }
  .premium-scroll { bottom: 22px; }
  .premium-heading { margin-bottom: 34px; }
  .editorial-projects { grid-template-columns: 1fr; grid-template-rows: none; }
  .editorial-project, .editorial-project--wide { min-height: 420px; grid-column: auto; grid-row: auto; }
  .editorial-project__copy em { opacity: 1; transform: none; }
  .premium-projects__all { text-align: left; }
  .live-project { padding: 82px 0; }
  .live-facts { grid-template-columns: 1fr; }
  .live-facts > div, .live-facts > div:nth-child(2), .live-facts > div:last-child { padding: 16px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .live-facts > div:last-child { border-bottom: 0; }
  .live-project__media { min-height: 460px; }
  .live-image--main { inset: 0 0 54px 28px; }
  .live-image--secondary { width: 165px; height: 220px; border-width: 6px; }
  .premium-stats__grid { grid-template-columns: 1fr 1fr; }
  .premium-stats__grid > div { padding: 28px 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .premium-stats__grid > div:nth-child(2) { border-right: 0; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-step__image { height: 420px; }
  .approach__visual { min-height: 360px; padding: 18px; }
  .premium-contact__panel { padding: 44px 26px; }
  .premium-contact__actions { width: 100%; max-width: none; }
  .premium-contact__actions .btn { width: 100%; }
}
