/* styles.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:         #f1efe9;
  --ink-dim:     #6e6b65;
  --ink-faint:   #3a3835;
  --paper:       #0b0a08;
  --paper-2:     #131210;
  --accent:      #c97058;
  --rule:        rgba(241, 239, 233, 0.18);
  --rule-strong: rgba(241, 239, 233, 0.85);

  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono:  'JetBrains Mono', ui-monospace, monospace;
  --font-sans:  'Inter Tight', system-ui, sans-serif;
  --border-radius-lg: 12px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
}

/* ─── GLOBAL HEADER (from topbar) ──────────────────────────────────────── */
header.sk-global-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 10, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 56px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  text-transform: uppercase;
  transition: border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}
header.sk-global-header.scrolled {
  border-bottom: 1px solid var(--rule);
}
.sk-classified { display: flex; align-items: center; gap: 10px; }
.sk-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px rgba(201, 112, 88, 0.6); animation: sk-pulse 2.4s ease-in-out infinite; }
@keyframes sk-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.sk-brand-est { color: var(--ink); letter-spacing: 0.18em; font-weight: 500; }
.sk-brand-est .sep { display: inline-block; margin: 0 10px; color: var(--ink-faint); }
.sk-nav { display: flex; align-items: center; gap: 32px; }
.sk-nav a { color: var(--ink-dim); text-decoration: none; position: relative; padding: 4px 0; transition: color 0.3s ease; }
.sk-nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--ink); transition: width 0.3s ease; }
.sk-nav a:hover, .sk-nav a[aria-current="page"] { color: var(--ink); }
.sk-nav a:hover::after, .sk-nav a[aria-current="page"]::after { width: 100%; }
.sk-nav-cta { color: var(--ink) !important; border: 1px solid var(--rule-strong); padding: 9px 16px !important; border-radius: 2px; transition: all 0.3s ease; }
.sk-nav-cta::after { display: none !important; }
.sk-nav-cta:hover { background: var(--ink); color: var(--paper) !important; }
.sk-nav-cta:focus-visible, .sk-nav a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* Mobile Menu */
.sk-mobile-toggle { display: none; background: transparent; border: none; color: var(--ink); cursor: pointer; padding: 8px; z-index: 60; }
.sk-mobile-overlay { position: fixed; inset: 0; background: var(--paper); z-index: 55; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 32px; transform: translateY(-100%); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.sk-mobile-overlay.open { transform: translateY(0); }
.sk-mobile-overlay a { font-size: 24px; color: var(--ink); text-decoration: none; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }

/* ─── HERO ──────────────────────────────────────── */
.sk-hero {
  padding: 32px 56px 44px;
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  flex-direction: column;
}
.sk-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 1;
  background-color: var(--paper-2);
}
.sk-hero > * { position: relative; z-index: 3; }
.sk-main { flex: 1; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; padding: 100px 0 64px; }
.sk-headline-block { display: flex; flex-direction: column; gap: 36px; }
.sk-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; color: var(--ink-dim); text-transform: uppercase; }
.sk-eyebrow .bar { width: 36px; height: 1px; background: var(--accent); }
.sk-eyebrow .file-no { color: var(--accent); }
.sk-heading { font-family: var(--font-serif); font-weight: 400; font-size: 188px; line-height: 0.86; letter-spacing: -0.04em; color: var(--ink); margin: 0; font-style: italic; }
.sk-heading .bracket { color: var(--ink-faint); font-style: normal; font-weight: 200; font-family: var(--font-sans); letter-spacing: -0.02em; }
.sk-heading .yours { display: inline-block; }
.sk-heading .next { display: inline-block; position: relative; }
.sk-heading .period { color: var(--accent); font-style: normal; }
.sk-sub { display: flex; align-items: baseline; gap: 14px; max-width: 620px; }
.sk-sub-bracket { font-family: var(--font-mono); color: var(--ink-faint); font-size: 22px; font-weight: 300; }
.sk-sub-text { font-family: var(--font-serif); font-size: 26px; line-height: 1.35; color: var(--ink); font-weight: 400; letter-spacing: -0.005em; }
.sk-accent-col { display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-end; gap: 28px; padding-bottom: 8px; }
.sk-vertical-mark { writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.4em; color: var(--ink-dim); text-transform: uppercase; padding-bottom: 24px; border-right: 1px solid var(--rule); padding-right: 14px; }
.sk-secondary-accent { font-family: var(--font-sans); font-weight: 800; font-size: 96px; letter-spacing: -0.055em; line-height: 0.85; color: var(--ink); margin: 0; text-align: right; -webkit-text-stroke: 1px var(--ink); color: transparent; transition: color 0.5s ease; }
.sk-hero:hover .sk-secondary-accent, .sk-hero:focus-within .sk-secondary-accent { color: var(--ink); }
.sk-accent-meta { display: flex; flex-direction: column; gap: 6px; text-align: right; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--ink-dim); text-transform: uppercase; }
.sk-accent-meta .v { color: var(--ink); letter-spacing: 0.12em; }
.sk-rail { display: grid; grid-template-columns: 1.1fr 1fr 1fr auto; gap: 40px; padding-top: 28px; border-top: 1px solid var(--rule-strong); align-items: center; }
.sk-rail-cell { display: flex; flex-direction: column; gap: 6px; }
.sk-rail-key { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.26em; color: var(--ink-dim); text-transform: uppercase; }
.sk-rail-val { font-family: var(--font-sans); font-size: 13px; color: var(--ink); letter-spacing: 0.01em; font-weight: 400; }
.sk-rail-val.serif { font-family: var(--font-serif); font-style: italic; font-size: 16px; }
.sk-rail-cta { display: inline-flex; align-items: center; gap: 14px; background: var(--ink); color: var(--paper); padding: 14px 22px; border-radius: 2px; text-decoration: none; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; transition: all 0.3s ease; cursor: pointer; border: 1px solid var(--ink); }
.sk-rail-cta:hover, .sk-rail-cta:focus-visible { background: var(--accent); color: var(--ink); border-color: var(--accent); outline: none; }
.sk-rail-cta .arrow { display: inline-block; transition: transform 0.3s ease; }
.sk-rail-cta:hover .arrow, .sk-rail-cta:focus-visible .arrow { transform: translateX(4px); }

/* Entry animations hero */
@keyframes sk-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sk-fade { from { opacity: 0; } to { opacity: 1; } }
.sk-topbar { animation: sk-fade 0.8s ease both; }
.sk-eyebrow { animation: sk-rise 0.9s ease both; animation-delay: 0.15s; }
.sk-heading .yours { animation: sk-rise 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both; animation-delay: 0.3s; display: inline-block; }
.sk-heading .next { animation: sk-rise 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both; animation-delay: 0.5s; display: inline-block; }
.sk-hero .sk-sub { animation: sk-rise 1s ease both; animation-delay: 0.75s; }
.sk-accent-col { animation: sk-fade 1.2s ease both; animation-delay: 0.55s; }
.sk-rail { animation: sk-rise 1s ease both; animation-delay: 0.95s; }

/* ─── WORK (Parallax) ──────────────────────────────────────── */
.sk-work {
  position: relative;
  overflow: hidden;
  height: 100vh;
  min-height: 800px;
  background: var(--paper);
}
.sk-work-scene {
  position: absolute;
  inset: -100px;
  background-image: url('assets/room.jpg');
  background-size: cover;
  background-position: center;
  transition: transform 0.1s linear;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0) scale(1.05);
}
.sk-work-hotspot {
  position: absolute;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  border: none;
  background: transparent;
  padding: 0;
}
.sk-work-hotspot-inner {
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-radius: 50%;
  margin: 19px;
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
}
.sk-work-hotspot-inner::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(241, 239, 233, 0.2);
  border-radius: 50%;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.sk-work-hotspot:hover .sk-work-hotspot-inner,
.sk-work-hotspot:focus-visible .sk-work-hotspot-inner {
  transform: scale(1.5);
  background: var(--accent);
}
.sk-work-hotspot:hover .sk-work-hotspot-inner::after,
.sk-work-hotspot:focus-visible .sk-work-hotspot-inner::after {
  transform: scale(1.5);
  border-color: rgba(201, 112, 88, 0.4);
}
.sk-work-hotspot:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 50%; }

.sk-work-overlay {
  position: fixed; inset: 0; z-index: 100;
  animation: deckSlideUp 0.6s cubic-bezier(0.22,1,0.36,1) both;
  display: none;
}
.sk-work-overlay.active { display: block; }
@keyframes deckSlideUp { from{transform:translateY(100%)} to{transform:translateY(0)} }
.sk-work-overlay-scroller {
  position: absolute; inset: 0; overflow-y: scroll; scrollbar-width: none; -ms-overflow-style: none; z-index: 1;
}
.sk-work-overlay-scroller::-webkit-scrollbar { display: none; }
.sk-work-overlay-layer { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.sk-work-card {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 80px 64px 80px;
  overflow: hidden;
  will-change: transform;
}
.sk-work-topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 80; padding: 20px 32px; display: flex; justify-content: space-between; align-items: center; background: linear-gradient(to bottom, rgba(10,10,10,0.9) 0%, transparent 100%);
}
.sk-work-rail {
  position: absolute; right: 32px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 12px; z-index: 80;
}
.sk-work-rail button {
  width: 2px; border: none; padding: 0; cursor: pointer; transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
}
.sk-work-rail button:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.sk-work-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 80; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: opacity 0.5s ease; pointer-events: none;
}
@keyframes arrowBob { 0%,100%{transform:translateY(0);opacity:0.4} 50%{transform:translateY(6px);opacity:0.8} }
.sk-work-hint .scroll-arrow { color: var(--accent); font-size: 18px; animation: arrowBob 1.6s ease-in-out infinite; }
.sk-work-close { background: transparent; border: 1px solid #333; color: #e8e6e1; padding: 6px 14px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-family: inherit; cursor: pointer; pointer-events: auto; }
.sk-work-close:focus-visible { outline: 2px solid var(--accent); }
.sk-work-overlay-content { max-width: 860px; margin: 0 auto; width: 100%; pointer-events: auto; }

/* ─── ENGAGEMENTS ──────────────────────────────────────── */
.sk-eng {
  padding: 80px 56px 100px;
  position: relative;
  overflow: hidden;
}
.sk-eng-header { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; padding-bottom: 48px; border-bottom: 1px solid var(--rule-strong); margin-bottom: 0; }
.sk-eng-meta { display: flex; flex-direction: column; gap: 14px; }
.sk-eng-filetag { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; color: var(--ink-dim); text-transform: uppercase; }
.sk-eng-filetag .bar { width: 28px; height: 1px; background: var(--accent); }
.sk-eng-filetag .file-no { color: var(--accent); }
.sk-eng-section-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--ink-dim); text-transform: uppercase; }
.sk-eng-headline { font-family: var(--font-serif); font-weight: 400; font-style: italic; font-size: 72px; line-height: 0.95; letter-spacing: -0.025em; color: var(--ink); margin: 0; }
.sk-eng-headline .period { color: var(--accent); font-style: normal; }
.sk-eng-sub { font-family: var(--font-sans); font-size: 15px; line-height: 1.55; color: var(--ink-dim); margin-top: 24px; max-width: 520px; font-weight: 300; }
.sk-eng-sub strong { color: var(--ink); font-weight: 400; }
.sk-eng-list { display: flex; flex-direction: column; }
.sk-eng-row { display: grid; grid-template-columns: 80px 1fr 1.2fr auto; text-decoration: none; color: inherit; gap: 48px; padding: 36px 0; border-bottom: 1px solid var(--rule); align-items: start; transition: all 0.4s ease; cursor: pointer; position: relative; }
.sk-eng-row:last-child { border-bottom: 1px solid var(--rule-strong); }
.sk-eng-row::before { content: ''; position: absolute; left: -56px; right: -56px; top: 0; bottom: 0; background: linear-gradient(90deg, transparent, rgba(241, 239, 233, 0.02), transparent); opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.sk-eng-row:hover::before, .sk-eng-row:focus-visible::before { opacity: 1; }
.sk-eng-row:hover .sk-eng-arrow, .sk-eng-row:focus-visible .sk-eng-arrow { transform: translateX(8px); color: var(--accent); }
.sk-eng-row:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.sk-eng-index { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--ink-faint); padding-top: 8px; }
.sk-eng-index .num { display: block; font-family: var(--font-serif); font-size: 28px; color: var(--ink-dim); font-style: italic; letter-spacing: -0.01em; margin-bottom: 4px; }
.sk-eng-title-col { display: flex; flex-direction: column; gap: 12px; }
.sk-eng-title { font-family: var(--font-serif); font-weight: 400; font-size: 44px; line-height: 1; letter-spacing: -0.02em; color: var(--ink); margin: 0; font-style: normal; transition: color 0.75s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1); position: relative; }
.sk-eng-title::after { content: attr(data-title); position: absolute; left: 0; top: 0; font-style: italic; color: var(--accent); opacity: 0; transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; white-space: nowrap; }
.sk-eng-row:hover .sk-eng-title, .sk-eng-row:focus-visible .sk-eng-title { color: transparent; }
.sk-eng-row:hover .sk-eng-title::after, .sk-eng-row:focus-visible .sk-eng-title::after { opacity: 1; }
.sk-eng-codename { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--ink-dim); text-transform: uppercase; }
.sk-eng-codename .key { color: var(--ink-faint); }
.sk-eng-desc-col { display: flex; flex-direction: column; gap: 16px; padding-top: 6px; }
.sk-eng-desc { font-family: var(--font-sans); font-size: 14px; line-height: 1.55; color: var(--ink-dim); font-weight: 300; max-width: 440px; }
.sk-eng-desc strong { color: var(--ink); font-weight: 400; }
.sk-eng-tags { display: flex; flex-wrap: wrap; gap: 8px 16px; padding-top: 4px; }
.sk-eng-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--ink-dim); text-transform: uppercase; position: relative; padding-left: 14px; }
.sk-eng-tag::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 1px; background: var(--accent); }
.sk-eng-arrow-col { padding-top: 16px; }
.sk-eng-arrow { font-family: var(--font-serif); font-size: 32px; color: var(--ink-faint); transition: all 0.4s ease; display: inline-block; line-height: 1; }
.sk-eng-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--rule); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--ink-dim); text-transform: uppercase; }
.sk-eng-footer .accent { color: var(--accent); }

/* Eng animations */
@keyframes sk-eng-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ─── FINAL CTA ──────────────────────────────────────── */
.sk-final {
  padding: 32px 56px 28px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201,112,88,0.06), transparent 70%),
    radial-gradient(ellipse 80% 40% at 20% 50%, rgba(201,112,88,0.025), transparent 60%);
}
.sk-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.5;
  z-index: 0;
}
.sk-final > * { position: relative; z-index: 1; }
.sk-final .sk-main { flex: 1; display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; padding: 88px 0 72px; }
.sk-left { display: flex; flex-direction: column; gap: 36px; max-width: 640px; }
.sk-final .sk-heading { font-family: var(--font-serif); font-weight: 400; font-size: 128px; line-height: 0.9; letter-spacing: -0.038em; color: var(--ink); margin: 0; }
.sk-final .sk-heading .bracket { color: var(--ink-faint); font-style: normal; font-family: var(--font-sans); font-weight: 200; letter-spacing: -0.02em; }
.sk-final .sk-heading .italic { font-style: italic; }
.sk-final .sk-heading .period { color: var(--accent); font-style: normal; }
.sk-cta-row { display: flex; align-items: center; gap: 24px; margin-top: 4px; }
.sk-cta-primary { display: inline-flex; align-items: center; gap: 14px; background: var(--ink); color: var(--paper); padding: 16px 28px; border-radius: 2px; text-decoration: none; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; border: 1px solid var(--ink); transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease; cursor: pointer; }
.sk-cta-primary:hover, .sk-cta-primary:focus-visible { background: var(--accent); color: var(--ink); border-color: var(--accent); outline: none; }
.sk-cta-primary .arrow { display: inline-block; transition: transform 0.3s ease; }
.sk-cta-primary:hover .arrow, .sk-cta-primary:focus-visible .arrow { transform: translateX(4px); }
.sk-cta-ghost { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); text-decoration: none; padding-bottom: 3px; border-bottom: 1px solid transparent; transition: color 0.3s ease, border-color 0.3s ease; }
.sk-cta-ghost:hover, .sk-cta-ghost:focus-visible { color: var(--ink); border-bottom-color: var(--rule-strong); outline: none; }
.sk-right { position: relative; height: 540px; display: flex; flex-direction: column; }
.sk-marquee-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.28em; color: var(--ink-dim); text-transform: uppercase; padding-bottom: 14px; border-bottom: 1px solid var(--rule); margin-bottom: 0; flex-shrink: 0; }
.sk-marquee-track { flex: 1; overflow: hidden; position: relative; }
.sk-marquee-inner { display: flex; flex-direction: column; animation: sk-vmarquee 24s linear infinite; }
@keyframes sk-vmarquee { from { transform: translateY(0); } to { transform: translateY(-100%); } }
.sk-marquee-item { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 46px; line-height: 1.14; letter-spacing: -0.02em; padding: 20px 0; color: var(--ink); border-bottom: 1px solid var(--rule); transition: color 0.35s ease; will-change: opacity; }
.sk-fade { position: absolute; left: 0; right: 0; height: 130px; pointer-events: none; z-index: 2; }
.sk-fade.top { top: 0; background: linear-gradient(to bottom, var(--paper), transparent); }
.sk-fade.bottom { bottom: 0; background: linear-gradient(to top, var(--paper), transparent); }

/* Global Footer */
footer.sk-global-footer { display: flex; justify-content: space-between; align-items: center; padding: 22px 56px; border-top: 1px solid var(--rule-strong); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--ink); text-transform: uppercase; background: var(--paper); position: relative; z-index: 1; }
footer.sk-global-footer .sep { display: inline-block; margin: 0 10px; color: var(--ink-faint); }
footer.sk-global-footer .muted { color: var(--ink-dim); }

/* Final animations */
@keyframes sk-fade-in { from { opacity: 0; } to { opacity: 1; } }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  header.sk-global-header { padding: 16px 24px; }
  .sk-nav { display: none; }
  .sk-mobile-toggle { display: block; }
  
  .sk-hero { padding: 24px 28px 32px; min-height: 600px; }
  .sk-hero .sk-main { grid-template-columns: 1fr; padding: 64px 0 48px; gap: 32px; }
  .sk-heading { font-size: 92px; }
  .sk-sub-text { font-size: 20px; }
  .sk-secondary-accent { font-size: 56px; text-align: left; }
  .sk-accent-col { align-items: flex-start; }
  .sk-vertical-mark { display: none; }
  .sk-rail { grid-template-columns: 1fr 1fr; gap: 20px; }
  .sk-rail-cta { grid-column: 1 / -1; justify-content: center; }

  .sk-eng { padding: 56px 28px 72px; }
  .sk-eng-header { grid-template-columns: 1fr; gap: 32px; }
  .sk-eng-headline { font-size: 44px; }
  .sk-eng-row { grid-template-columns: 48px 1fr auto; gap: 20px; padding: 28px 0; }
  .sk-eng-desc-col { grid-column: 1 / -1; padding-left: 48px; padding-top: 12px; }
  .sk-eng-title { font-size: 30px; }
  .sk-eng-index .num { font-size: 22px; }
  .sk-eng-arrow { font-size: 24px; }
  .sk-eng-footer { flex-direction: column; gap: 12px; align-items: flex-start; }

  .sk-final { padding: 24px 24px 24px; }
  .sk-final .sk-main { grid-template-columns: 1fr; gap: 48px; padding: 56px 0 48px; }
  .sk-final .sk-heading { font-size: 72px; }
  .sk-final .sk-sub-text { font-size: 19px; }
  .sk-right { height: 380px; }
  .sk-marquee-item { font-size: 30px; padding: 14px 0; }
  .sk-cta-row { flex-direction: column; align-items: flex-start; gap: 16px; }

  footer.sk-global-footer { flex-direction: column; gap: 8px; text-align: center; padding: 24px; }
}

/* ─── PREFERS REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .sk-marquee-inner { animation: none; transform: translateY(0) !important; }
}
