/* ===== Tokens ===== */
:root {
  --ink: #0B0B12;
  --paper: #FFFFFF;
  --muted: #6B6B75;
  --muted-2: #9C9CA6;
  --line: #ECECEC;
  --accent: #A6395B;      /* toned-down rose, was #E23368 */
  --accent-dark: #7C2A43;
  --ghost: #F5F5F7;
  --radius: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .logo, .disp {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  letter-spacing: 0.5px;
  font-weight: 400;
  margin: 0;
}
p { margin: 0 0 1em; line-height: 1.7; color: var(--muted); }
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.75; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1296px; margin: 0 auto; padding: 0 72px; }
.eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent);
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff;
  padding: 12px 20px; z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Buttons / links */
.btn {
  display: inline-block; padding: 18px 34px; font-size: 14px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; border: none; cursor: pointer;
  transition: opacity .15s ease, background .15s ease;
}
.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { background: var(--accent-dark); opacity: 1; }
.header-cta { padding: 14px 26px; font-size: 13px; }
.link-underline {
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px; border-bottom: 2px solid var(--ink);
  padding-bottom: 2px; white-space: nowrap;
}
.link-underline-accent { color: var(--accent); border-bottom-color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding-bottom: 3px; }

/* ===== Header ===== */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 104px; gap: 24px; }
.logo { font-size: 26px; letter-spacing: 2px; white-space: nowrap; }
.logo-light { color: #fff; }
.nav { display: flex; gap: 36px; margin-left: auto; }
.nav a { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.nav a:hover { color: var(--accent); opacity: 1; }
.header-cta { margin-left: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); display: block; }

.mobile-nav {
  display: none; flex-direction: column; gap: 4px; position: fixed; inset: 104px 0 0 0;
  background: #fff; z-index: 99; padding: 24px; transform: translateY(-8px); opacity: 0;
  pointer-events: none; transition: opacity .2s ease, transform .2s ease; overflow-y: auto;
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav a { padding: 16px 4px; font-size: 18px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 16px; text-align: center; }

/* ===== Hero ===== */
.hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; padding: 88px 72px 96px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; gap: 26px; }
.kicker { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); }
.kicker-bar { width: 28px; height: 2px; background: var(--accent); }
.hero h1 { font-size: clamp(52px, 7vw, 104px); line-height: 0.94; color: var(--ink); }
.hero-sub { font-size: 19px; line-height: 1.55; color: #4B4B55; max-width: 460px; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 6px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 22px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-stats .num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--accent); }
.hero-stats .label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #6B6B75; }

.hero-art { position: relative; width: 100%; height: 620px; display: flex; align-items: center; justify-content: center; }
.hero-ghost {
  position: absolute; top: -56px; left: -24px; font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 14vw, 220px); line-height: 1; color: var(--ghost); z-index: 0; user-select: none;
}
.hero-slab { position: absolute; top: 24px; right: 4px; width: 380px; height: 520px; max-width: 88%; background: var(--accent); transform: rotate(-4deg); z-index: 1; }
.hero-frame {
  position: relative; z-index: 2; width: 420px; height: 560px; max-width: 92%;
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 0% 100%); overflow: hidden;
  box-shadow: 0 40px 70px rgba(11,11,18,0.35);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.hero-vertical {
  position: absolute; left: -6px; bottom: 70px; writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 13px; font-weight: 800; letter-spacing: 5px; color: var(--accent);
}

/* ===== About band ===== */
.about { background: var(--ink); color: var(--ghost); padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: start; }
.about-text h2 { font-size: 52px; color: var(--accent); }
.about-text p { font-size: 16px; line-height: 1.7; color: #C9C9D1; max-width: 560px; margin-top: 22px; }
.lang-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.lang-row span {
  border: 1px solid var(--accent); color: var(--accent); font-size: 12px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 9px 16px;
}
.about-stats { display: flex; flex-direction: column; gap: 28px; }
.stat-block { border-left: 4px solid var(--accent); padding-left: 24px; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(56px, 6vw, 96px); line-height: 1; }
.stat-label { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; }

/* ===== Services ===== */
.services { padding: 100px 0; }
.services-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.services-head h2 { font-size: clamp(34px, 4vw, 48px); }
.services-head p { font-size: 16px; color: var(--muted); margin-top: 10px; }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.svc { border-top: 4px solid var(--accent); padding-top: 22px; }
.svc-num { font-family: 'Bebas Neue', sans-serif; font-size: 34px; color: var(--accent); }
.svc h3 { font-size: 24px; margin-top: 4px; }
.svc p { font-size: 14px; line-height: 1.6; margin-top: 10px; }

/* ===== Video ===== */
.video { background: var(--ink); color: var(--ghost); padding: 100px 0; }
.video-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 44px; flex-wrap: wrap; }
.video-head h2 { font-size: 44px; margin-top: 8px; }
.video-head p { font-size: 15px; color: var(--muted-2); margin-top: 8px; max-width: 460px; }
.video-frame {
  position: relative; display: block; width: 100%; height: 560px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 3% 100%); overflow: hidden;
}
.video-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.video-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,18,0.15) 0%, rgba(11,11,18,0.65) 100%); }
.play-btn {
  position: absolute; inset: 0; margin: auto; width: 104px; height: 104px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 44px rgba(0,0,0,0.4);
}
.video-tag { position: absolute; bottom: 24px; font-size: 12px; font-weight: 800; letter-spacing: 1px; padding: 8px 14px; }
.video-tag-dark { right: 28px; background: rgba(11,11,18,0.65); color: #fff; }
.video-tag-accent { left: 28px; background: var(--accent); color: #fff; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }

/* ===== Gallery ===== */
.gallery { padding: 100px 0; }
.gallery-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.gallery-head h2 { font-size: clamp(34px, 4vw, 48px); }
.gallery-head p { font-size: 16px; color: var(--muted); margin-top: 10px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 220px; gap: 16px; grid-auto-flow: dense; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid .g-tall { grid-row: span 2; }
.gallery-grid .g-wide { grid-column: span 2; }

/* ===== Blog ===== */
.blog { padding: 100px 0; }
.blog-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.blog-head h2 { font-size: 44px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.post { box-shadow: 0 18px 40px rgba(11,11,18,0.08); }
.post-bar { height: 8px; background: var(--accent); }
.post-body { padding: 26px 24px; border: 1px solid var(--line); border-top: none; }
.post-tag { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); }
.post h3 { font-size: 21px; margin-top: 10px; line-height: 1.15; }
.post p { font-size: 13px; line-height: 1.6; margin-top: 12px; }
.post-meta { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #B4B4BE; margin-top: 18px; }

/* ===== CTA / Contact / Footer ===== */
.cta { background: var(--accent); color: #fff; padding: 96px 0 0; }
.cta-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; padding-bottom: 64px; }
.cta-intro h2 { font-size: clamp(40px, 5vw, 60px); line-height: 1.02; }
.cta-intro p { color: rgba(255,255,255,0.85); max-width: 420px; margin-top: 18px; }
.cta-contact-row { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 36px; font-size: 15px; font-weight: 700; }
.cta-contact-row a, .cta-contact-row span { color: #fff; }
.cta-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.75; margin-bottom: 6px; font-weight: 700; }

.cta-form { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.22); padding: 32px; }
.cta-form label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.req { color: #fff; margin-left: 2px; }
.cta-form input, .cta-form select, .cta-form textarea {
  display: block; width: 100%; margin-top: 8px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 12px 14px; font-size: 14px;
  font-family: inherit;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,0.6); }
.cta-form textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-form-submit { margin-top: 8px; width: 100%; border: none; background: var(--ink); color: #fff; }
.btn-form-submit:hover { opacity: 0.85; }
.form-note { margin-top: 16px; font-size: 13px; color: #FFE3EB; }

.cta-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  padding: 24px 0 28px; border-top: 1px solid rgba(255,255,255,0.35);
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .wrap { padding: 0 40px; }
  .hero { padding: 64px 40px 72px; grid-template-columns: 1fr; }
  .hero-art { height: 480px; margin-top: 24px; }
  .hero-frame { width: 340px; height: 440px; }
  .hero-slab { width: 300px; height: 400px; }
  .about-grid, .cta-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: row; gap: 40px; margin-top: 8px; }
  .services-grid, .blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 48px 20px 56px; }
  .hero-frame { width: 100%; max-width: 340px; height: 400px; }
  .hero-slab { display: none; }
  .hero-ghost { display: none; }
  .hero-vertical { display: none; }
  .hero-stats { gap: 32px; }
  .services-grid, .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 160px; }
  .video-head, .blog-head { flex-direction: column; align-items: flex-start; }
  .video-frame { height: 400px; }
  .cta-contact-row { gap: 28px; }
  .cta-bottom { flex-direction: column; align-items: flex-start; }
}
