*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bg: #c1beb7;
	--surface: #1b212c;
	--card: #1c1a16;
	--card-hover: #221f19;
	--border: #2a2620;
	--amber: #20b9e8;
	--amber-dim: #149db5;
	--amber-glow: rgba(232, 160, 32, 0.12);
	--amber-glow2: rgba(232, 160, 32, 0.06);
	--cream: #f5f0e8;
	--muted: #8a8070;
	--text: #ddd8cc;
	--white: #ffffff;
	--green: #2d7a3a;
	--red: #c0392b;
	--ff-serif: 'Playfair Display', Georgia, serif;
	--ff-sans: 'DM Sans', sans-serif;
	--radius: 6px;
	--radius-lg: 12px;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--ff-sans);
	font-weight: 400;
	line-height: 1.65;
	overflow-x: hidden;
}

/* Grain overlay */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 999;
	opacity: 0.5;
}

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
	font-family: var(--ff-serif);
	line-height: 1.2;
}
a {
	transition: color var(--transition);
}
img {
	max-width: 100%;
	display: block;
}

/* ─── LAYOUT ─────────────────────────────────── */
.gw-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 28px;
}

.gw-divider {
	border: none;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--border) 20%,
		var(--border) 80%,
		transparent
	);
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	background: var(--amber);
	color: var(--bg);
	font-family: var(--ff-sans);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-decoration: none;
	border-radius: var(--radius);
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition: var(--transition);
}
.btn-primary:hover {
	background: #f0aa28;
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(232, 160, 32, 0.3);
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	border: 1px solid var(--border);
	color: var(--text);
	font-family: var(--ff-sans);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-decoration: none;
	border-radius: var(--radius);
	text-transform: uppercase;
	background: transparent;
	cursor: pointer;
	transition: var(--transition);
}
.btn-outline:hover {
	border-color: var(--amber);
	color: var(--amber);
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	color: var(--amber);
	font-family: var(--ff-sans);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.5px;
	text-decoration: none;
	border-radius: var(--radius);
	text-transform: uppercase;
	background: transparent;
	border: none;
	cursor: pointer;
	transition: var(--transition);
}
.btn-ghost:hover {
	background: var(--amber-glow);
}

/* ─── HEADER ─────────────────────────────────── */
.gw-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	border-bottom: 1px solid transparent;
	transition: var(--transition);
}
.gw-header.scrolled {
	background: rgba(14, 13, 11, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-color: var(--border);
}
.gw-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}

.gw-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
}

.gw-logo-name {
	font-size: 35px;
	font-weight: 700;
	color: var(--amber);
	letter-spacing: 0.3px;
}
.gw-logo-name em {
	color: var(--amber);
	font-style: normal;
}

.gw-nav ul {
	display: flex;
	gap: 36px;
	list-style: none;
}
.gw-nav a {
	color: var(--muted);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	transition: var(--transition);
}
.gw-nav a:hover,
.gw-nav a.active {
	color: var(--cream);
}

.gw-header-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 22px;
	background: var(--amber);
	color: var(--bg);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-decoration: none;
	border-radius: var(--radius);
	text-transform: uppercase;
	transition: var(--transition);
}
.gw-header-cta:hover {
	background: #f0aa28;
	transform: translateY(-1px);
}

.gw-mobile-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 4px;
	background: none;
	border: none;
}
.gw-mobile-btn span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--cream);
	border-radius: 2px;
	transition: var(--transition);
}

/* Mobile nav overlay */
.gw-mobile-nav {
	display: none;
	position: fixed;
	inset: 0;
	background: var(--bg);
	z-index: 200;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 32px;
}
.gw-mobile-nav.open {
	display: flex;
}
.gw-mobile-nav a {
	font-family: var(--ff-serif);
	font-size: 32px;
	font-weight: 700;
	color: var(--cream);
	text-decoration: none;
	transition: color 0.2s;
}
.gw-mobile-nav a:hover {
	color: var(--amber);
}
.gw-mobile-close {
	position: absolute;
	top: 24px;
	right: 28px;
	font-size: 28px;
	background: none;
	border: none;
	color: var(--muted);
	cursor: pointer;
	font-family: var(--ff-sans);
}

/* ─── PAGE HERO (inner pages) ─────────────────── */
.gw-page-hero {
	padding: 140px 0 72px;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--border);
}
.gw-page-hero::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(232, 160, 32, 0.08) 0%,
		transparent 65%
	);
	pointer-events: none;
}
.gw-page-hero-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--amber);
	margin-bottom: 20px;
}
.gw-page-hero-label::before {
	content: '';
	display: block;
	width: 30px;
	height: 1px;
	background: var(--amber);
}
.gw-page-hero-title {
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 700;
	color: var(--cream);
	margin-bottom: 16px;
	max-width: 700px;
}
.gw-page-hero-sub {
	font-size: 16px;
	color: var(--muted);
	max-width: 560px;
	font-weight: 300;
	line-height: 1.7;
}

/* ─── SECTION UTILITIES ───────────────────────── */
.gw-section-head {
	margin-bottom: 64px;
}
.gw-section-head.centered {
	text-align: center;
}
.gw-section-head.centered .gw-eyebrow {
	justify-content: center;
}
.gw-section-head.centered .gw-section-sub {
	margin: 0 auto;
}

.gw-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--amber);
	margin-bottom: 16px;
}
.gw-eyebrow::before {
	content: '';
	display: block;
	width: 30px;
	height: 1px;
	background: var(--amber);
}

.gw-section-title {
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 700;
	color: var(--cream);
	margin-bottom: 16px;
}
.gw-section-sub {
	font-size: 16px;
	color: var(--muted);
	max-width: 560px;
	font-weight: 300;
}

/* ─── HERO (homepage) ─────────────────────────── */
.gw-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 120px 0 80px;
}
.gw-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(
			rgba(232, 160, 32, 0.04) 1px,
			transparent 1px
		),
		linear-gradient(90deg, rgba(232, 160, 32, 0.04) 1px, transparent 1px);
	background-size: 60px 60px;
}
.gw-hero::after {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 700px;
	height: 700px;
	background: radial-gradient(
		circle,
		rgba(232, 160, 32, 0.12) 0%,
		transparent 65%
	);
	pointer-events: none;
}
.gw-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1;
}
.gw-hero-title {
	font-size: clamp(38px, 5vw, 64px);
	font-weight: 900;
	color: var(--cream);
	line-height: 1.08;
	margin-bottom: 24px;
}
.gw-hero-title .line-accent {
	color: var(--amber);
	font-style: italic;
}
.gw-hero-desc {
	font-size: 17px;
	color: var(--muted);
	line-height: 1.7;
	max-width: 480px;
	margin-bottom: 40px;
	font-weight: 300;
}
.gw-hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 60px;
}
.gw-hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}
.gw-stat {
	padding: 20px 24px;
	background: var(--card);
	transition: var(--transition);
}
.gw-stat:hover {
	background: var(--card-hover);
}
.gw-stat-num {
	display: block;
	font-family: var(--ff-serif);
	font-size: 28px;
	font-weight: 700;
	color: var(--amber);
	line-height: 1;
	margin-bottom: 4px;
}
.gw-stat-label {
	font-size: 12px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
}
.gw-hero-visual {
	position: relative;
}
.gw-hero-img-wrap {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4/5;
	border: 1px solid var(--border);
}
.gw-hero-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(20%) brightness(0.85);
	transition: transform 0.6s ease;
}
.gw-hero-img-wrap:hover img {
	transform: scale(1.03);
}
.gw-hero-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(14, 13, 11, 0.6) 0%,
		transparent 50%
	);
}
.gw-hero-badge {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: rgba(14, 13, 11, 0.85);
	backdrop-filter: blur(12px);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 14px 18px;
}
.gw-hero-badge-label {
	font-size: 11px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 4px;
}
.gw-hero-badge-val {
	font-family: var(--ff-serif);
	font-size: 18px;
	font-weight: 700;
	color: var(--cream);
}
.gw-hero-badge-val span {
	color: var(--amber);
}
.gw-hero-tag {
	position: absolute;
	top: -16px;
	right: -20px;
	background: var(--amber);
	color: var(--bg);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 8px 16px;
	border-radius: 4px;
	z-index: 2;
}

/* ─── FEATURES ───────────────────────────────── */
.gw-features {
	padding: 100px 0;
}
.gw-features-layout {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 2px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.gw-feat {
	background: var(--card);
	padding: 48px 36px;
	position: relative;
	transition: var(--transition);
	cursor: default;
}
.gw-feat:hover {
	background: var(--card-hover);
}
.gw-feat-num {
	font-family: var(--ff-serif);
	font-size: 64px;
	font-weight: 900;
	color: var(--border);
	line-height: 1;
	margin-bottom: 28px;
	transition: var(--transition);
	user-select: none;
}
.gw-feat:hover .gw-feat-num {
	color: var(--amber-dim);
}
.gw-feat-icon {
	width: 48px;
	height: 48px;
	background: var(--amber-glow);
	border: 1px solid rgba(232, 160, 32, 0.2);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 22px;
}
.gw-feat h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--cream);
	margin-bottom: 12px;
}
.gw-feat p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.7;
	font-weight: 300;
}
.gw-feat-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	color: var(--amber);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	opacity: 0;
	transition: var(--transition);
}
.gw-feat:hover .gw-feat-arrow {
	opacity: 1;
}

/* ─── ABOUT ──────────────────────────────────── */
.gw-about {
	padding: 100px 0;
	background: var(--surface);
}
.gw-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.gw-about-visual {
	position: relative;
}
.gw-about-img {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border);
	aspect-ratio: 3/4;
}
.gw-about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(15%) brightness(0.8);
	transition: transform 0.6s ease;
}
.gw-about-img:hover img {
	transform: scale(1.03);
}
.gw-about-accent {
	position: absolute;
	bottom: -32px;
	right: -32px;
	background: var(--amber);
	color: var(--bg);
	padding: 28px 32px;
	border-radius: 8px;
	max-width: 220px;
	font-family: var(--ff-serif);
}
.gw-about-accent-num {
	font-size: 48px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 6px;
}
.gw-about-accent-text {
	font-size: 14px;
	font-weight: 400;
	opacity: 0.85;
}
.gw-about-title {
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 700;
	color: var(--cream);
	margin-bottom: 20px;
}
.gw-about-title em {
	font-style: italic;
	color: var(--amber);
}
.gw-about-body {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.8;
	margin-bottom: 16px;
	font-weight: 300;
}
.gw-about-list {
	list-style: none;
	margin: 28px 0 36px;
}
.gw-about-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
	font-size: 14px;
	color: var(--text);
}

/* ─── TOPICS ─────────────────────────────────── */
.gw-topics {
	padding: 100px 0;
}
.gw-topics-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.gw-topic {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: var(--transition);
}
.gw-topic:hover {
	border-color: var(--amber-dim);
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}
.gw-topic-img {
	aspect-ratio: 16/9;
	overflow: hidden;
}
.gw-topic-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(20%) brightness(0.75);
	transition:
		transform 0.5s ease,
		filter 0.5s ease;
}
.gw-topic:hover .gw-topic-img img {
	transform: scale(1.05);
	filter: grayscale(0%) brightness(0.85);
}
.gw-topic-body {
	padding: 28px;
}
.gw-topic-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--amber);
	margin-bottom: 12px;
}
.gw-topic h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--cream);
	margin-bottom: 10px;
	line-height: 1.35;
}
.gw-topic p {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.65;
	font-weight: 300;
}
.gw-topic-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
}
.gw-topic-meta span {
	font-size: 12px;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: 6px;
}

/* ─── NEWSLETTER ─────────────────────────────── */
.gw-newsletter {
	padding: 100px 0;
	background: var(--surface);
	position: relative;
	overflow: hidden;
}
.gw-newsletter::before {
	content: '';
	position: absolute;
	top: -300px;
	left: 50%;
	transform: translateX(-50%);
	width: 800px;
	height: 600px;
	background: radial-gradient(
		ellipse,
		rgba(232, 160, 32, 0.07) 0%,
		transparent 70%
	);
	pointer-events: none;
}
.gw-nl-inner {
	max-width: 620px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}
.gw-nl-icon {
	width: 64px;
	height: 64px;
	background: var(--amber-glow);
	border: 1px solid rgba(232, 160, 32, 0.25);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin: 0 auto 28px;
}
.gw-nl-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--cream);
	margin-bottom: 16px;
}
.gw-nl-desc {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 40px;
	font-weight: 300;
}
.gw-nl-form {
	display: flex;
	gap: 12px;
}
.gw-nl-input {
	flex: 1;
	padding: 14px 20px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	color: var(--cream);
	font-family: var(--ff-sans);
	font-size: 14px;
	outline: none;
	transition: var(--transition);
}
.gw-nl-input::placeholder {
	color: var(--muted);
}
.gw-nl-input:focus {
	border-color: var(--amber);
}
.gw-nl-form .btn-primary {
	flex-shrink: 0;
}
.gw-nl-note {
	margin-top: 16px;
	font-size: 12px;
	color: var(--muted);
}

/* ─── FOOTER ─────────────────────────────────── */
.gw-footer {
	background: var(--bg);
	border-top: 1px solid var(--border);
	padding: 64px 0 32px;
}
.gw-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}
.gw-footer-brand p {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.7;
	margin-top: 16px;
	max-width: 280px;
	font-weight: 300;
}
.gw-footer-col h4 {
	font-family: var(--ff-serif);
	font-size: 15px;
	font-weight: 700;
	color: var(--cream);
	margin-bottom: 20px;
}
.gw-footer-col ul {
	list-style: none;
}
.gw-footer-col li {
	margin-bottom: 10px;
}
.gw-footer-col a {
	color: var(--muted);
	text-decoration: none;
	font-size: 13px;
	transition: var(--transition);
}
.gw-footer-col a:hover {
	color: var(--amber);
}
.gw-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 32px;
	border-top: 1px solid var(--border);
}
.gw-copyright {
	font-size: 12px;
	color: var(--muted);
}
.gw-footer-made {
	font-size: 12px;
	color: var(--muted);
}
.gw-footer-made span {
	color: var(--amber);
}

/* ─── COOKIE BANNER ──────────────────────────── */
.gw-cookie {
	position: fixed;
	bottom: 24px;
	left: 24px;
	max-width: 380px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 24px;
	z-index: 500;
	box-shadow: var(--shadow-lg);
	transform: translateY(120px);
	opacity: 0;
	transition:
		transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
		opacity 0.4s ease;
}
.gw-cookie.visible {
	transform: translateY(0);
	opacity: 1;
}
.gw-cookie h4 {
	color: var(--cream);
	font-size: 15px;
	margin-bottom: 8px;
}
.gw-cookie p {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 20px;
}
.gw-cookie p a {
	color: var(--amber);
	text-decoration: none;
}
.gw-cookie-btns {
	display: flex;
	gap: 10px;
}
.gw-cookie-accept {
	flex: 1;
	padding: 10px;
	background: var(--amber);
	color: var(--bg);
	border: none;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	font-family: var(--ff-sans);
	transition: var(--transition);
}
.gw-cookie-accept:hover {
	background: #f0aa28;
}
.gw-cookie-decline {
	flex: 1;
	padding: 10px;
	background: transparent;
	color: var(--muted);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	font-size: 13px;
	cursor: pointer;
	font-family: var(--ff-sans);
	transition: var(--transition);
}
.gw-cookie-decline:hover {
	color: var(--text);
	border-color: var(--muted);
}

/* ─── REVEAL ANIMATION ────────────────────────── */
.gw-reveal {
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}
.gw-reveal.visible {
	opacity: 1;
	transform: translateY(0);
}
.gw-reveal:nth-child(2) {
	transition-delay: 0.1s;
}
.gw-reveal:nth-child(3) {
	transition-delay: 0.2s;
}
.gw-reveal:nth-child(4) {
	transition-delay: 0.3s;
}

/* ─── PROSE (legal / inner pages) ─────────────── */
.gw-prose {
	max-width: 760px;
	padding: 72px 0 96px;
}
.gw-prose h2 {
	font-size: 24px;
	color: var(--cream);
	margin-top: 48px;
	margin-bottom: 16px;
}
.gw-prose h3 {
	font-size: 18px;
	color: var(--cream);
	margin-top: 32px;
	margin-bottom: 10px;
}
.gw-prose p {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.8;
	font-weight: 300;
	margin-bottom: 16px;
}
.gw-prose ul,
.gw-prose ol {
	padding-left: 24px;
	margin-bottom: 20px;
}
.gw-prose li {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.8;
	font-weight: 300;
	margin-bottom: 6px;
}
.gw-prose a {
	color: var(--amber);
	text-decoration: underline;
}
.gw-prose strong {
	color: var(--text);
	font-weight: 600;
}
.gw-prose .gw-info-box {
	background: var(--card);
	border: 1px solid var(--border);
	border-left: 3px solid var(--amber);
	border-radius: var(--radius);
	padding: 20px 24px;
	margin: 28px 0;
}
.gw-prose .gw-info-box p {
	margin: 0;
	font-size: 14px;
}

/* ─── CONTACT FORM ────────────────────────────── */
.gw-contact-layout {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 80px;
	padding: 72px 0 96px;
	align-items: start;
}
.gw-contact-info h3 {
	font-size: 22px;
	color: var(--cream);
	margin-bottom: 16px;
}
.gw-contact-info p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.75;
	font-weight: 300;
	margin-bottom: 32px;
}
.gw-contact-detail {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid var(--border);
}
.gw-contact-detail-icon {
	width: 40px;
	height: 40px;
	background: var(--amber-glow);
	border: 1px solid rgba(232, 160, 32, 0.2);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}
.gw-contact-detail-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 4px;
}
.gw-contact-detail-val {
	font-size: 14px;
	color: var(--text);
}

/* form */
.gw-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.gw-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.gw-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.gw-field label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--muted);
}
.gw-field input,
.gw-field select,
.gw-field textarea {
	padding: 13px 18px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	color: var(--cream);
	font-family: var(--ff-sans);
	font-size: 14px;
	outline: none;
	transition: var(--transition);
	resize: vertical;
}
.gw-field input::placeholder,
.gw-field textarea::placeholder {
	color: var(--muted);
}
.gw-field input:focus,
.gw-field select:focus,
.gw-field textarea:focus {
	border-color: var(--amber);
	background: var(--card-hover);
}
.gw-field select option {
	background: var(--card);
}
.gw-field textarea {
	min-height: 140px;
}
.gw-field-check {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	font-size: 13px;
	color: var(--muted);
	line-height: 1.5;
}
.gw-field-check input[type='checkbox'] {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: 2px;
	accent-color: var(--amber);
	cursor: pointer;
}
.gw-field-check a {
	color: var(--amber);
	text-decoration: underline;
}
.gw-form-success {
	display: none;
	padding: 20px 24px;
	background: rgba(45, 122, 58, 0.15);
	border: 1px solid rgba(45, 122, 58, 0.4);
	border-radius: var(--radius);
	color: #6fcf7c;
	font-size: 14px;
}
.gw-form-success.show {
	display: block;
}

/* ─── THANK YOU PAGE ──────────────────────────── */
.gw-thankyou {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 100px 0;
}
.gw-thankyou-inner {
	max-width: 560px;
	text-align: center;
	margin: 0 auto;
}
.gw-thankyou-icon {
	width: 80px;
	height: 80px;
	background: rgba(45, 122, 58, 0.15);
	border: 1px solid rgba(45, 122, 58, 0.4);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	margin: 0 auto 32px;
}
.gw-thankyou h1 {
	font-size: 40px;
	color: var(--cream);
	margin-bottom: 16px;
}
.gw-thankyou p {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 40px;
	font-weight: 300;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
	.gw-features-layout {
		grid-template-columns: 1fr;
	}
	.gw-about-accent {
		right: 0;
		bottom: -24px;
	}
	.gw-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}
	.gw-contact-layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}

@media (max-width: 768px) {
	.gw-nav,
	.gw-header-cta {
		display: none;
	}
	.gw-mobile-btn {
		display: flex;
	}
	.gw-hero-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.gw-hero-visual {
		order: -1;
	}
	.gw-hero-title {
		font-size: 36px;
	}
	.gw-about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.gw-about-accent {
		position: relative;
		right: auto;
		bottom: auto;
		max-width: 100%;
		margin-top: 20px;
		display: inline-block;
	}
	.gw-topics-grid {
		grid-template-columns: 1fr;
	}
	.gw-nl-form {
		flex-direction: column;
	}
	.gw-footer-grid {
		grid-template-columns: 1fr;
	}
	.gw-footer-bottom {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}
	.gw-hero-stats {
		grid-template-columns: 1fr;
	}
	.gw-form-row {
		grid-template-columns: 1fr;
	}
	.gw-hero-tag {
		display: none;
	}
}

.gw-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.gw-modal.active {
	display: flex;
}

.gw-modal-content {
	background: #fff;
	padding: 40px;
	border-radius: 16px;
	max-width: 500px;
	width: 90%;
	text-align: center;
	position: relative;
}

.gw-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
}
