:root {
  --bg: #0e0e0e;
  --panel: #151515;
  --panel-2: #1c1c1c;
  --line: #232323;
  --line-2: #2a2a2a;
  --text: #f4f2ec;
  --muted: #b9b9b9;
  --accent: #f4cd46;
  --accent-hover: #ffe066;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, .brand { font-family: 'Poppins', sans-serif; }
.wrap { padding-left: 64px; padding-right: 64px; }
.narrow { max-width: 900px; margin-left: auto; margin-right: auto; }
.eyebrow { display: block; font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--accent); text-transform: uppercase; }
.skip { position: absolute; left: -999px; top: 0; background: var(--accent); color: var(--bg); padding: 10px 16px; z-index: 100; }
.skip:focus { left: 8px; top: 8px; }

/* Buttons */
.btn { display: inline-block; border-radius: 4px; font-weight: 700; transition: background .2s, color .2s; cursor: pointer; }
.btn-primary { background: var(--accent); color: var(--bg); font-size: 15px; padding: 16px 28px; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline { border: 1px solid var(--text); color: var(--text); font-weight: 600; font-size: 15px; padding: 16px 28px; }
.btn-outline:hover { background: var(--text); color: var(--bg); }

/* Header */
header.site { position: relative; z-index: 50; min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); background: var(--bg); }
.brand { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.brand b { font-weight: 800; font-size: 22px; letter-spacing: .5px; }
.brand span { font-weight: 600; font-size: 11px; letter-spacing: 4px; color: var(--accent); margin-top: 3px; }
nav.main { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 500; color: #cfcfcf; }
nav.main a:hover, nav.main button:hover { color: var(--accent); }
nav.main a[aria-current="page"] { color: var(--accent); }
.has-sub { position: relative; }
.has-sub > button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; padding: 0; }
.has-sub > button::after { content: " \25BE"; font-size: 11px; }
.sub { display: none; position: absolute; top: 100%; left: -16px; min-width: 250px; padding: 12px 0; margin-top: 18px; background: var(--panel); border: 1px solid var(--line-2); border-radius: 6px; }
.sub::before { content: ""; position: absolute; left: 0; right: 0; top: -20px; height: 20px; }
.sub a { display: block; padding: 10px 20px; white-space: nowrap; }
.has-sub:hover .sub, .has-sub:focus-within .sub { display: block; }
.head-right { display: flex; align-items: center; gap: 22px; }
.head-right .login { font-size: 14px; font-weight: 500; color: #cfcfcf; }
.head-right .login:hover { color: var(--accent); }
.head-right .btn-outline { font-size: 14px; padding: 12px 22px; }
.mobile-only { display: none; }
.menu-toggle { display: none; background: none; border: 1px solid var(--line-2); color: var(--text); border-radius: 4px; padding: 10px 14px; font: inherit; font-weight: 600; cursor: pointer; }

/* Home hero */
.hero { position: relative; min-height: 760px; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #17130a 0%, var(--bg) 60%); }
.hero-media { position: absolute; right: -60px; top: -40px; width: 640px; height: calc(100% + 80px); border-radius: 8px; overflow: hidden; }
.hero-copy { position: relative; z-index: 2; max-width: 620px; padding: 60px 0; }
.badge { display: inline-block; background: var(--accent); color: var(--bg); font-weight: 700; font-size: 12px; letter-spacing: 1.5px; padding: 6px 14px; border-radius: 3px; margin-bottom: 24px; }
.hero h1 { font-weight: 800; font-size: 54px; line-height: 1.08; margin-bottom: 20px; }
.hero .sub-head { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 22px; color: var(--accent); margin-bottom: 16px; }
.hero p.lead { font-size: 19px; line-height: 1.6; color: var(--muted); margin-bottom: 36px; }
.actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Image slots (placeholder until a real photo is dropped in) */
.media { position: relative; width: 100%; height: 100%; min-height: 260px; background: var(--panel-2); border: 1px solid var(--line-2); border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; color: #555; font-size: 15px; }
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media.has-img { padding: 0; border: 0; }

/* Service cards */
.services { padding-top: 90px; padding-bottom: 90px; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-weight: 700; font-size: 36px; margin-top: 12px; line-height: 1.25; }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { position: relative; display: block; border: 1px solid var(--line-2); border-radius: 8px; padding: 32px; background: var(--panel); transition: border-color .2s; }
.card:hover { border-color: var(--accent); }
.card svg { width: 30px; height: 30px; stroke: var(--accent); fill: none; stroke-width: 1.6; }
.card h3 { font-size: 20px; margin: 20px 0 10px; }
.card p { font-size: 15px; line-height: 1.6; color: #a9a9a9; margin-bottom: 16px; }
.card .more { font-size: 14px; font-weight: 600; color: var(--accent); }
.tag-new { position: absolute; top: 20px; right: 20px; background: var(--accent); color: var(--bg); font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 4px 9px; border-radius: 3px; }

/* Cinematic video band */
.video { display: flex; background: #141109; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 600px; }
.video-copy { flex: 1; padding: 90px 64px; display: flex; flex-direction: column; justify-content: center; }
.video-copy h2 { font-weight: 700; font-size: 34px; margin: 14px 0 20px; line-height: 1.2; }
.video-copy p { font-size: 16px; line-height: 1.7; color: var(--muted); margin-bottom: 16px; }
.video-copy ul { padding-left: 20px; color: #cfcfcf; font-size: 15px; line-height: 2; margin-bottom: 28px; }
.video-copy .actions { margin-top: 4px; }
.video-media { flex: 1; display: flex; align-items: center; justify-content: center; padding: 60px; }
.video-media .media { min-height: 360px; }
.play { position: absolute; width: 64px; height: 64px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; }
.play svg { width: 20px; height: 20px; fill: var(--bg); margin-left: 3px; }

/* Work grid */
.work { padding-top: 90px; padding-bottom: 90px; }
.work-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.work-head h2 { font-weight: 700; font-size: 32px; }
.work-head span { font-size: 14px; color: #888; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile { position: relative; height: 220px; background: var(--panel-2); border: 1px solid var(--line-2); border-radius: 6px; overflow: hidden; display: flex; align-items: flex-end; padding: 14px; color: #999; font-size: 13px; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile span { position: relative; z-index: 1; }
.tile.has-img { border: 0; }
.tile.has-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75), transparent 55%); }
.tile.has-img span { color: #fff; z-index: 2; }
.tile.feature { align-items: center; justify-content: center; color: var(--accent); font-size: 14px; font-weight: 600; }

/* Testimonial, clients, CTA */
.quote { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 80px 64px; text-align: center; }
.quote-inner { max-width: 820px; margin: 0 auto; }
.stars { color: var(--accent); font-size: 18px; letter-spacing: 3px; margin-bottom: 20px; }
.quote p { font-size: 20px; line-height: 1.65; color: #e8e8e8; font-style: italic; margin-bottom: 20px; }
.quote cite { font-size: 14px; font-weight: 600; color: #999; font-style: normal; }
.clients { padding: 80px 64px; display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.clients .label { font-size: 13px; font-weight: 700; letter-spacing: 2px; color: #888; }
.logos { display: flex; gap: 20px 48px; flex-wrap: wrap; justify-content: center; color: #666; font-size: 15px; font-weight: 600; }
.cta { background: var(--accent); text-align: center; padding: 100px 64px; }
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta h2 { font-weight: 800; font-size: 38px; margin-bottom: 18px; color: var(--bg); line-height: 1.2; }
.cta p { font-size: 17px; color: #2b2408; margin-bottom: 32px; }
.cta .btn { background: var(--bg); color: var(--text); font-size: 16px; padding: 18px 34px; }
.cta .btn:hover { background: #000; }

/* Inner page hero */
.page-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-top: 80px; padding-bottom: 80px; background: linear-gradient(135deg, #17130a 0%, var(--bg) 60%); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-weight: 800; font-size: 48px; line-height: 1.1; margin: 14px 0 18px; }
.page-hero h1 .loc { display: block; color: var(--accent); font-size: 22px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.page-hero .tagline { font-size: 19px; line-height: 1.6; color: var(--muted); margin-bottom: 24px; }
.checks { list-style: none; margin-bottom: 32px; }
.checks li { position: relative; padding: 6px 0 6px 28px; color: #dcdcdc; font-size: 16px; }
.checks li::before { content: ""; position: absolute; left: 2px; top: 13px; width: 12px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.page-hero .media { min-height: 420px; }

/* Body sections */
.block { padding-top: 72px; padding-bottom: 72px; }
.block + .block { border-top: 1px solid var(--line); }
.block.alt { background: var(--panel); }
.block h2 { font-weight: 700; font-size: 32px; line-height: 1.25; margin-bottom: 14px; }
.block h3 { font-weight: 600; font-size: 22px; line-height: 1.3; margin-bottom: 16px; color: var(--accent); }
.block p { font-size: 17px; line-height: 1.75; color: var(--muted); margin-bottom: 18px; }
.block .actions { margin-top: 26px; }
.block .subtitle { font-size: 18px; color: var(--text); margin-bottom: 18px; }
.lead-block { text-align: center; }
.lead-block .actions { justify-content: center; }
.list-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 40px; list-style: none; margin-top: 20px; }
.list-cols li { padding: 12px 0 12px 28px; position: relative; border-bottom: 1px solid var(--line-2); color: #dcdcdc; }
.list-cols li::before { content: ""; position: absolute; left: 2px; top: 20px; width: 10px; height: 10px; background: var(--accent); border-radius: 50%; }
.embed { position: relative; aspect-ratio: 16 / 9; width: 100%; margin: 28px 0; border-radius: 8px; overflow: hidden; border: 1px solid var(--line-2); background: #000; }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed.slot { display: flex; align-items: center; justify-content: center; color: #555; font-size: 15px; text-align: center; padding: 24px; background: var(--panel-2); }
.banner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 8px; padding: 26px 32px; background: var(--panel); border: 1px solid var(--line-2); border-radius: 8px; }
.banner strong { font-family: 'Poppins', sans-serif; font-size: 20px; }
.banner span { display: block; color: var(--muted); font-size: 15px; margin-top: 4px; }

/* About / connect */
.about-grid { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: start; }
.about-grid .media { min-height: 460px; }
.contact-list { list-style: none; margin: 8px 0 28px; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid var(--line-2); font-size: 17px; }
.contact-list small { display: block; font-size: 12px; letter-spacing: 2px; color: var(--accent); font-weight: 700; margin-bottom: 4px; text-transform: uppercase; }
.contact-list a:hover { color: var(--accent); }

/* Blog */
.posts { display: grid; gap: 24px; }
.post-card { display: block; padding: 32px; background: var(--panel); border: 1px solid var(--line-2); border-radius: 8px; transition: border-color .2s; }
.post-card:hover { border-color: var(--accent); }
.post-card h2 { font-size: 26px; margin: 8px 0 12px; }
.post-card p { color: #a9a9a9; font-size: 16px; line-height: 1.65; margin-bottom: 14px; }
.meta { font-size: 13px; color: #888; }
.meta b { color: var(--accent); letter-spacing: 1.5px; font-weight: 700; text-transform: uppercase; }
.article h1 { font-weight: 800; font-size: 42px; line-height: 1.15; margin: 14px 0 12px; }
.article h2 { font-size: 26px; margin: 40px 0 12px; }
.article p { font-size: 18px; line-height: 1.8; color: #cfcfcf; margin-bottom: 20px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.tags span { border: 1px solid var(--line-2); border-radius: 100px; padding: 6px 14px; font-size: 13px; color: #999; }
.bio { margin-top: 48px; padding: 32px; background: var(--panel); border: 1px solid var(--line-2); border-radius: 8px; }
.bio p { font-size: 16px; margin-bottom: 20px; }
.bio strong { font-family: 'Poppins', sans-serif; display: block; font-size: 18px; margin-bottom: 4px; }
.crumbs { font-size: 14px; color: #888; padding-top: 40px; }
.crumbs a:hover { color: var(--accent); }

/* Footer */
footer.site { padding: 56px 64px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
footer .name { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 18px; }
footer address { font-style: normal; font-size: 14px; color: #888; margin-top: 12px; line-height: 1.8; }
footer address a:hover { color: var(--accent); }
.foot-links { display: flex; gap: 12px 32px; flex-wrap: wrap; font-size: 14px; color: #999; max-width: 560px; }
.foot-links a:hover, .social a:hover { color: var(--accent); }
.social { display: flex; gap: 16px; font-size: 13px; color: #888; }

/* Laptop */
@media (max-width: 1180px) {
  nav.main { gap: 20px; font-size: 14px; }
  .head-right { gap: 14px; }
}
/* Tablet */
@media (max-width: 1024px) {
  .wrap, .video-copy, .quote, .clients, .cta, footer.site { padding-left: 32px; padding-right: 32px; }
  header.site { flex-wrap: wrap; padding-top: 16px; padding-bottom: 16px; }
  .menu-toggle { display: block; margin-left: auto; }
  nav.main, .head-right { display: none; }
  header.open .mobile-only { display: block; }
  header.open nav.main { display: flex; flex-direction: column; align-items: flex-start; gap: 0; width: 100%; order: 3; padding-top: 12px; }
  header.open nav.main a, header.open nav.main .has-sub > button { padding: 12px 0; width: 100%; text-align: left; border-top: 1px solid var(--line); }
  header.open .has-sub { width: 100%; }
  header.open .has-sub > button::after { content: ""; }
  header.open .sub { display: block; position: static; margin: 0 0 8px; padding: 0 0 0 16px; border: 0; background: none; min-width: 0; }
  header.open .sub::before { display: none; }
  header.open .sub a { border-top: 0; padding: 8px 0; color: #999; }
  .hero-media { opacity: .35; width: 480px; }
  .page-hero { grid-template-columns: 1fr; gap: 36px; }
  .page-hero .media { min-height: 300px; order: -1; }
  .video { flex-direction: column; }
  .video-media { padding: 0 32px 60px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid .media { min-height: 360px; max-width: 420px; }
}
/* Mobile */
@media (max-width: 640px) {
  .wrap, .video-copy, .quote, .clients, .cta, footer.site { padding-left: 20px; padding-right: 20px; }
  .hero { min-height: 0; }
  .hero h1 { font-size: 36px; }
  .hero .sub-head { font-size: 19px; }
  .hero p.lead { font-size: 17px; }
  .hero-media { display: none; }
  .page-hero { padding-top: 48px; padding-bottom: 48px; }
  .page-hero h1 { font-size: 34px; }
  .page-hero h1 .loc { font-size: 17px; }
  .services, .work { padding-top: 60px; padding-bottom: 60px; }
  .section-head h2 { font-size: 28px; }
  .cards, .grid, .list-cols { grid-template-columns: 1fr; }
  .video-copy { padding-top: 60px; padding-bottom: 40px; }
  .video-copy h2 { font-size: 28px; }
  .video-media { padding: 0 20px 48px; }
  .quote, .clients, .cta { padding-top: 60px; padding-bottom: 60px; }
  .quote p { font-size: 18px; }
  .cta h2 { font-size: 28px; }
  .block { padding-top: 48px; padding-bottom: 48px; }
  .block h2 { font-size: 26px; }
  .article h1 { font-size: 30px; }
  .banner { padding: 22px; }
}
