:root {
  --ink: #111827;
  --muted: #667085;
  --paper: #f7f7f5;
  --white: #ffffff;
  --accent: #d84967;
  --accent-dark: #a92d4c;
  --line: #e5e7eb;
  --shadow: 0 18px 50px rgba(17, 24, 39, .10);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font: 16px/1.7 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(229,231,235,.8); backdrop-filter: blur(12px); }
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 200px; height: auto; }
.menu-toggle { display: none; border: 1px solid var(--line); background: var(--white); border-radius: 10px; width: 44px; height: 40px; font-size: 22px; cursor: pointer; }
.menu { display: flex; align-items: center; gap: 24px; list-style: none; padding: 0; margin: 0; font-size: 14px; font-weight: 700; }
.menu a { color: #374151; }
.menu a:hover, .menu .active { color: var(--accent); }
.hero { background: var(--ink); color: var(--white); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; min-height: 590px; }
.hero-copy { padding: 86px 48px 70px 0; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
h1, h2, h3 { margin: 0 0 18px; line-height: 1.12; letter-spacing: -.03em; }
h1 { font-size: clamp(42px, 6vw, 76px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: 22px; }
.hero-copy p { max-width: 520px; color: #cbd5e1; font-size: 18px; }
.hero-media { min-height: 590px; position: relative; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,24,39,.4), transparent 65%); }
.hero-dots { position: absolute; z-index: 2; left: 24px; bottom: 24px; display: flex; gap: 8px; }
.hero-dots button { width: 28px; height: 4px; padding: 0; border: 0; background: rgba(255,255,255,.45); cursor: pointer; }
.hero-dots button.active { background: var(--accent); }
.button { display: inline-flex; align-items: center; justify-content: center; width: fit-content; padding: 12px 20px; border-radius: 999px; background: var(--accent); color: var(--white); font-weight: 800; border: 1px solid var(--accent); }
.button:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.button.alt { background: transparent; border-color: rgba(255,255,255,.45); margin-left: 10px; }
.button.alt:hover { background: var(--white); color: var(--ink); }
.section { padding: 96px 0; }
.section.soft { background: var(--paper); }
.section-head { max-width: 700px; margin-bottom: 42px; }
.section-head p, .prose p { color: var(--muted); }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: start; }
.about-mark { color: var(--accent); font-size: 88px; font-weight: 900; line-height: .8; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 25px rgba(17,24,39,.04); }
.card img { width: 64px; height: 64px; object-fit: contain; margin-bottom: 20px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project { position: relative; min-height: 260px; overflow: hidden; border-radius: var(--radius); background: #ddd; }
.project img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; transition: transform .5s ease; }
.project:hover img { transform: scale(1.05); }
.project figcaption { position: absolute; right: 14px; bottom: 14px; left: 14px; padding: 12px 14px; border-radius: 12px; color: var(--white); background: rgba(17,24,39,.78); font-weight: 800; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
.list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 30px; padding: 0; margin: 0; list-style: none; }
.list li { position: relative; padding-left: 22px; color: var(--muted); }
.list li::before { content: ""; position: absolute; top: .75em; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 54px; }
.contact-card { padding: 30px; border-radius: var(--radius); background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.contact-card p { color: #cbd5e1; }
.contact-line { display: block; padding: 8px 0; color: #fff; }
.contact-form { display: grid; gap: 14px; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; font: inherit; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.site-footer { padding: 30px 0; color: #cbd5e1; background: var(--ink); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-grid small { color: #94a3b8; }
.page-hero { padding: 84px 0 70px; color: var(--white); background: linear-gradient(120deg, #111827, #273449); }
.page-hero p { max-width: 680px; color: #cbd5e1; }
.tag { display: inline-block; margin-bottom: 18px; padding: 5px 11px; border-radius: 999px; color: #ffd4df; background: rgba(216,73,103,.18); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-block { display: grid; grid-template-columns: .7fr 1.3fr; gap: 42px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.service-block:last-child { border-bottom: 0; }
.service-block h3 { color: var(--accent-dark); }
.service-block p { color: var(--muted); }
.reveal { animation: rise .6s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (max-width: 900px) { .hero-grid, .about-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; } .hero-copy { padding: 64px 0 36px; } .hero-media { min-height: 430px; } .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .wrap { width: min(100% - 32px, 560px); } .nav { min-height: 68px; } .brand img { width: 174px; } .menu-toggle { display: block; } .menu { display: none; position: absolute; top: 68px; right: 16px; left: 16px; padding: 10px; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: var(--shadow); } .menu.open { display: flex; } .menu a { display: block; padding: 11px 13px; } h1 { font-size: 44px; } .hero-media { min-height: 300px; } .section { padding: 66px 0; } .cards, .portfolio-grid, .list { grid-template-columns: 1fr; } .project, .project img { min-height: 220px; } .service-block { grid-template-columns: 1fr; gap: 10px; } .footer-grid { align-items: flex-start; flex-direction: column; } .button.alt { margin: 10px 0 0; } }
