@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Instrument+Serif:ital@0;1&display=swap");

:root {
	--bg: #f4f7fb;
	--bg-dark: #071521;
	--surface: #ffffff;
	--text: #122033;
	--muted: #5f6d82;
	--line: #dbe4ef;
	--brand: #0b3552;
	--brand-light: #14567f;
	--brand-soft: #e7f1f8;
	--accent: #0f8f8f;
	--accent-soft: #d9f3f3;
	--gold: #c9a962;
	--shadow: 0 18px 50px rgba(11, 53, 82, 0.08);
	--shadow-lg: 0 28px 80px rgba(7, 21, 33, 0.18);
	--radius: 18px;
	--max: 1180px;
	--header-h: 76px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "DM Sans", "Segoe UI", sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.65;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: var(--accent);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.container {
	width: min(var(--max), calc(100% - 2rem));
	margin: 0 auto;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
}

.eyebrow::before {
	content: "";
	width: 28px;
	height: 2px;
	background: currentColor;
}

.eyebrow.on-dark {
	color: #9ce4e4;
}

.section-head {
	max-width: 740px;
	margin-bottom: 2.5rem;
}

.section-head h2 {
	margin: 0.75rem 0 0.85rem;
	font-family: "Instrument Serif", Georgia, serif;
	font-size: clamp(2rem, 4vw, 2.85rem);
	line-height: 1.08;
	font-weight: 400;
	color: var(--brand);
}

.section-head p {
	margin: 0;
	color: var(--muted);
	font-size: 1.05rem;
}

/* ---------- Header ---------- */

header.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(219, 228, 239, 0.9);
}

.nav {
	height: var(--header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	position: relative;
}

.logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.logo:hover {
	text-decoration: none;
}

.logo img {
	height: 44px;
	width: auto;
}

.logo.logo-light img {
	filter: none;
}

nav ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 1.4rem;
	margin: 0;
	padding: 0;
}

nav a {
	color: var(--text);
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
}

nav a:hover,
nav a.active {
	color: var(--accent);
	text-decoration: none;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.8rem 1.25rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.94rem;
	border: 1px solid transparent;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	cursor: pointer;
}

.btn:hover {
	text-decoration: none;
	transform: translateY(-1px);
}

.btn-primary {
	background: linear-gradient(135deg, var(--brand), var(--brand-light));
	color: #fff;
	box-shadow: 0 12px 30px rgba(11, 53, 82, 0.22);
}

.btn-secondary {
	background: #fff;
	color: var(--brand);
	border-color: var(--line);
}

.btn-ghost {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.18);
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	color: var(--brand);
	font-size: 1.1rem;
	cursor: pointer;
}

/* ---------- Photo Hero ---------- */

.hero-photo {
	position: relative;
	overflow: hidden;
	color: #fff;
	min-height: 620px;
	display: grid;
	align-items: center;
	isolation: isolate;
}

.hero-photo::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(135deg, rgba(7, 21, 33, 0.88) 0%, rgba(11, 53, 82, 0.55) 55%, rgba(15, 143, 143, 0.25) 100%),
		url("/assets/hero-singapore.jpg");
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.hero-photo .container {
	padding: 5rem 1rem;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 3rem;
	align-items: center;
}

.hero-copy h1 {
	margin: 1rem 0 1.2rem;
	font-family: "Instrument Serif", Georgia, serif;
	font-size: clamp(2.6rem, 6vw, 4.4rem);
	line-height: 1;
	font-weight: 400;
}

.hero-copy h1 em {
	font-style: italic;
	color: #d7f1f1;
}

.hero-copy p {
	margin: 0;
	max-width: 40rem;
	color: rgba(255, 255, 255, 0.86);
	font-size: 1.1rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2rem;
}

.hero-panel {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 24px;
	padding: 1.5rem;
	box-shadow: var(--shadow-lg);
	backdrop-filter: blur(8px);
}

.hero-panel-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.1rem;
}

.hero-badge {
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.hero-metric-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
}

.metric-card {
	background: rgba(7, 21, 33, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 1rem;
}

.metric-card strong {
	display: block;
	font-size: 1.6rem;
	line-height: 1.1;
	margin-bottom: 0.25rem;
}

.metric-card span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.85rem;
}

/* ---------- Trust strip ---------- */

.trust-strip {
	background: var(--surface);
	border-bottom: 1px solid var(--line);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	padding: 1.5rem 0;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.trust-icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: var(--brand-soft);
	color: var(--brand);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	font-size: 1.1rem;
}

.trust-item strong {
	display: block;
	font-size: 0.95rem;
}

.trust-item span {
	display: block;
	color: var(--muted);
	font-size: 0.84rem;
}

/* ---------- Section base ---------- */

.section {
	padding: 5rem 0;
}

.section-alt {
	background: linear-gradient(180deg, #fff 0%, #f5fafd 100%);
}

.section-dark {
	background: var(--bg-dark);
	color: rgba(255, 255, 255, 0.86);
}

.section-dark .section-head h2 {
	color: #fff;
}

.section-dark .section-head p {
	color: rgba(255, 255, 255, 0.72);
}

/* ---------- Split with image ---------- */

.split {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 2.5rem;
	align-items: center;
}

.split.reverse {
	grid-template-columns: 1.05fr 0.95fr;
}

.image-panel {
	border-radius: 24px;
	overflow: hidden;
	min-height: 460px;
	position: relative;
	background-size: cover;
	background-position: center;
	box-shadow: var(--shadow-lg);
}

.image-panel.about-photo {
	background-image:
		linear-gradient(180deg, rgba(7, 21, 33, 0.0), rgba(7, 21, 33, 0.4)),
		url("/assets/about-business.jpg");
}

.image-panel.contact-photo {
	background-image:
		linear-gradient(180deg, rgba(7, 21, 33, 0.05), rgba(7, 21, 33, 0.45)),
		url("/assets/contact-office.jpg");
}

.image-panel-caption {
	position: absolute;
	left: 1.25rem;
	right: 1.25rem;
	bottom: 1.25rem;
	padding: 1rem 1.15rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--text);
}

.image-panel-caption strong {
	display: block;
	color: var(--brand);
	margin-bottom: 0.2rem;
}

.image-panel-caption span {
	font-size: 0.88rem;
	color: var(--muted);
}

.about-panel {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 1.75rem;
	box-shadow: var(--shadow);
}

.about-panel h2 {
	margin: 0 0 0.85rem;
	font-family: "Instrument Serif", Georgia, serif;
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	font-weight: 400;
	color: var(--brand);
}

.about-panel p {
	margin: 0 0 0.75rem;
	color: var(--muted);
}

.about-panel p:last-child {
	margin-bottom: 0;
}

/* ---------- Grids ---------- */

.grid-3,
.grid-2 {
	display: grid;
	gap: 1.25rem;
}

.grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ---------- Service cards with media ---------- */

.service-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
}

.service-media {
	aspect-ratio: 16 / 10;
	background-size: cover;
	background-position: center;
}

.service-media.payments {
	background-image: url("/assets/service-payments.jpg");
}

.service-media.membership {
	background-image: url("/assets/service-membership.jpg");
}

.service-media.logistics {
	background-image: url("/assets/service-logistics.jpg");
}

.service-body {
	padding: 1.5rem 1.5rem 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	flex: 1;
}

.service-body h3 {
	margin: 0;
	font-size: 1.2rem;
	color: var(--brand);
}

.service-body p {
	margin: 0;
	color: var(--muted);
}

.service-body ul {
	margin: 0.5rem 0 0;
	padding-left: 1.1rem;
	color: var(--muted);
	font-size: 0.93rem;
}

.service-body ul li {
	margin-bottom: 0.2rem;
}

/* ---------- Simple card ---------- */

.card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow);
}

.card h3 {
	margin: 0 0 0.55rem;
	color: var(--brand);
}

.card p,
.card li {
	margin: 0;
	color: var(--muted);
}

/* ---------- Facts ---------- */

.facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
}

.fact {
	background: var(--brand-soft);
	border-radius: 16px;
	padding: 1rem 1.05rem;
}

.fact dt {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--brand);
	margin-bottom: 0.35rem;
	font-weight: 700;
}

.fact dd {
	margin: 0;
	font-weight: 600;
}

/* ---------- Timeline (rich) ---------- */

.timeline-rich {
	display: grid;
	gap: 1.5rem;
}

.timeline-item {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 1.75rem;
	align-items: stretch;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.timeline-photo {
	background-size: cover;
	background-position: center;
	min-height: 200px;
}

.timeline-body {
	padding: 1.5rem 1.75rem 1.5rem 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.timeline-year {
	display: inline-block;
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.7rem;
	width: max-content;
}

.timeline-body h3 {
	margin: 0 0 0.5rem;
	font-family: "Instrument Serif", Georgia, serif;
	font-size: clamp(1.3rem, 2.4vw, 1.7rem);
	font-weight: 400;
	color: var(--brand);
}

.timeline-body p {
	margin: 0;
	color: var(--muted);
}

/* Compact timeline (home) */

.timeline-compact {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.timeline-compact .timeline-item {
	grid-template-columns: 1fr;
}

.timeline-compact .timeline-photo {
	min-height: 150px;
}

.timeline-compact .timeline-body {
	padding: 1.25rem 1.4rem 1.4rem;
}

/* ---------- Compliance cards (dark) ---------- */

.compliance-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.compliance-card {
	padding: 1.5rem;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.compliance-card .ci {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(15, 143, 143, 0.22);
	color: #9ce4e4;
	display: grid;
	place-items: center;
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.compliance-card h3 {
	margin: 0 0 0.5rem;
	color: #fff;
	font-size: 1.05rem;
}

.compliance-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.94rem;
}

/* ---------- Audience strip ---------- */

.audience-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.audience-card {
	padding: 1.5rem;
	border-radius: 18px;
	background: var(--surface);
	border: 1px solid var(--line);
}

.audience-card strong {
	display: block;
	color: var(--brand);
	margin-bottom: 0.35rem;
	font-size: 1.05rem;
}

.audience-card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.93rem;
}

/* ---------- FAQ ---------- */

.faq-list {
	display: grid;
	gap: 0.85rem;
}

.faq-item {
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--surface);
	overflow: hidden;
}

.faq-item summary {
	cursor: pointer;
	list-style: none;
	padding: 1.1rem 1.25rem;
	font-weight: 600;
	color: var(--brand);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	font-size: 1.3rem;
	color: var(--accent);
	transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
	content: "−";
}

.faq-item p {
	margin: 0;
	padding: 0 1.25rem 1.15rem;
	color: var(--muted);
}

/* ---------- Contact ---------- */

.contact-grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 1.25rem;
}

.contact-list {
	display: grid;
	gap: 1rem;
}

.contact-list div {
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--line);
}

.contact-list div:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

/* ---------- CTA band ---------- */

.cta-band {
	padding: 3rem;
	border-radius: 28px;
	background: linear-gradient(135deg, var(--brand), var(--accent));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	box-shadow: var(--shadow-lg);
}

.cta-band h2 {
	margin: 0 0 0.5rem;
	font-family: "Instrument Serif", Georgia, serif;
	font-size: clamp(1.8rem, 3.8vw, 2.4rem);
	font-weight: 400;
}

.cta-band p {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
}

/* ---------- Footer ---------- */

.site-footer {
	background: var(--bg-dark);
	color: rgba(255, 255, 255, 0.72);
	padding: 3.5rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
	gap: 2rem;
}

.footer-grid h4 {
	margin: 0 0 0.9rem;
	color: #fff;
	font-size: 0.95rem;
}

.footer-grid ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}

.footer-grid a,
.footer-grid li {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	font-size: 0.95rem;
}

.footer-grid a:hover {
	color: #fff;
	text-decoration: none;
}

.footer-bottom {
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.88rem;
}

/* ---------- Legal pages ---------- */

.legal-page {
	padding: 3rem 0 4.5rem;
}

.legal {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 24px;
	padding: 2.25rem;
	box-shadow: var(--shadow);
	max-width: 820px;
	margin: 0 auto;
}

.legal h1 {
	margin-top: 0;
	font-family: "Instrument Serif", Georgia, serif;
	font-size: clamp(2.2rem, 4vw, 3rem);
	font-weight: 400;
	color: var(--brand);
}

.legal h2 {
	margin-top: 2rem;
	color: var(--brand);
	font-size: 1.15rem;
}

.legal p,
.legal li {
	color: var(--text);
}

.page-hero {
	color: #fff;
	position: relative;
	padding: 4.5rem 0 3.5rem;
	overflow: hidden;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(7, 21, 33, 0.92), rgba(11, 53, 82, 0.7) 60%, rgba(15, 143, 143, 0.35)),
		url("/assets/hero-singapore.jpg");
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.page-hero h1 {
	margin: 1rem 0 0.85rem;
	font-family: "Instrument Serif", Georgia, serif;
	font-size: clamp(2.4rem, 5vw, 3.4rem);
	font-weight: 400;
	line-height: 1.02;
}

.page-hero p {
	max-width: 46rem;
	color: rgba(255, 255, 255, 0.84);
	font-size: 1.05rem;
	margin: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
	.hero-grid,
	.split,
	.split.reverse,
	.contact-grid,
	.grid-3,
	.grid-2,
	.facts,
	.compliance-grid,
	.audience-grid,
	.trust-grid,
	.timeline-compact,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.timeline-item {
		grid-template-columns: 1fr;
	}

	.timeline-body {
		padding: 1.5rem;
	}

	.menu-toggle {
		display: inline-grid;
		place-items: center;
	}

	.site-nav {
		position: absolute;
		top: calc(var(--header-h) - 1px);
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--line);
		padding: 1rem;
		display: none;
	}

	.site-nav.open {
		display: block;
	}

	.site-nav ul {
		flex-direction: column;
		align-items: flex-start;
	}

	.nav-actions {
		display: none;
	}

	.cta-band {
		flex-direction: column;
		align-items: flex-start;
		padding: 2rem;
	}

	.hero-photo {
		min-height: 540px;
	}

	.image-panel {
		min-height: 320px;
	}
}

@media (max-width: 640px) {
	.section {
		padding: 3.5rem 0;
	}

	.hero-photo .container {
		padding: 3.5rem 1rem;
	}
}
