/* styles/index.css */
/* ----------------------------------------------
   INDEX.HOME PAGE SPECIFIC STYLES
   Hero, about section, feature grid, callout, footer
---------------------------------------------- */

.site-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 28px 0;
}

.brand-lockup {
	display: flex;
	align-items: center;
	gap: 16px;
}

.brand-mark,
.crest-ring {
	border: 1px solid rgba(243, 222, 155, 0.55);
	background: linear-gradient(135deg, rgba(243, 222, 155, 0.16), rgba(216, 170, 63, 0.04));
	box-shadow: inset 0 0 20px rgba(243, 222, 155, 0.08);
}

.brand-mark {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	display: grid;
	place-items: center;
}

.logo-img,
.crest-logo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

/* Hero section */
.hero {
	min-height: calc(100vh - 114px);
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 48px;
	align-items: center;
	padding: 48px 0 72px;
}

.hero-copy h2 {
	margin-top: 12px;
	line-height: 0.95;
	max-width: 10ch;
}

.hero-text {
	max-width: 58ch;
	margin: 20px 0 0;
	color: var(--muted);
	line-height: 1.75;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.hero-panel {
	display: flex;
	justify-content: flex-end;
}

.crest-card {
	width: min(100%, 400px);
	padding: 32px;
	border-radius: 28px;
	border: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
	box-shadow: var(--shadow);
	text-align: center;
}

.crest-label {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.74rem;
	color: var(--gold-soft);
}

.crest-ring {
	width: 220px;
	height: 220px;
	margin: 28px auto 20px;
	border-radius: 50%;
	display: grid;
	place-items: center;
}

.crest-copy {
	color: var(--muted);
}

/* Content sections */
.content-section {
	padding: 72px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-heading h3 {
	margin-top: 10px;
	max-width: 14ch;
}

.two-column {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	margin-top: 28px;
}

.two-column p {
	color: var(--muted);
	line-height: 1.75;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 32px;
}

.feature-card {
	padding: 28px;
	border-radius: 22px;
	border: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.feature-number {
	display: inline-block;
	margin-bottom: 20px;
	color: var(--gold);
	font-family: "Cormorant Garamond", serif;
	font-size: 2rem;
}

.feature-card h4 {
	font-size: 1.75rem;
	margin-bottom: 12px;
}

.callout {
	text-align: center;
	padding: 36px;
	border-radius: 28px;
}

.callout h3 {
	margin: 12px auto 0;
	max-width: 13ch;
}

.callout p {
	max-width: 60ch;
	margin: 18px auto 28px;
}

.site-footer {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding: 28px 0 48px;
}

.footer-details {
	text-align: right;
}

.footer-details p,
.footer-details a {
	color: var(--muted);
	line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {

	.site-header,
	.hero,
	.site-footer {
		flex-direction: column;
		align-items: flex-start;
		grid-template-columns: 1fr;
	}

	.hero {
		min-height: auto;
		padding-top: 24px;
	}

	.hero-panel {
		width: 100%;
		justify-content: flex-start;
	}

	.two-column,
	.feature-grid {
		grid-template-columns: 1fr;
	}

	.footer-details {
		text-align: left;
	}
}

@media (max-width: 640px) {
	.crest-ring {
		width: 180px;
		height: 180px;
	}
}