/* ===== Tokens =====
   Client palette:
   Main Plum #370A3C, Electric Olive #A6C322 (accent),
   Soft Lavender Cream #F5EFF6, Muted Charcoal #262328
*/
:root {
  --ink: #370A3C;          /* Main Plum — dark bands, headline text */
  --paper: #F5EFF6;        /* Soft Lavender Cream — page background */
  --charcoal: #262328;     /* Muted Charcoal — body copy on light bg */
  --muted: #6E5E71;        /* charcoal/plum-tinted gray — paragraphs on light bg */
  --muted-2: #B6A2B9;      /* light plum-gray — paragraphs on dark Plum bg */
  --line: #E6DCE8;         /* plum-tinted hairline */
  --accent: #A6C322;       /* Electric Olive — accent fills, dark-bg text */
  --accent-dark: #8AA01B;  /* deeper olive for hover */
  --ghost: #ECDEEF;        /* subtle watermark tint, just off the paper color */
  --radius: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--charcoal);
  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;
  color: var(--ink);
}
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: var(--ink); }
.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; }
/* On light (paper) sections, Olive text reads too pale — use Plum instead */
.blog-head .link-underline-accent { color: var(--ink); border-bottom-color: var(--ink); }

/* ===== Header ===== */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--paper); 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; color: var(--charcoal); }
.nav a:hover { color: var(--ink); 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: var(--paper); 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); color: var(--charcoal); }
.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(--ink); }
.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: var(--muted); 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(--ink); }
.hero-stats .label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }

.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(--ink); 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(55,10,60,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(--ink);
}

/* ===== About band ===== */
.about { background: var(--ink); color: var(--paper); 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: var(--muted-2); 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; color: var(--paper); }
.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(--ink); }
.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(--paper); 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; color: var(--paper); }
.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, .video-frame video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; display: block; background: #000; }
.video-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(55,10,60,0.15) 0%, rgba(55,10,60,0.65) 100%); pointer-events: none; }
.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); border: none; padding: 0; cursor: pointer; transition: transform 0.2s ease;
}
.play-btn:hover { transform: scale(1.06); }
.play-btn[hidden], .video-scrim[hidden] { display: none; }
.video-tag { position: absolute; bottom: 24px; font-size: 12px; font-weight: 800; letter-spacing: 1px; padding: 8px 14px; pointer-events: none; }
.video-tag-dark { right: 28px; background: rgba(55,10,60,0.7); color: var(--paper); }

/* ===== 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)); gap: 16px; }
.gallery-grid img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }

/* ===== 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 { display: block; background: #fff; box-shadow: 0 18px 40px rgba(55,10,60,0.08); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.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(--ink); }
.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: #B0A2B2; margin-top: 18px; }
.post:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(55,10,60,0.14); }

/* ===== Single blog post ===== */
.post-page { padding: 64px 0 100px; }
.post-page-inner { max-width: 760px; }
.post-back { display: inline-block; margin-bottom: 28px; }
.post-page h1 { font-size: clamp(32px, 5vw, 48px); margin-top: 10px; line-height: 1.05; }
.post-page-meta { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-top: 16px; }
.post-page-body { margin-top: 32px; font-size: 17px; }
.post-page-body p { color: var(--charcoal); line-height: 1.8; margin-bottom: 1.3em; }
.post-page .post-back:last-of-type { margin-top: 40px; margin-bottom: 0; }

/* ===== CTA / Contact / Footer ===== */
.cta { background: var(--ink); color: var(--paper); padding: 96px 0 0; }
.blog-footer-band { padding-top: 32px; }
.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; color: var(--paper); }
.cta-intro p { color: var(--muted-2); 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: var(--paper); }
.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.06); border: 1px solid rgba(245,239,246,0.22); padding: 32px; }
.cta-form label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.req { color: var(--accent); 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.08);
  border: 1px solid rgba(245,239,246,0.3); color: var(--paper); padding: 12px 14px; font-size: 14px;
  font-family: inherit;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(245,239,246,0.55); }
.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(--accent); color: var(--ink); }
.btn-form-submit:hover { background: var(--accent-dark); }
.form-note { margin-top: 16px; font-size: 13px; color: var(--accent); }

.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(245,239,246,0.25);
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-2);
}

/* ===== 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)); }
  .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; }
}
