:root {
  --ink: #102130;
  --ink-2: #132b3b;
  --paper: #f8f7f2;
  --muted: #66707a;
  --gold: #ffd45d;
  --line: rgba(16,33,48,.12);
  --shell: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.4;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.shell { width: min(calc(100% - 64px), var(--shell)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 68px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16,33,48,.05);
}
.header-inner { height: 100%; display: grid; grid-template-columns: 230px 1fr auto; align-items: center; gap: 24px; }
.brand, .footer-brand { display: inline-flex; flex-direction: column; line-height: 1; letter-spacing: .38em; width: max-content; }
.brand-word { font-size: 30px; font-weight: 900; letter-spacing: .23em; }
.brand-sub { margin-top: 5px; font-size: 11px; font-weight: 800; letter-spacing: .55em; padding-left: 3px; }
.site-nav { display: flex; justify-content: center; align-items: center; gap: 34px; font-size: 14px; }
.site-nav a { position: relative; padding: 24px 0 20px; }
.site-nav a.active { font-weight: 700; }
.site-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 13px; height: 2px; background: var(--ink); }
.header-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 700; border-radius: 999px; transition: .2s ease; }
.header-cta { color: #fff; background: var(--ink); padding: 12px 24px; font-size: 14px; }
.header-cta:hover, .button-dark:hover { background: #1e3b4e; }
.nav-toggle, .nav-toggle-label { display: none; }

.hero {
  position: relative;
  min-height: 425px;
  overflow: hidden;
  background: #17222a;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,15,20,.92) 0%, rgba(8,15,20,.68) 29%, rgba(8,15,20,.10) 52%, rgba(8,15,20,.02) 100%),
    url('assets/hero-art.jpg') right center / auto 100% no-repeat,
    linear-gradient(90deg, #10202c 0 32%, #3f798f 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6,13,18,.12));
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; min-height: 425px; display: flex; align-items: center; }
.hero-copy { width: 440px; padding: 42px 0 30px; }
.hero h1 { margin: 0 0 18px; font-size: clamp(52px, 6vw, 76px); line-height: .92; letter-spacing: -.045em; }
.hero-copy > p:not(.scribble) { margin: 0; max-width: 405px; font-size: 16px; line-height: 1.55; }
.hero-actions { display: flex; gap: 18px; margin-top: 20px; }
.button { min-height: 42px; padding: 10px 23px; border: 1px solid transparent; }
.button-light { background: #fff; color: var(--ink); }
.button-outline { border-color: rgba(255,255,255,.9); color: #fff; }
.button-gold { background: var(--gold); color: #16202b; }
.button-dark { background: var(--ink); color: #fff; }
.play-dot { display: inline-grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 9px; }
.scribble, .about-scribble, .hero-note { font-family: "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive; font-style: italic; }
.scribble { margin-top: 18px; font-size: 20px; line-height: 1.15; transform: rotate(-6deg); width: max-content; }
.scribble span { padding-left: 60px; }
.hero-note { position: absolute; right: 90px; top: 30px; font-size: 18px; line-height: 1.3; transform: rotate(-5deg); color: #0a2230; text-shadow: 0 1px 0 rgba(255,255,255,.4); }

.section-light { background: #fbfaf7; }
.services { padding: 26px 0 24px; }
.services-top { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.eyebrow { margin: 0 0 8px; font-size: 12px; font-weight: 800; letter-spacing: .22em; color: #69727d; }
.eyebrow.inverse { color: rgba(255,255,255,.82); }
.services h2, .about h2 { margin: 0; font-size: clamp(34px, 4vw, 48px); line-height: .98; letter-spacing: -.045em; }
.section-intro { margin: 14px 0 0; max-width: 500px; font-size: 15px; line-height: 1.55; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 28px; }
.service-card { text-align: center; padding: 0 24px; border-right: 1px solid var(--line); }
.service-card:last-child { border-right: 0; }
.icon-bubble { width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 12px; font-size: 34px; font-weight: 500; color: #13212b; }
.icon-bubble.coral { background: #ffc0ad; }
.icon-bubble.blue { background: #bed8ff; }
.icon-bubble.mint { background: #bcead9; }
.icon-bubble.violet { background: #d9c1ff; }
.service-card h3 { margin: 0 0 6px; font-size: 18px; }
.service-card p { margin: 0; color: #37414b; font-size: 14px; line-height: 1.55; }

.featured { background: linear-gradient(90deg, #0b2434, #0d2a3b); color: #fff; padding: 26px 0; }
.featured-grid { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 38px; align-items: stretch; }
.featured-copy { display: flex; flex-direction: column; align-items: flex-start; }
.penguino-title { font-family: "Trebuchet MS", ui-rounded, sans-serif; font-size: 64px; line-height: .95; font-weight: 900; letter-spacing: -.055em; transform: rotate(-2deg); margin: 3px 0 10px; }
.tagline { margin: 0 0 16px; font-size: 12px; letter-spacing: .33em; font-weight: 800; }
.featured-copy > p:not(.eyebrow):not(.tagline) { margin: 0 0 18px; font-size: 14px; line-height: 1.52; color: rgba(255,255,255,.92); }
.button-gold { margin-top: auto; padding-inline: 26px; }
.feature-media { display: grid; grid-template-columns: minmax(0, 1fr) 190px; gap: 8px; min-height: 315px; }
.main-poster { position: relative; margin: 0; overflow: hidden; min-height: 315px; }
.main-poster img { width: 100%; height: 100%; object-fit: cover; }
.main-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(0,0,0,.35)); pointer-events: none; }
.play-button { position: absolute; z-index: 2; left: 50%; top: 66%; translate: -50% -50%; width: 58px; height: 58px; border: 0; border-radius: 50%; background: #fff; color: #0b2230; box-shadow: 0 12px 30px rgba(0,0,0,.25); cursor: pointer; font-size: 23px; }
.main-poster figcaption { position: absolute; z-index: 2; left: 50%; bottom: 16px; translate: -50% 0; font-size: 16px; font-weight: 700; }
.thumb-stack { display: grid; grid-template-rows: repeat(3, 1fr); gap: 8px; }
.thumb-stack img { width: 100%; height: 100%; object-fit: cover; min-height: 0; }

.about { padding: 22px 0 20px; }
.about-grid { display: grid; grid-template-columns: 390px 1fr 150px; gap: 46px; align-items: center; }
.workspace-wrap img { width: 100%; aspect-ratio: 1.7 / 1; object-fit: cover; }
.about-copy p:not(.eyebrow) { max-width: 520px; margin: 12px 0 18px; color: #48535d; font-size: 14px; line-height: 1.55; }
.about-scribble { margin: 0; color: #636b72; font-size: 19px; line-height: 1.35; transform: rotate(-7deg); }

.site-footer { background: linear-gradient(90deg,#0c2231,#102c3c); color: #fff; padding: 28px 0 26px; }
.footer-inner { display: grid; grid-template-columns: 220px 1fr auto; grid-template-areas: "brand nav social" "copy nav location"; row-gap: 14px; align-items: center; }
.footer-brand { grid-area: brand; }
.footer-brand .brand-word { font-size: 25px; }
.footer-brand .brand-sub { font-size: 9px; }
.footer-nav { grid-area: nav; display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; font-size: 12px; }
.socials { grid-area: social; display: flex; gap: 20px; align-items: center; font-weight: 700; }
.copyright { grid-area: copy; margin: 0; font-size: 11px; color: rgba(255,255,255,.75); }
.location { grid-area: location; margin: 0; text-align: right; font-size: 11px; color: rgba(255,255,255,.75); }

@media (max-width: 980px) {
  .shell { width: min(calc(100% - 40px), var(--shell)); }
  .header-inner { grid-template-columns: 200px 1fr auto; }
  .site-nav { gap: 20px; font-size: 13px; }
  .hero-note { right: 45px; }
  .featured-grid { grid-template-columns: 280px minmax(0,1fr); gap: 26px; }
  .penguino-title { font-size: 56px; }
  .feature-media { grid-template-columns: minmax(0,1fr) 150px; }
  .about-grid { grid-template-columns: 340px 1fr; }
  .about-scribble { display: none; }
}

@media (max-width: 780px) {
  .site-header { height: 64px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand-word { font-size: 26px; }
  .brand-sub { font-size: 9px; }
  .header-cta { display: none; }
  .nav-toggle-label { display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border-radius: 50%; cursor: pointer; }
  .nav-toggle-label span { width: 22px; height: 2px; background: var(--ink); }
  .site-nav { position: absolute; top: 64px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 20px 18px; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 14px 30px rgba(10,25,35,.10); }
  .site-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .site-nav a.active::after { display: none; }
  .nav-toggle:checked ~ .site-nav { display: flex; }

  .hero { min-height: auto; }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(8,15,20,.18) 0%, rgba(8,15,20,.46) 38%, rgba(8,15,20,.92) 100%),
      url('assets/hero-art.jpg') 64% top / auto 58% no-repeat,
      #10212d;
  }
  .hero-inner { min-height: 650px; align-items: flex-end; }
  .hero-copy { width: 100%; padding: 250px 0 28px; }
  .hero h1 { font-size: clamp(54px, 14vw, 72px); }
  .hero-copy > p:not(.scribble) { max-width: 520px; }
  .hero-note { top: 18px; right: 22px; color: #102130; font-size: 16px; }

  .services { padding: 34px 0; }
  .services-top { grid-template-columns: 1fr; gap: 12px; }
  .section-intro { margin-top: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(3), .service-card:nth-child(4) { border-top: 1px solid var(--line); padding-top: 28px; }

  .featured-grid { grid-template-columns: 1fr; }
  .featured-copy { max-width: 620px; }
  .button-gold { margin-top: 0; }
  .feature-media { grid-template-columns: minmax(0, 1fr) 150px; }

  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .workspace-wrap { order: 1; }
  .about-copy { order: 2; }
  .workspace-wrap img { aspect-ratio: 16/9; }

  .footer-inner { grid-template-columns: 1fr auto; grid-template-areas: "brand social" "nav nav" "copy location"; }
  .footer-nav { justify-content: flex-start; padding-top: 8px; gap: 20px; }
}

@media (max-width: 520px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .hero-inner { min-height: 620px; }
  .hero-copy { padding-top: 225px; }
  .hero h1 { margin-bottom: 14px; }
  .hero-actions { flex-wrap: wrap; gap: 10px; }
  .button { width: auto; }
  .scribble { font-size: 17px; }
  .hero-note { right: 14px; top: 14px; font-size: 14px; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 0; border-top: 1px solid var(--line); padding: 24px 0 0; }
  .service-card:first-child { border-top: 0; padding-top: 0; }

  .featured { padding-block: 30px; }
  .penguino-title { font-size: 50px; }
  .feature-media { grid-template-columns: 1fr; }
  .main-poster { min-height: 270px; }
  .thumb-stack { grid-template-columns: repeat(3, 1fr); grid-template-rows: 100px; }
  .thumb-stack img { height: 100px; }

  .about h2 { font-size: 38px; }
  .footer-inner { grid-template-columns: 1fr; grid-template-areas: "brand" "nav" "social" "copy" "location"; }
  .footer-nav { gap: 14px 18px; }
  .location { text-align: left; }
}
