/* ****************************************************************
   KOPI PLAY HUB - PRODUCTION STYLESHEET
   ------------------------------------------------------------------
   Concatenated build: reset.css + layout.css + components.css are
   kept as one file on purpose (bottom.css) so the site ships with a
   single HTTP request for styles. Sections below are divided with
   the same names the three source files would have had.
   ****************************************************************/

/* ============================================================
   TOKENS
   ============================================================ */
:root {
	--bg: #F2F3F5;
	--paper: #FFFFFF;
	--ink: #23272E;
	--slate: #55606E;
	--line: #D7DBE1;
	--accent: #E8611C;
	--accent-hover: #C94F12;
	--dusk: #1C2026;
	--dusk-line: #33383F;
	--font-display: "Playfair Display", Georgia, "Times New Roman", serif;
	--font-body: "Golos Text", Arial, Helvetica, sans-serif;
	--space-1: 8px;
	--space-2: 16px;
	--space-3: 24px;
	--space-4: 32px;
	--space-5: 48px;
	--space-6: 64px;
	--space-7: 96px;
	--space-8: 128px;
	--container: 1240px;
	--z-header: 1000;
	--z-menu: 1010;
	--z-tray: 900;
	/* unused on purpose, kept for the next palette pass */
	--accent-soft: #F4CBB0;
}

/* ============================================================
   RESET
   ============================================================ */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}
ul,
ol {
	margin: 0;
	padding: 0;
}
body {
	min-height: 100vh;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}
img,
picture,
svg {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
button,
input {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
}
button {
	background: none;
	border: 0;
	cursor: pointer;
}
table {
	border-collapse: collapse;
	width: 100%;
}
h1,
h2,
h3 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.08;
	color: var(--ink);
}
:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 3px;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--space-3);
	padding-right: var(--space-3);
}
.skip-to-main {
	position: absolute;
	top: -100px;
	left: var(--space-2);
	z-index: 1200;
	padding: var(--space-1) var(--space-3);
	background: var(--ink);
	color: var(--bg);
	font-weight: 600;
	border-radius: 2px;
	transition: top 0.2s ease;
}
.skip-to-main:focus {
	top: var(--space-2);
}
.site-header {
	position: sticky;
	top: 0;
	z-index: var(--z-header);
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}
.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
	height: 88px;
}
.site-header-nav {
	display: flex;
	align-items: center;
	gap: var(--space-4);
}
.site-header-nav ul {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	list-style: none;
}
.site-header-nav a {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--slate);
	padding: var(--space-1) 0;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}
.site-header-nav a:hover,
.site-header-nav a[aria-current="page"] {
	color: var(--ink);
	border-color: var(--accent);
}
.site-header-actions {
	display: flex;
	align-items: center;
	gap: var(--space-3);
}
.section {
	padding-top: var(--space-7);
	padding-bottom: var(--space-7);
}
.section-tight {
	padding-top: var(--space-5);
	padding-bottom: var(--space-5);
}
.section-tag {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--accent);
	margin-bottom: var(--space-2);
}
.dash-rule {
	border: 0;
	border-top: 1px dashed var(--line);
	margin: var(--space-6) 0;
}
.dash-rule-light {
	border: 0;
	border-top: 1px dashed var(--dusk-line);
	margin: var(--space-5) 0;
}
.site-footer {
	background: var(--ink);
	color: var(--bg);
	padding-top: var(--space-6);
	padding-bottom: var(--space-4);
}
.site-footer-inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: var(--space-5);
	padding-bottom: var(--space-5);
	border-bottom: 1px solid var(--dusk-line);
}
.site-footer-col-title {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: var(--space-2);
}
.site-footer-col ul {
	list-style: none;
}
.site-footer-col li {
	margin-bottom: var(--space-1);
}
.site-footer-col a {
	color: var(--bg);
	opacity: 0.85;
}
.site-footer-col a:hover {
	opacity: 1;
	color: var(--accent);
}
.site-footer-tagline {
	margin-top: var(--space-2);
	color: #C9CDD4;
	font-size: 14px;
	max-width: 260px;
}
.cta-actions {
	margin-top: var(--space-3);
}
.site-footer-legal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
	padding-top: var(--space-3);
	font-size: 13px;
	color: var(--slate);
}

/* ============================================================
   COMPONENTS - buttons, wordmark, burger
   ============================================================ */
.wordmark {
	display: flex;
	align-items: center;
	gap: var(--space-1);
}
.wordmark-mark {
	width: 34px;
	height: 34px;
	border-radius: 4px;
	background: var(--ink);
	color: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 16px;
}
.wordmark-text {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 19px;
	letter-spacing: -0.01em;
	color: inherit;
}
.wordmark-text em {
	font-style: normal;
	color: var(--accent);
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-1);
	padding: 14px 26px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	border-radius: 2px;
	border: 2px solid transparent;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	min-height: 48px;
}
.btn-solid {
	background: var(--accent);
	color: var(--ink);
	border-color: var(--accent);
}
.btn-solid:hover,
.btn-solid:focus-visible {
	background: var(--accent-hover);
	border-color: var(--accent-hover);
	color: var(--bg);
}
.btn-ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--ink);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
	background: var(--ink);
	color: var(--bg);
}
.btn-ghost-light {
	background: transparent;
	color: var(--bg);
	border-color: var(--bg);
}
.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
	background: var(--bg);
	color: var(--dusk);
}
.nav-button {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 48px;
	height: 48px;
}
.nav-button-bar {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--ink);
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-button[aria-expanded="true"] .nav-button-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.nav-button[aria-expanded="true"] .nav-button-bar:nth-child(2) {
	opacity: 0;
}
.nav-button[aria-expanded="true"] .nav-button-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   COMPONENTS - mobile full-screen menu
   ============================================================ */
.menu-veil {
	position: fixed;
	inset: 0;
	z-index: var(--z-menu);
	background: var(--dusk);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--space-6) var(--space-4);
}
.menu-veil[hidden] {
	display: none;
}
.menu-veil-close {
	position: absolute;
	top: var(--space-3);
	right: var(--space-3);
	width: 48px;
	height: 48px;
	color: var(--bg);
	font-size: 28px;
}
.menu-veil-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}
.menu-veil-link {
	font-family: var(--font-display);
	font-size: clamp(28px, 8vw, 40px);
	font-weight: 600;
	color: var(--bg);
}
.menu-veil-link:hover,
.menu-veil-link[aria-current="page"] {
	color: var(--accent);
}
.menu-veil-cta {
	margin-top: var(--space-4);
}

/* ============================================================
   COMPONENTS - cookie tray
   ============================================================ */
.privacy-tray {
	position: fixed;
	left: var(--space-3);
	bottom: var(--space-3);
	z-index: var(--z-tray);
	width: 420px;
	max-width: calc(100vw - (var(--space-3) * 2));
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 4px;
	box-shadow: 0 18px 40px rgba(28, 32, 38, 0.18);
	padding: var(--space-3);
	transform: translateY(16px);
	opacity: 0;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
.privacy-tray[hidden] {
	display: none;
}
.privacy-tray.is-visible {
	transform: translateY(0);
	opacity: 1;
}
.privacy-tray-inner p {
	font-size: 14px;
	color: var(--slate);
	margin-bottom: var(--space-2);
}
.privacy-tray-inner a {
	color: var(--ink);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.privacy-tray-actions {
	display: flex;
	gap: var(--space-2);
}
.privacy-tray-actions .btn {
	padding: 10px 18px;
	min-height: 44px;
	font-size: 13px;
}

/* ============================================================
   COMPONENTS - hero (diagonal veil)
   ============================================================ */
.landing {
	position: relative;
	min-height: 92vh;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
}
.landing-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.landing-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.landing-veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: var(--dusk);
	opacity: 0.93;
	clip-path: polygon(0 0, 62% 0, 48% 100%, 0 100%);
}
.landing-copy {
	position: relative;
	z-index: 2;
	max-width: 480px;
	padding: var(--space-7) var(--space-3) var(--space-7);
	color: var(--bg);
}
.landing-eyebrow {
	display: block;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: var(--space-2);
}
.landing-title {
	color: var(--bg);
	font-size: clamp(40px, 6vw, 84px);
	line-height: 1.02;
	margin-bottom: var(--space-3);
}
.landing-lede {
	font-size: 18px;
	line-height: 1.6;
	color: #C9CDD4;
	max-width: 460px;
	margin-bottom: var(--space-4);
}
.landing-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
}
.landing-scroll-cue {
	position: absolute;
	right: var(--space-4);
	bottom: var(--space-4);
	z-index: 2;
	color: var(--bg);
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
	display: flex;
	align-items: center;
	gap: var(--space-1);
}

/* ============================================================
   COMPONENTS - inner page head
   ============================================================ */
.page-head {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	padding-top: var(--space-6);
	padding-bottom: var(--space-6);
}
.page-head-title {
	font-size: clamp(32px, 4.6vw, 56px);
	max-width: 780px;
}
.page-head-lede {
	margin-top: var(--space-2);
	font-size: 18px;
	color: var(--slate);
	max-width: 640px;
}

/* ============================================================
   COMPONENTS - two column intro / story block
   ============================================================ */
.story-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-6);
	align-items: center;
}
.story-block-media img {
	width: 100%;
	height: 460px;
	object-fit: cover;
	border-radius: 4px;
}
.story-block-copy h2 {
	font-size: clamp(28px, 3.4vw, 42px);
	margin-bottom: var(--space-3);
}
.story-block-copy p + p {
	margin-top: var(--space-2);
}
.story-block-copy p {
	color: var(--slate);
}

/* ============================================================
   COMPONENTS - counter ledger
   ============================================================ */
.ledger {
	background: var(--paper);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.ledger-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.ledger-item {
	padding: var(--space-5) var(--space-3);
	text-align: left;
	border-left: 1px dashed var(--line);
}
.ledger-item:first-child {
	border-left: 0;
}
.ledger-figure {
	font-family: var(--font-display);
	font-size: clamp(36px, 4vw, 58px);
	font-weight: 700;
	color: var(--ink);
	display: block;
}
.ledger-figure span {
	color: var(--accent);
}
.ledger-caption {
	margin-top: var(--space-1);
	font-size: 14px;
	color: var(--slate);
	max-width: 220px;
}

/* ============================================================
   COMPONENTS - tiles (zones / menu teaser)
   ============================================================ */
.tile-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-4);
}
.tile {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.tile-media img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.tile-body {
	padding: var(--space-3);
	display: flex;
	flex-direction: column;
	gap: var(--space-1);
	flex-grow: 1;
}
.tile-title {
	font-size: 20px;
}
.tile-text {
	color: var(--slate);
	font-size: 15px;
	flex-grow: 1;
}
.tile-link {
	margin-top: var(--space-2);
	font-weight: 700;
	color: var(--accent);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* ============================================================
   COMPONENTS - dark inverted block (lepas senja)
   ============================================================ */
.lepas-senja {
	background: var(--dusk);
	color: var(--bg);
}
.lepas-senja-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-6);
	align-items: center;
}
.lepas-senja-title {
	color: var(--bg);
	font-size: clamp(28px, 3.4vw, 42px);
	margin-bottom: var(--space-3);
}
.lepas-senja-copy p {
	color: #C9CDD4;
	max-width: 480px;
}
.lepas-senja-list {
	list-style: none;
	margin-top: var(--space-4);
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}
.lepas-senja-item {
	padding-left: var(--space-3);
	position: relative;
	color: #C9CDD4;
	font-size: 15px;
}
.lepas-senja-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 8px;
	height: 2px;
	background: var(--accent);
}
.lepas-senja-media img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: 4px;
}

/* ============================================================
   COMPONENTS - compare table (pakej)
   ============================================================ */
.pakej-scroll {
	overflow-x: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--accent) transparent;
	border: 1px solid var(--line);
	border-radius: 4px;
}
.pakej-table {
	min-width: 760px;
}
.pakej-table caption {
	text-align: left;
	padding: var(--space-2) var(--space-3);
	font-size: 14px;
	color: var(--slate);
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}
.pakej-table th,
.pakej-table td {
	padding: var(--space-2) var(--space-3);
	text-align: left;
	border-bottom: 1px solid var(--line);
	font-size: 15px;
}
.pakej-table thead th {
	background: var(--ink);
	color: var(--bg);
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.pakej-table tbody tr:nth-child(even) {
	background: var(--bg);
}
.pakej-table tbody th {
	font-weight: 700;
	background: var(--paper);
}
.pakej-table td strong {
	color: var(--accent);
}

/* ============================================================
   COMPONENTS - spec list (zon permainan)
   ============================================================ */
.spec-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-3) var(--space-5);
}
.spec-item {
	padding-top: var(--space-2);
	border-top: 1px dashed var(--line);
}
.spec-item-label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 4px;
}
.spec-item-value {
	color: var(--ink);
	font-size: 15px;
}

/* ============================================================
   COMPONENTS - menu list (menu kopi)
   ============================================================ */
.menu-banner-img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: 4px;
}
.menu-group {
	margin-bottom: var(--space-6);
}
.menu-group-title {
	font-size: 22px;
	margin-bottom: var(--space-2);
	padding-bottom: var(--space-1);
	border-bottom: 2px solid var(--ink);
	display: inline-block;
}
.menu-row {
	display: flex;
	align-items: baseline;
	gap: var(--space-2);
	padding: var(--space-2) 0;
	border-bottom: 1px dashed var(--line);
}
.menu-row:last-child {
	border-bottom: 0;
}
.menu-row-head {
	flex-grow: 0;
	white-space: nowrap;
}
.menu-row-name {
	font-weight: 700;
	font-size: 16px;
}
.menu-row-note {
	display: block;
	font-size: 13px;
	color: var(--slate);
}
.menu-row-fill {
	flex-grow: 1;
	border-bottom: 1px dotted var(--line);
	transform: translateY(-4px);
}
.menu-row-price {
	flex-grow: 0;
	font-weight: 700;
	color: var(--accent);
	white-space: nowrap;
}

/* ============================================================
   COMPONENTS - team cards
   ============================================================ */
.team-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-4);
}
.team-card {
	display: flex;
	gap: var(--space-3);
	align-items: flex-start;
}
.team-card-photo {
	width: 140px;
	height: 180px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
}
.team-card-body {
	flex-grow: 1;
}
.team-card-name {
	font-size: 19px;
}
.team-card-role {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 4px 0 var(--space-2);
}
.team-card-bio {
	color: var(--slate);
	font-size: 15px;
}

/* ============================================================
   COMPONENTS - faq
   ============================================================ */
.faq {
	max-width: 760px;
}
.faq-item {
	border-bottom: 1px solid var(--line);
}
.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2);
	padding: var(--space-3) 0;
	text-align: left;
	font-size: 17px;
	font-weight: 700;
}
.faq-question-mark {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border: 1px solid var(--ink);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	transition: transform 0.2s ease;
}
.faq-item[data-open="true"] .faq-question-mark {
	transform: rotate(45deg);
}
.faq-answer {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.25s ease;
}
.faq-item[data-open="true"] .faq-answer {
	max-height: 320px;
}
.faq-answer-inner {
	padding-bottom: var(--space-3);
	color: var(--slate);
}

/* ============================================================
   COMPONENTS - legal block (hubungi)
   ============================================================ */
.legal-block {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 4px;
	padding: var(--space-4);
}
.legal-block-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-3) var(--space-4);
}
.legal-block-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--slate);
	margin-bottom: 2px;
}
.legal-block-value {
	font-size: 16px;
}
.legal-block-value a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* ============================================================
   COMPONENTS - lead form
   ============================================================ */
.lead-form {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 4px;
	padding: var(--space-4);
}
.lead-form-field {
	margin-bottom: var(--space-3);
}
.lead-form-label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--slate);
	margin-bottom: var(--space-1);
}
.lead-form-input {
	width: 100%;
	min-height: 48px;
	padding: 12px var(--space-2);
	border: 1px solid var(--line);
	border-radius: 3px;
	background: var(--bg);
}
.lead-form-input:focus {
	border-color: var(--accent);
}
.lead-form-consent {
	display: flex;
	align-items: flex-start;
	gap: var(--space-1);
	font-size: 14px;
	color: var(--slate);
}
.lead-form-consent input {
	margin-top: 4px;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}
.lead-form-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.lead-form-submit {
	width: 100%;
	margin-top: var(--space-2);
}
.lead-form-note {
	margin-top: var(--space-2);
	font-size: 13px;
	color: var(--slate);
}
.lead-form-status {
	margin-top: var(--space-2);
	font-size: 14px;
	font-weight: 700;
}
.lead-form-status[data-state="ok"] {
	color: #2E7D46;
}
.lead-form-status[data-state="fail"] {
	color: #B0301F;
}

/* ============================================================
   COMPONENTS - 404 / thanks
   ============================================================ */
.not-found {
	text-align: left;
	padding-top: var(--space-8);
	padding-bottom: var(--space-8);
}
.not-found-code {
	font-family: var(--font-display);
	font-size: clamp(64px, 12vw, 160px);
	line-height: 1;
	color: var(--line);
}
.thanks-steps {
	counter-reset: step;
	list-style: none;
	max-width: 560px;
}
.thanks-steps li {
	counter-increment: step;
	position: relative;
	padding: var(--space-2) 0 var(--space-2) var(--space-6);
	border-bottom: 1px dashed var(--line);
}
.thanks-steps li::before {
	content: counter(step, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: var(--space-2);
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--accent);
	font-size: 22px;
}

/* ============================================================
   RESPONSIVE - desktop-first, max-width overrides
   ============================================================ */
@media (max-width: 1024px) {
	.tile-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.ledger-row {
		grid-template-columns: repeat(2, 1fr);
	}
	.ledger-item:nth-child(3) {
		border-left: 0;
	}
	.ledger-item:nth-child(odd) {
		border-left: 0;
	}
	.story-block,
	.lepas-senja-inner {
		grid-template-columns: 1fr;
	}
	.story-block-media img,
	.lepas-senja-media img {
		height: 320px;
	}
	.site-footer-inner {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 768px) {
	.site-header-nav {
		display: none;
	}
	.nav-button {
		display: flex;
	}
	.landing {
		align-items: stretch;
		min-height: 100svh;
	}
	.landing-veil {
		clip-path: polygon(0 30%, 100% 18%, 100% 100%, 0 100%);
	}
	.landing-copy {
		max-width: 100%;
		padding: var(--space-6) var(--space-2) var(--space-6);
		align-self: flex-end;
	}
	.landing-scroll-cue {
		display: none;
	}
	.tile-grid {
		grid-template-columns: 1fr;
	}
	.team-grid {
		grid-template-columns: 1fr;
	}
	.spec-list {
		grid-template-columns: 1fr;
	}
	.legal-block-grid {
		grid-template-columns: 1fr;
	}
	.site-footer-inner {
		grid-template-columns: 1fr;
		gap: var(--space-4);
	}
	.site-footer-legal {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--space-1);
	}
}
@media (max-width: 600px) {
	.wrap {
		padding-left: var(--space-2);
		padding-right: var(--space-2);
	}
	.section {
		padding-top: var(--space-5);
		padding-bottom: var(--space-5);
	}
	.ledger-row {
		grid-template-columns: 1fr;
	}
	.ledger-item {
		border-left: 0;
		border-top: 1px dashed var(--line);
	}
	.ledger-item:first-child {
		border-top: 0;
	}
	.team-card {
		flex-direction: column;
	}
	.team-card-photo {
		width: 100%;
		height: 220px;
	}
	.privacy-tray {
		left: var(--space-2);
		right: var(--space-2);
		bottom: var(--space-2);
		width: auto;
	}
	.menu-row {
		flex-wrap: wrap;
	}
	.menu-row-fill {
		display: none;
	}
}
