:root {
	--bg: #090b0d;
	--bg-soft: #111315;
	--panel: rgba(16, 18, 20, 0.72);
	--panel-border: rgba(255, 255, 255, 0.13);
	--text: #f3f0ea;
	--muted: #b9b7ae;
	--muted-dark: #8f9084;
	--accent: #a76649;
	--accent-light: #c18465;
	--badge: #8e9180;
	--line: rgba(255, 255, 255, 0.14);
	--shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
	--shadow-soft: 0 18px 46px rgba(0, 0, 0, 0.28);
	--radius-lg: 30px;
	--radius-md: 16px;
	--site-width: min(1240px, calc(100vw - 2.5rem));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.065), transparent 34%),
		radial-gradient(circle at 18% 82%, rgba(167, 102, 73, 0.09), transparent 24%),
		radial-gradient(circle at 82% 26%, rgba(142, 145, 128, 0.075), transparent 20%),
		linear-gradient(180deg, #111315 0%, #090b0d 45%, #08090a 100%);
	background-color: var(--bg);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	position: relative;
	overflow-x: hidden;
}

body::before,
body::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
}

body::before {
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0.6px, transparent 0.7px);
	background-size: 72px 72px, 72px 72px, 132px 132px;
	background-position: center center, center center, center center;
	opacity: 0.22;
	mix-blend-mode: screen;
}

body::after {
	background-image:
		repeating-linear-gradient(
			0deg,
			rgba(255, 255, 255, 0.012) 0,
			rgba(255, 255, 255, 0.012) 1px,
			transparent 1px,
			transparent 3px
		),
		repeating-linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.006) 0,
			rgba(255, 255, 255, 0.006) 1px,
			transparent 1px,
			transparent 4px
		);
	opacity: 0.08;
}

.igds-site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	padding: 1rem 1.25rem 0;
}

.igds-site-header__inner {
	width: min(1240px, calc(100vw - 2.5rem));
	margin: 0 auto;
	padding: 0.85rem 1rem;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(9, 11, 13, 0.78);
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow-soft);
}

.igds-site-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	text-decoration: none;
	min-width: 0;
}

.igds-site-brand__wordmark {
	font-family: "Allura", "Brush Script MT", cursive;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 0.9;
	color: var(--text);
}

.igds-site-brand__badge {
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: linear-gradient(145deg, rgba(173, 177, 157, 0.98), rgba(125, 129, 111, 0.95));
	color: rgba(245, 241, 235, 0.96);
	font-family: "Allura", "Brush Script MT", cursive;
	font-size: 1.5rem;
	line-height: 1;
	flex-shrink: 0;
}

.igds-site-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.igds-site-nav__menu,
.igds-site-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.igds-site-nav__menu {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.igds-site-nav__menu > li,
.igds-site-footer__menu > li {
	margin: 0;
	padding: 0;
}

.igds-site-nav__link,
.igds-site-nav__menu a,
.igds-site-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 0.95rem;
	border-radius: 999px;
	text-decoration: none;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.igds-site-nav__link,
.igds-site-nav__menu a {
	color: rgba(185, 183, 174, 0.88);
}

.igds-site-nav__link:hover,
.igds-site-nav__link:focus-visible,
.igds-site-nav__link.is-active,
.igds-site-nav__menu a:hover,
.igds-site-nav__menu a:focus-visible,
.igds-site-nav__menu .current-menu-item > a,
.igds-site-nav__menu .current_page_item > a,
.igds-site-nav__menu .current-menu-ancestor > a,
.igds-site-nav__menu .current_page_ancestor > a {
	color: var(--text);
	background: rgba(255, 255, 255, 0.05);
}

.igds-site-nav__link:focus-visible,
.igds-site-nav__menu a:focus-visible,
.igds-site-header__cta:focus-visible {
	outline: 2px solid rgba(243, 240, 234, 0.18);
	outline-offset: 3px;
}

.igds-site-header__cta {
	color: #171715;
	background: linear-gradient(135deg, rgba(184, 194, 174, 0.98), rgba(149, 160, 141, 0.98));
}

.igds-site-header__cta:hover,
.igds-site-header__cta:focus-visible {
	transform: translateY(-1px);
}

a {
	color: inherit;
}

button,
input {
	font: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	clip: auto;
	width: auto;
	height: auto;
	margin: 1rem;
	padding: 0.75rem 1rem;
	background: rgba(9, 11, 13, 0.95);
	border: 1px solid var(--panel-border);
	border-radius: 999px;
	z-index: 1000;
	color: var(--text);
}

.igds-page {
	position: relative;
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 3rem 1.5rem;
	isolation: isolate;
}

.igds-page--inner {
	padding-top: 2rem;
}

.igds-page::before,
.igds-page::after {
	content: "";
	position: absolute;
	pointer-events: none;
	inset: auto;
}

.igds-page::before {
	width: min(92vw, 980px);
	height: min(92vw, 980px);
	top: 5%;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 63%);
	filter: blur(14px);
	opacity: 0.7;
}

.igds-page::after {
	inset: 0;
	background:
		linear-gradient(180deg, rgba(9, 11, 13, 0.14), rgba(9, 11, 13, 0.65)),
		radial-gradient(circle at center, transparent 0%, rgba(9, 11, 13, 0.22) 75%, rgba(9, 11, 13, 0.7) 100%);
	z-index: -1;
}

.igds-shell {
	position: relative;
	width: var(--site-width);
	max-width: 1240px;
	display: grid;
	gap: 3.25rem;
	padding: min(7vw, 4.75rem) 0;
}

.igds-shell--page {
	gap: 2.2rem;
	padding-top: 1.2rem;
}

.igds-hero,
.igds-copy {
	display: grid;
	justify-items: center;
	text-align: center;
}

.igds-hero {
	position: relative;
}

.igds-hero-stage {
	position: relative;
	width: min(100%, 1120px);
	margin-inline: auto;
	padding: clamp(1.1rem, 3vw, 2.25rem) clamp(1rem, 3vw, 2rem) clamp(1.8rem, 3vw, 2.7rem);
	border: 1px solid rgba(255, 255, 255, 0.045);
	border-radius: 38px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
		radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 42%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.igds-hero-stage::before {
	content: "";
	position: absolute;
	inset: 16% 12%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 66%);
	filter: blur(26px);
	pointer-events: none;
}

.igds-hero-orbit {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 999px;
	pointer-events: none;
}

.igds-hero-orbit-left {
	left: clamp(1rem, 3vw, 2rem);
	top: clamp(2.4rem, 9vw, 5rem);
	width: clamp(80px, 10vw, 136px);
	height: clamp(80px, 10vw, 136px);
	border-right-color: transparent;
	border-bottom-color: transparent;
	opacity: 0.5;
}

.igds-hero-orbit-right {
	right: clamp(1.4rem, 4vw, 2.8rem);
	top: clamp(8rem, 18vw, 12rem);
	width: clamp(120px, 15vw, 200px);
	height: clamp(120px, 15vw, 200px);
	border-left-color: transparent;
	border-top-color: transparent;
	opacity: 0.18;
}

.igds-wordmark-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: clamp(0.8rem, 1.8vw, 1.35rem);
}

.igds-wordmark {
	font-family: "Allura", "Brush Script MT", cursive;
	font-size: clamp(4.7rem, 11vw, 9.5rem);
	line-height: 0.88;
	letter-spacing: -0.028em;
	color: rgba(243, 240, 234, 0.98);
	text-shadow:
		0 10px 26px rgba(255, 255, 255, 0.04),
		0 20px 60px rgba(0, 0, 0, 0.3);
}

.igds-badge {
	width: clamp(100px, 15vw, 158px);
	height: clamp(100px, 15vw, 158px);
	border-radius: 50%;
	display: grid;
	place-items: center;
	background:
		radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.17), transparent 26%),
		linear-gradient(145deg, rgba(173, 177, 157, 0.97), rgba(125, 129, 111, 0.92));
	color: rgba(245, 241, 235, 0.96);
	font-family: "Allura", "Brush Script MT", cursive;
	font-size: clamp(2.5rem, 5vw, 4.6rem);
	line-height: 1;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.18),
		0 10px 28px rgba(0, 0, 0, 0.38);
	position: relative;
	transform: translateY(0.02em) rotate(-4deg);
	flex-shrink: 0;
}

.igds-badge::before,
.igds-badge::after {
	content: "";
	position: absolute;
	inset: 5px;
	border-radius: inherit;
	border: 1px solid rgba(35, 37, 32, 0.45);
}

.igds-badge::after {
	inset: -4px;
	border-color: rgba(255, 255, 255, 0.05);
}

.igds-subbrand {
	display: inline-flex;
	align-items: center;
	gap: 1.3rem;
	margin-top: 1.15rem;
	color: var(--muted-dark);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 0.98rem;
	letter-spacing: 0.7em;
}

.igds-subbrand-text {
	padding-left: 0.7em;
}

.igds-subbrand-line {
	width: clamp(68px, 14vw, 170px);
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(185, 183, 174, 0.75) 60%, transparent 100%);
}

.igds-copy {
	gap: 1.1rem;
	width: min(100%, 1040px);
	margin-inline: auto;
	position: relative;
	z-index: 1;
}

.igds-kicker {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: rgba(185, 183, 174, 0.72);
}

.igds-headline {
	margin: 0;
	max-width: 960px;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(3.15rem, 5vw, 5.15rem);
	font-weight: 500;
	line-height: 0.9;
	letter-spacing: -0.03em;
	text-wrap: balance;
}

.igds-highlight {
	color: var(--accent-light);
}

.igds-break {
	display: none;
}

.igds-accent-rule {
	width: 64px;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, var(--accent-light) 25%, var(--accent-light) 75%, transparent 100%);
	border-radius: 999px;
	box-shadow: 0 0 18px rgba(193, 132, 101, 0.28);
}

.igds-intro {
	margin: 0;
	max-width: 58rem;
	color: var(--muted);
	font-size: clamp(1rem, 1.18vw, 1.14rem);
	line-height: 1.78;
	letter-spacing: 0.02em;
	text-wrap: pretty;
}

.igds-signup-panel {
	position: relative;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
	gap: 2.4rem;
	align-items: center;
	padding: clamp(1.6rem, 3vw, 2.25rem);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(180deg, rgba(19, 21, 24, 0.78), rgba(11, 13, 15, 0.84)),
		rgba(16, 18, 20, 0.72);
	backdrop-filter: blur(14px);
	box-shadow: var(--shadow);
}

.igds-signup-panel::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
	pointer-events: none;
}

.igds-panel-glow {
	position: absolute;
	right: -6%;
	top: -18%;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(193, 132, 101, 0.12), transparent 68%);
	filter: blur(8px);
	pointer-events: none;
}

.igds-panel-copy {
	display: grid;
	grid-template-columns: minmax(76px, 96px) minmax(0, 1fr);
	gap: 1.8rem;
	align-items: center;
}

.igds-panel-icon {
	width: 72px;
	height: 72px;
	display: grid;
	place-items: center;
	color: var(--accent-light);
}

.igds-panel-icon-link {
	border-radius: 14px;
	text-decoration: none;
	transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.igds-panel-icon-link:hover,
.igds-panel-icon-link:focus-visible {
	transform: translateY(-2px);
	filter: brightness(1.08);
	box-shadow:
		0 0 0 3px rgba(193, 132, 101, 0.14),
		0 10px 24px rgba(107, 54, 34, 0.18);
}

.igds-panel-icon-link:focus-visible {
	outline: 2px solid rgba(243, 240, 234, 0.24);
	outline-offset: 4px;
}

.igds-panel-icon svg {
	width: 64px;
	height: 64px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	filter: drop-shadow(0 8px 24px rgba(167, 102, 73, 0.18));
}

.igds-panel-body {
	padding-left: 1.8rem;
	border-left: 1px solid var(--line);
}

.igds-panel-heading {
	margin: 0 0 0.85rem;
	font-size: 1.22rem;
	line-height: 1.1;
	color: var(--muted-dark);
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.igds-panel-text {
	margin: 0;
	max-width: 20rem;
	color: var(--text);
	font-size: 1.08rem;
	line-height: 1.75;
}

.igds-panel-form {
	padding-left: 2.45rem;
	border-left: 1px solid var(--line);
	position: relative;
	z-index: 1;
}

.igds-form {
	display: grid;
	gap: 0.85rem;
}

.igds-form-field {
	position: relative;
}

.igds-input {
	width: 100%;
	min-height: 3.7rem;
	padding: 1rem 1.2rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
		rgba(18, 20, 22, 0.82);
	color: var(--text);
	outline: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.igds-input::placeholder {
	color: rgba(185, 183, 174, 0.62);
}

.igds-input:focus-visible {
	border-color: rgba(193, 132, 101, 0.85);
	box-shadow: 0 0 0 3px rgba(193, 132, 101, 0.16);
	background: rgba(22, 24, 27, 0.9);
	transform: translateY(-1px);
}

.igds-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.95rem;
	width: 100%;
	min-height: 3.55rem;
	padding: 0.95rem 1.1rem;
	border: 0;
	border-radius: 12px;
	background:
		linear-gradient(135deg, rgba(200, 140, 110, 0.98), rgba(165, 102, 73, 0.96)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
	color: #faf6f1;
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 0.32em;
	cursor: pointer;
	box-shadow: 0 16px 32px rgba(107, 54, 34, 0.28);
	transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.igds-button[aria-busy="true"] {
	opacity: 0.88;
	cursor: wait;
}

.igds-button:hover,
.igds-button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 20px 38px rgba(107, 54, 34, 0.34);
	filter: brightness(1.03);
}

.igds-button:focus-visible {
	outline: 3px solid rgba(243, 240, 234, 0.18);
	outline-offset: 3px;
}

.igds-button-arrow {
	font-size: 1.15rem;
	line-height: 1;
	transform: translateX(0);
	transition: transform 180ms ease;
}

.igds-button:hover .igds-button-arrow,
.igds-button:focus-visible .igds-button-arrow {
	transform: translateX(3px);
}

.igds-form-meta {
	display: grid;
	gap: 0.25rem;
}

.igds-microcopy,
.igds-form-message {
	margin: 0;
	font-size: 0.95rem;
	color: rgba(185, 183, 174, 0.92);
}

.igds-microcopy {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}

.igds-lock {
	display: inline-flex;
	width: 16px;
	height: 16px;
	color: rgba(185, 183, 174, 0.78);
}

.igds-lock svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.igds-form-message {
	min-height: 1.6em;
	opacity: 0.92;
}

.igds-form-message.is-success {
	color: rgba(226, 216, 204, 0.98);
}

.igds-form-message.is-error {
	color: rgba(214, 154, 127, 0.98);
}

.igds-socials {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.9rem;
}

.igds-social-link {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.9rem 1.15rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	background: rgba(16, 18, 20, 0.52);
	color: var(--muted);
	text-decoration: none;
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	box-shadow: var(--shadow-soft);
	transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.igds-social-link:hover,
.igds-social-link:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(193, 132, 101, 0.45);
	background: rgba(20, 22, 24, 0.78);
	color: var(--text);
}

.igds-social-link:focus-visible {
	outline: 2px solid rgba(243, 240, 234, 0.2);
	outline-offset: 3px;
}

.igds-social-link-placeholder {
	cursor: default;
	color: rgba(185, 183, 174, 0.78);
	border-style: dashed;
	background: rgba(16, 18, 20, 0.36);
}

.igds-social-link-placeholder:hover,
.igds-social-link-placeholder:focus-visible {
	transform: none;
	border-color: rgba(255, 255, 255, 0.1);
	background: rgba(16, 18, 20, 0.36);
	color: rgba(185, 183, 174, 0.78);
}

.igds-social-status {
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(193, 132, 101, 0.86);
}

.igds-social-arrow {
	color: var(--accent-light);
	font-size: 1rem;
	line-height: 1;
}

.igds-content-hero {
	display: grid;
	gap: 1rem;
	justify-items: center;
	text-align: center;
	padding: clamp(1.6rem, 4vw, 2.8rem);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 34px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)),
		radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 42%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.igds-content-hero__eyebrow {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: rgba(185, 183, 174, 0.72);
}

.igds-content-hero__title {
	margin: 0;
	max-width: 14ch;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(2.8rem, 5vw, 4.6rem);
	line-height: 0.94;
	letter-spacing: -0.03em;
}

.igds-content-hero__intro {
	margin: 0;
	max-width: 46rem;
	color: var(--muted);
	font-size: clamp(1rem, 1.15vw, 1.12rem);
	line-height: 1.78;
}

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

.igds-contact-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 1.3rem;
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
		rgba(16, 18, 20, 0.58);
	box-shadow: var(--shadow-soft);
}

.igds-contact-panel__intro,
.igds-contact-form {
	padding: 0.45rem;
}

.igds-contact-panel__intro {
	display: grid;
	align-content: start;
	gap: 0.85rem;
}

.igds-contact-panel__intro h2 {
	margin: 0;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(2.15rem, 4vw, 3rem);
	line-height: 0.98;
}

.igds-contact-panel__intro p {
	margin: 0;
	color: var(--muted);
	line-height: 1.8;
}

.igds-contact-form {
	display: grid;
	gap: 0.95rem;
	border-left: 1px solid var(--line);
	padding-left: 1.5rem;
}

.igds-contact-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.95rem;
}

.igds-textarea {
	min-height: 10.5rem;
	resize: vertical;
}

.igds-contact-form__footer {
	display: grid;
	gap: 0.65rem;
}

.igds-contact-form__button {
	width: auto;
	min-width: 15rem;
}

.igds-contact-form__note {
	margin: 0;
	color: rgba(185, 183, 174, 0.82);
	font-size: 0.92rem;
	line-height: 1.7;
}

.igds-content-card {
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	background: rgba(16, 18, 20, 0.52);
	box-shadow: var(--shadow-soft);
}

.igds-content-card h2 {
	margin: 0 0 0.85rem;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 2rem;
	line-height: 1;
}

.igds-content-card p {
	margin: 0;
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.78;
}

.igds-content-card--shop {
	display: grid;
	gap: 0.9rem;
	align-content: start;
}

.igds-content-card__footer {
	padding-top: 0.35rem;
}

.igds-content-card__link,
.igds-content-card__status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.05rem;
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
}

.igds-content-card__link {
	background: linear-gradient(135deg, rgba(200, 140, 110, 0.98), rgba(165, 102, 73, 0.96));
	color: #faf6f1;
	box-shadow: 0 12px 24px rgba(107, 54, 34, 0.24);
}

.igds-content-card__status {
	border: 1px dashed rgba(255, 255, 255, 0.14);
	color: rgba(185, 183, 174, 0.82);
	background: rgba(16, 18, 20, 0.36);
}

.igds-content-card__kicker {
	margin: 0 0 0.8rem !important;
	font-size: 0.74rem !important;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(193, 132, 101, 0.82) !important;
}

.igds-content-cta {
	display: flex;
	justify-content: center;
}

.igds-content-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 1.3rem;
	border-radius: 999px;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	background: linear-gradient(135deg, rgba(200, 140, 110, 0.98), rgba(165, 102, 73, 0.96));
	color: #faf6f1;
	box-shadow: 0 16px 32px rgba(107, 54, 34, 0.28);
}

.igds-content-cta__button.is-placeholder {
	background: rgba(16, 18, 20, 0.46);
	color: rgba(185, 183, 174, 0.8);
	box-shadow: none;
	border: 1px dashed rgba(255, 255, 255, 0.12);
}

.igds-prose {
	max-width: 52rem;
	margin: 0 auto;
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	background: rgba(16, 18, 20, 0.42);
}

.igds-prose p,
.igds-prose li {
	color: var(--muted);
	line-height: 1.8;
}

.igds-prose h2,
.igds-prose h3 {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 2rem;
	line-height: 1.1;
}

.igds-site-footer {
	padding: 0 1.5rem 2rem;
}

.igds-site-footer__inner {
	width: min(1240px, calc(100vw - 2.5rem));
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
	gap: 1.25rem;
	padding: 1.4rem 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	background: rgba(11, 13, 15, 0.74);
}

.igds-site-footer__title,
.igds-site-footer__label {
	margin: 0 0 0.55rem;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(193, 132, 101, 0.82);
}

.igds-site-footer__copy {
	margin: 0;
	color: var(--muted);
	line-height: 1.7;
}

.igds-site-footer__links,
.igds-site-footer__socials {
	display: grid;
	gap: 0.45rem;
}

.igds-site-footer__menu {
	display: grid;
	gap: 0.45rem;
}

.igds-site-footer__links a,
.igds-site-footer__socials a {
	color: rgba(185, 183, 174, 0.88);
	text-decoration: none;
}

.igds-site-footer__links a:hover,
.igds-site-footer__socials a:hover,
.igds-site-footer__links a:focus-visible,
.igds-site-footer__socials a:focus-visible {
	color: var(--text);
}

.igds-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.igds-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 640ms ease, transform 640ms ease;
	transition-delay: var(--igds-delay, 0ms);
}

.igds-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1180px) {
	.igds-shell {
		max-width: 1160px;
		gap: 2.9rem;
	}

	.igds-wordmark {
		font-size: clamp(4rem, 10.2vw, 8rem);
	}

	.igds-badge {
		width: clamp(96px, 13vw, 146px);
		height: clamp(96px, 13vw, 146px);
	}

	.igds-headline {
		max-width: 900px;
		font-size: clamp(2.8rem, 4.7vw, 4.65rem);
	}

	.igds-intro {
		max-width: 64rem;
		font-size: clamp(0.98rem, 1.2vw, 1.08rem);
		letter-spacing: 0.025em;
	}
}

@media (min-width: 1220px) {
	.igds-break {
		display: block;
	}
}

@media (max-width: 1024px) {
	.igds-site-header__inner {
		grid-template-columns: 1fr;
		justify-items: center;
		border-radius: 28px;
	}

	.igds-site-nav {
		justify-content: center;
	}

	.igds-shell {
		max-width: 980px;
		gap: 2.55rem;
	}

	.igds-hero-stage {
		padding-inline: 1.2rem;
	}

	.igds-subbrand {
		gap: 1rem;
		font-size: 0.9rem;
		letter-spacing: 0.52em;
	}

	.igds-subbrand-text {
		padding-left: 0.52em;
	}

	.igds-headline {
		max-width: 900px;
		font-size: clamp(2.65rem, 4.6vw, 4rem);
		line-height: 0.94;
	}

	.igds-intro {
		max-width: 54rem;
		font-size: 1rem;
		line-height: 1.66;
		letter-spacing: 0.02em;
	}

	.igds-signup-panel {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.igds-contact-panel,
	.igds-content-grid,
	.igds-site-footer__inner {
		grid-template-columns: 1fr;
	}

	.igds-panel-form {
		padding-left: 0;
		padding-top: 1.5rem;
		border-left: 0;
		border-top: 1px solid var(--line);
	}

	.igds-contact-form {
		border-left: 0;
		border-top: 1px solid var(--line);
		padding-left: 0.45rem;
		padding-top: 1.5rem;
	}
}

@media (max-width: 900px) {
	.igds-shell {
		gap: 2.7rem;
	}

	.igds-wordmark-wrap {
		flex-direction: column;
		align-items: center;
		gap: 0.45rem;
	}

	.igds-badge {
		transform: rotate(-4deg);
	}

	.igds-subbrand {
		gap: 0.8rem;
		font-size: 0.86rem;
		letter-spacing: 0.48em;
	}

	.igds-subbrand-text {
		padding-left: 0.48em;
	}

	.igds-headline {
		max-width: 100%;
		font-size: clamp(2.6rem, 8vw, 3.85rem);
	}

	.igds-intro {
		max-width: 100%;
		font-size: 0.98rem;
		line-height: 1.72;
		letter-spacing: 0.02em;
	}

	.igds-kicker {
		font-size: 0.74rem;
		letter-spacing: 0.28em;
	}
}

@media (max-width: 640px) {
	:root {
		--site-width: min(100vw - 1.4rem, 100%);
	}

	.igds-page {
		padding: 1rem 0.7rem 2rem;
	}

	.igds-site-header {
		padding-inline: 0.7rem;
	}

	.igds-site-header__inner,
	.igds-site-footer__inner {
		width: min(100vw - 1.4rem, 100%);
	}

	.igds-shell {
		gap: 2.2rem;
		padding: 2rem 0 1rem;
	}

	.igds-hero-stage {
		padding: 1rem 0.75rem 1.55rem;
		border-radius: 28px;
	}

	.igds-headline {
		max-width: 100%;
		font-size: clamp(2.65rem, 12vw, 4.3rem);
		line-height: 0.96;
	}

	.igds-intro {
		max-width: 100%;
		font-size: 0.97rem;
		line-height: 1.68;
		letter-spacing: 0.015em;
	}

	.igds-signup-panel {
		padding: 1.35rem;
		border-radius: 24px;
	}

	.igds-contact-panel {
		padding: 1.2rem;
		border-radius: 24px;
	}

	.igds-panel-copy {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 1rem;
		text-align: center;
	}

	.igds-panel-body {
		padding-left: 0;
		border-left: 0;
		padding-top: 0.35rem;
	}

	.igds-panel-text {
		max-width: 100%;
	}

	.igds-button {
		letter-spacing: 0.26em;
	}

	.igds-socials {
		gap: 0.7rem;
	}

	.igds-social-link {
		width: 100%;
		justify-content: center;
		letter-spacing: 0.14em;
	}

	.igds-contact-form__grid {
		grid-template-columns: 1fr;
	}

	.igds-contact-form__button {
		width: 100%;
		min-width: 0;
	}

	.igds-content-card,
	.igds-prose,
	.igds-contact-panel,
	.igds-site-footer__inner {
		padding: 1.2rem;
	}
}

@media (max-height: 860px) and (min-width: 901px) {
	.igds-page {
		padding: 1.35rem 1.5rem 1.5rem;
	}

	.igds-shell {
		gap: 1.9rem;
		padding: 1rem 0 0.85rem;
	}

	.igds-wordmark {
		font-size: clamp(3.9rem, 8vw, 7.1rem);
	}

	.igds-badge {
		width: clamp(92px, 11vw, 132px);
		height: clamp(92px, 11vw, 132px);
	}

	.igds-subbrand {
		margin-top: 0.75rem;
		font-size: 0.84rem;
		letter-spacing: 0.46em;
	}

	.igds-subbrand-text {
		padding-left: 0.46em;
	}

	.igds-headline {
		max-width: 940px;
		font-size: clamp(2.5rem, 4.7vw, 4.1rem);
		line-height: 0.94;
	}

	.igds-intro {
		max-width: 58rem;
		font-size: 0.96rem;
		line-height: 1.58;
		letter-spacing: 0.018em;
	}

	.igds-signup-panel {
		padding: 1.3rem 1.55rem;
		gap: 1.4rem;
	}

	.igds-panel-copy {
		gap: 1.25rem;
	}

	.igds-panel-body {
		padding-left: 1.25rem;
	}

	.igds-panel-form {
		padding-left: 1.7rem;
	}

	.igds-panel-heading {
		margin-bottom: 0.55rem;
		font-size: 1.08rem;
	}

	.igds-panel-text {
		font-size: 1rem;
		line-height: 1.58;
	}

	.igds-input,
	.igds-button {
		min-height: 3.3rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.igds-reveal {
		opacity: 1;
		transform: none;
	}
}
