/*
Theme Name: Jade Ridge Outdoor Lighting
Theme URI: https://jaderidgelighting.com/
Author: Jade Ridge Outdoor Lighting, LLC
Description: A custom lead-generation theme for Jade Ridge Outdoor Lighting.
Version: 0.6.1
Requires at least: 6.6
Requires PHP: 8.1
Text Domain: jade-ridge-lighting
*/

:root {
	--jade: #2a4a39;
	--jade-dark: #173126;
	--jade-light: #dce9df;
	--charcoal: #202522;
	--charcoal-soft: #393b39;
	--ivory: #fbf8f0;
	--paper: #ffffff;
	--amber: #d99b45;
	--amber-light: #f5d89b;
	--line: rgba(42, 74, 57, 0.18);
	--shadow: 0 22px 70px rgba(20, 35, 28, 0.14);
	--radius: 1.25rem;
	--container: min(1160px, calc(100% - 2rem));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 7rem;
}

body {
	margin: 0;
	background: var(--ivory);
	color: var(--charcoal);
	font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 1rem;
	line-height: 1.65;
}

body.menu-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--jade);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--jade-dark);
}

button,
input,
select,
textarea {
	font: inherit;
}

:focus-visible {
	outline: 3px solid var(--amber);
	outline-offset: 4px;
}

.skip-link {
	position: fixed;
	z-index: 1000;
	top: 0.75rem;
	left: 0.75rem;
	padding: 0.8rem 1rem;
	transform: translateY(-150%);
	border-radius: 0.5rem;
	background: var(--paper);
	color: var(--charcoal);
	font-weight: 700;
}

.skip-link:focus {
	transform: translateY(0);
}

.container {
	width: var(--container);
	margin-inline: auto;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	margin: 0 0 1rem;
	color: var(--jade);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	line-height: 1.3;
	text-transform: uppercase;
}
h1,
h2,
h3 {
	margin-top: 0;
	color: var(--charcoal);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

h1 {
	font-size: clamp(3rem, 7vw, 6.7rem);
}

h2 {
	font-size: clamp(2.3rem, 5vw, 4.25rem);
}

h3 {
	font-size: clamp(1.45rem, 2.5vw, 2rem);
}

p {
	margin-top: 0;
}

.section {
	padding-block: clamp(4.75rem, 9vw, 8rem);
}

.section-heading {
	max-width: 760px;
	margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.section-heading p:last-child {
	max-width: 650px;
	margin-bottom: 0;
	font-size: 1.08rem;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
}

.button {
	display: inline-flex;
	min-height: 3.25rem;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.25rem;
	border: 2px solid transparent;
	border-radius: 999px;
	background: var(--jade);
	color: var(--paper);
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
	background: var(--jade-dark);
	color: var(--paper);
}

.button--amber {
	background: var(--amber);
	color: #172019;
}

.button--amber:hover {
	background: var(--amber-light);
	color: #172019;
}

.button--ghost {
	border-color: rgba(255, 255, 255, 0.5);
	background: transparent;
	color: var(--paper);
}

.button--ghost:hover {
	background: var(--paper);
	color: var(--jade-dark);
}

.announcement {
	padding: 0.55rem 1rem;
	background: var(--jade-dark);
	color: var(--paper);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.035em;
	text-align: center;
}

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	border-bottom: 1px solid var(--line);
	background: rgba(251, 248, 240, 0.96);
	backdrop-filter: blur(16px);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: flex;
	min-height: 5.75rem;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.brand img {
	width: clamp(150px, 18vw, 220px);
	max-height: 68px;
}

.nav-toggle {
	display: none;
	width: 3rem;
	height: 3rem;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: transparent;
	color: var(--charcoal);
	cursor: pointer;
}

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
	display: block;
	width: 1.2rem;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform 180ms ease;
}

.nav-toggle__lines {
	position: relative;
}

.nav-toggle__lines::before {
	position: absolute;
	top: -0.38rem;
}

.nav-toggle__lines::after {
	position: absolute;
	top: 0.38rem;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2vw, 1.75rem);
}

.primary-nav a {
	color: var(--charcoal);
	font-size: 0.93rem;
	font-weight: 750;
	text-decoration: none;
}

.primary-nav a:hover {
	color: var(--jade);
}

.primary-nav .button {
	color: var(--paper);
}

.hero {
	position: relative;
	display: grid;
	min-height: min(760px, calc(100vh - 7rem));
	align-items: center;
	overflow: hidden;
	background-color: #0f211a;
	background-image:
		linear-gradient(90deg, rgba(8, 22, 17, 0.95) 0%, rgba(8, 22, 17, 0.76) 40%, rgba(8, 22, 17, 0.13) 75%),
		url("assets/images/holiday-hero.jpg");
	background-position: center;
	background-size: cover;
	color: var(--paper);
}

.hero::after {
	position: absolute;
	inset: auto 0 0;
	height: 10rem;
	background: linear-gradient(transparent, rgba(5, 16, 12, 0.46));
	content: "";
	pointer-events: none;
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: 720px;
	padding-block: clamp(5rem, 11vw, 9rem);
}

.hero .eyebrow,
.hero h1 {
	color: var(--paper);
}

.hero h1 {
	max-width: 700px;
	margin-bottom: 1.4rem;
}

.hero__lead {
	max-width: 650px;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	margin: 2rem 0 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9rem;
	font-weight: 650;
	list-style: none;
}

.hero__meta li::before {
	margin-right: 0.55rem;
	color: var(--amber-light);
	content: "✦";
}

.hero__note {
	position: absolute;
	z-index: 2;
	right: 1rem;
	bottom: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.68rem;
	letter-spacing: 0.04em;
}

.trust-bar {
	position: relative;
	z-index: 2;
	margin-top: -2rem;
}

.trust-bar__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: var(--shadow);
}

.trust-item {
	padding: 1.55rem;
	text-align: center;
}

.trust-item + .trust-item {
	border-left: 1px solid var(--line);
}

.trust-item strong,
.trust-item span {
	display: block;
}

.trust-item strong {
	color: var(--jade-dark);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.25rem;
	font-weight: 500;
}

.trust-item span {
	margin-top: 0.25rem;
	color: #667069;
	font-size: 0.86rem;
}

.holiday {
	padding-top: clamp(6.5rem, 10vw, 10rem);
}

.holiday__grid,
.about__grid,
.quote__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2.5rem, 7vw, 7rem);
	align-items: center;
}

.feature-panel {
	position: relative;
	padding: clamp(2rem, 5vw, 4rem);
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--jade-dark);
	box-shadow: var(--shadow);
	color: rgba(255, 255, 255, 0.84);
}

.feature-panel::before {
	position: absolute;
	top: -5rem;
	right: -4rem;
	width: 15rem;
	height: 15rem;
	border: 1px solid rgba(245, 216, 155, 0.32);
	border-radius: 50%;
	box-shadow: 0 0 0 3rem rgba(245, 216, 155, 0.035), 0 0 0 6rem rgba(245, 216, 155, 0.025);
	content: "";
}

.feature-panel h2,
.feature-panel h3,
.feature-panel .eyebrow {
	position: relative;
	color: var(--paper);
}

.feature-list {
	position: relative;
	display: grid;
	gap: 1rem;
	margin: 1.75rem 0 0;
	padding: 0;
	list-style: none;
}

.feature-list li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.8rem;
	align-items: start;
}

.feature-list li::before {
	display: grid;
	width: 1.6rem;
	height: 1.6rem;
	place-items: center;
	border-radius: 50%;
	background: var(--amber);
	color: var(--jade-dark);
	content: "✓";
	font-size: 0.8rem;
	font-weight: 900;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.15rem;
}

.service-card {
	position: relative;
	display: flex;
	min-height: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}

.service-card__media {
	position: relative;
	aspect-ratio: 3 / 2;
	margin: 0;
	overflow: hidden;
	background: var(--jade-light);
}

.service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card__media figcaption {
	position: absolute;
	right: 0.65rem;
	bottom: 0.55rem;
	padding: 0.25rem 0.45rem;
	border-radius: 999px;
	background: rgba(12, 25, 19, 0.76);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.62rem;
	letter-spacing: 0.04em;
}

.service-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(1.4rem, 3vw, 2rem);
}

.service-card h3 {
	margin: 0 0 0.75rem;
}

.service-card p {
	margin-bottom: 1.2rem;
	color: #616a64;
}

.service-card a {
	margin-top: auto;
	font-weight: 800;
}

.service-card--soon {
	background: var(--jade-light);
}

.badge {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	z-index: 1;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: var(--jade);
	color: var(--paper);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.process {
	background: var(--paper);
}

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.step {
	position: relative;
	padding-top: 4rem;
}

.step::before {
	position: absolute;
	top: 1.3rem;
	left: 2.5rem;
	width: calc(100% - 2rem);
	height: 1px;
	background: var(--line);
	content: "";
}

.step:last-child::before {
	display: none;
}

.step__number {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	display: grid;
	width: 2.7rem;
	height: 2.7rem;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: var(--ivory);
	color: var(--jade);
	font-weight: 850;
}

.step strong {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--jade-dark);
}

.step p {
	color: #69716c;
	font-size: 0.92rem;
}

.service-area {
	overflow: hidden;
	padding-block: clamp(3.5rem, 6vw, 5rem);
	background: var(--jade);
	color: rgba(255, 255, 255, 0.84);
}

.service-area__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: center;
}

.service-area__layout h2 {
	margin-bottom: 0;
}

.service-area__summary {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.05rem;
}

.service-area h2,
.service-area .eyebrow {
	color: var(--paper);
}

.area-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.area-list li {
	padding: 0.7rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--paper);
	font-weight: 700;
}

.about__story {
	font-size: 1.12rem;
}

.about__profile {
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: var(--shadow);
}

.about__portrait {
	aspect-ratio: 4 / 3;
	margin: 0;
	overflow: hidden;
	background: var(--jade-light);
}

.about__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 29%;
}

.about__details {
	padding: clamp(1.5rem, 4vw, 2rem);
	border-top: 3px solid var(--amber);
	background: var(--paper);
}

.about__details strong {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--jade);
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.about__details p:last-child {
	margin-bottom: 0;
}

.faq-list {
	display: grid;
	max-width: 860px;
	gap: 0.75rem;
}

.faq-list details {
	border: 1px solid var(--line);
	border-radius: 0.9rem;
	background: var(--paper);
}

.faq-list summary {
	padding: 1.1rem 3rem 1.1rem 1.25rem;
	color: var(--jade-dark);
	font-weight: 800;
	cursor: pointer;
}

.faq-list details p {
	padding: 0 1.25rem 1.25rem;
	margin: 0;
	color: #626b65;
}

#process,
#faq {
	padding-block: clamp(3.75rem, 7vw, 5.75rem);
}

#process .section-heading,
#faq .section-heading {
	margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.quote {
	background: var(--charcoal);
	color: rgba(255, 255, 255, 0.82);
}

.quote h2,
.quote h3,
.quote .eyebrow {
	color: var(--paper);
}

.quote__contact {
	display: grid;
	gap: 1rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.quote__contact a {
	color: var(--amber-light);
	font-size: 1.08rem;
	font-weight: 800;
}

.quote__promises {
	display: grid;
	gap: 0.55rem;
	margin: 1.5rem 0 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.92rem;
	font-weight: 700;
	list-style: none;
}

.quote__promises li::before {
	margin-right: 0.6rem;
	color: var(--amber-light);
	content: "✓";
}

.quote-form {
	padding: clamp(1.4rem, 4vw, 2.5rem);
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: var(--shadow);
	color: var(--charcoal);
}

.quote-form--embed {
	min-height: 32rem;
}

.quote-form__privacy {
	margin-bottom: 1.25rem;
	color: #5e6861;
	font-size: 0.86rem;
}

.quote-form--embed noscript {
	display: block;
	padding: 1rem;
	border: 1px solid var(--line);
	border-radius: 0.7rem;
	background: var(--ivory);
}

.quote-form--embed noscript p {
	margin: 0;
}

.quote-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.field--full {
	grid-column: 1 / -1;
}

.field label,
.field legend {
	display: block;
	margin-bottom: 0.4rem;
	color: var(--charcoal);
	font-size: 0.87rem;
	font-weight: 800;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	border: 1px solid #bdc7c0;
	border-radius: 0.55rem;
	background: #fff;
	color: var(--charcoal);
}

.field input,
.field select {
	min-height: 3.1rem;
	padding: 0.7rem 0.8rem;
}

.field textarea {
	min-height: 9rem;
	padding: 0.8rem;
	resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--jade);
	outline: 3px solid rgba(42, 74, 57, 0.18);
}

.field__hint {
	display: block;
	margin-top: 0.35rem;
	color: #6d756f;
	font-size: 0.78rem;
}

.checkbox-field {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.7rem;
	align-items: start;
}

.checkbox-field input {
	width: 1.2rem;
	height: 1.2rem;
	margin-top: 0.22rem;
	accent-color: var(--jade);
}

.checkbox-field label {
	font-size: 0.83rem;
	line-height: 1.5;
}

.form-status {
	margin-bottom: 1.25rem;
	padding: 0.9rem 1rem;
	border-radius: 0.55rem;
	font-weight: 750;
}

.form-status--success {
	border: 1px solid #8bb898;
	background: #edf7ef;
	color: #174526;
}

.form-status--error {
	border: 1px solid #d49a93;
	background: #fff0ee;
	color: #7d2419;
}

.form-honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	white-space: nowrap !important;
}

.site-footer {
	padding-block: 4rem 2rem;
	background: #141a17;
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 1fr;
	gap: 3rem;
}

.site-footer img {
	width: 210px;
	margin-bottom: 1.5rem;
	padding: 0.75rem;
	border-radius: 0.6rem;
	background: var(--ivory);
}

.site-footer h2 {
	color: var(--paper);
	font-family: inherit;
	font-size: 0.82rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer li + li {
	margin-top: 0.55rem;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.86);
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	font-size: 0.8rem;
}

.quote .quote-form h3 {
	margin-top: 0;
	color: var(--charcoal);
}

.service-page .section {
	padding-block: clamp(4rem, 7vw, 6.25rem);
}

.service-hero {
	position: relative;
	display: grid;
	min-height: clamp(600px, 72vh, 720px);
	align-items: center;
	overflow: hidden;
	background-color: #0f211a;
	background-image:
		linear-gradient(90deg, rgba(8, 22, 17, 0.96) 0%, rgba(8, 22, 17, 0.78) 46%, rgba(8, 22, 17, 0.18) 78%),
		url("assets/images/holiday-hero.jpg");
	background-position: center;
	background-size: cover;
	color: var(--paper);
}

.service-hero::after {
	position: absolute;
	inset: auto 0 0;
	height: 9rem;
	background: linear-gradient(transparent, rgba(5, 16, 12, 0.48));
	content: "";
	pointer-events: none;
}

.service-hero__content {
	position: relative;
	z-index: 1;
	max-width: 780px;
	padding-block: clamp(4.5rem, 9vw, 7rem);
}

.service-hero .eyebrow,
.service-hero h1 {
	color: var(--paper);
}

.service-hero h1 {
	max-width: 760px;
	margin-bottom: 1.35rem;
	font-size: clamp(3rem, 6.5vw, 6rem);
}

.service-hero__lead {
	max-width: 700px;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.service-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	margin: 1.75rem 0 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.9rem;
	font-weight: 700;
	list-style: none;
}

.service-hero__meta li::before {
	margin-right: 0.5rem;
	color: var(--amber-light);
	content: "✓";
}

.service-page__trust {
	margin-top: -2rem;
}

.service-page__included {
	padding-top: clamp(6.5rem, 9vw, 8rem) !important;
}

.service-page__audience {
	background: #f1eee5;
}

.service-page__audience-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.service-page__audience-card {
	padding: clamp(1.75rem, 4vw, 3rem);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: 0 16px 45px rgba(20, 35, 28, 0.08);
}

.service-page__card-label {
	display: block;
	margin-bottom: 0.75rem;
	color: var(--jade);
	font-size: 0.75rem;
	font-weight: 850;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.service-page__audience-card h3 {
	margin-bottom: 0.85rem;
}

.service-page__audience-card p {
	margin-bottom: 0;
	color: #616a64;
}

.service-page__process .steps {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-page__faq {
	background: var(--ivory);
}

.service-page__cta {
	background: var(--charcoal);
	color: rgba(255, 255, 255, 0.84);
}

.service-page__cta-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: center;
}

.service-page__cta h2,
.service-page__cta .eyebrow {
	color: var(--paper);
}

.service-page__cta h2 {
	margin-bottom: 1rem;
}

.service-page__cta p:last-child {
	max-width: 720px;
	margin-bottom: 0;
}

.service-page__cta-actions {
	display: grid;
	gap: 0.8rem;
	align-items: center;
}

.service-page__cta-actions .button {
	margin-bottom: 0.25rem;
}

.service-page__cta-actions > a:not(.button) {
	color: var(--amber-light);
	font-weight: 800;
	text-align: center;
}

.content-page {
	min-height: 55vh;
	padding-block: clamp(4rem, 8vw, 7rem);
}

.content-page__inner {
	max-width: 820px;
}

.content-page h1 {
	font-size: clamp(2.6rem, 6vw, 5rem);
}

.content-page__content {
	font-size: 1.06rem;
}

.content-page__content h2 {
	margin-top: 2.5rem;
	font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
	white-space: nowrap;
}

@media (max-width: 900px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.primary-nav {
		position: absolute;
		inset: 100% 0 auto;
		display: none;
		max-height: calc(100vh - 5.75rem);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		overflow-y: auto;
		padding: 1rem;
		border-top: 1px solid var(--line);
		background: var(--ivory);
		box-shadow: 0 20px 40px rgba(20, 35, 28, 0.16);
	}

	.primary-nav.is-open {
		display: flex;
	}

	.primary-nav a {
		padding: 0.9rem;
	}

	.primary-nav .button {
		margin-top: 0.5rem;
	}

	.hero {
		background-image:
			linear-gradient(90deg, rgba(8, 22, 17, 0.93) 0%, rgba(8, 22, 17, 0.68) 72%, rgba(8, 22, 17, 0.35) 100%),
			url("assets/images/holiday-hero.jpg");
		background-position: 62% center;
	}

	.service-hero {
		background-image:
			linear-gradient(90deg, rgba(8, 22, 17, 0.95) 0%, rgba(8, 22, 17, 0.72) 72%, rgba(8, 22, 17, 0.38) 100%),
			url("assets/images/holiday-hero.jpg");
		background-position: 62% center;
	}

	.holiday__grid,
	.about__grid,
	.quote__grid {
		grid-template-columns: 1fr;
	}

	.service-area__layout {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.service-grid {
		grid-template-columns: 1fr 1fr;
	}

	.steps {
		grid-template-columns: 1fr 1fr;
		gap: 2rem 1.5rem;
	}

	.service-page__process .steps {
		grid-template-columns: 1fr 1fr;
	}

	.step::before {
		display: none;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.service-page__cta-inner {
		grid-template-columns: 1fr;
	}

	.service-page__cta-actions {
		max-width: 340px;
	}
}

@media (max-width: 620px) {
	:root {
		--container: min(100% - 1.25rem, 1160px);
	}

	.announcement {
		padding: 0.4rem 0.65rem;
		font-size: 0.68rem;
		line-height: 1.35;
	}

	.site-header__inner {
		min-height: 4.35rem;
		gap: 0.75rem;
	}

	.brand img {
		width: 132px;
	}

	.nav-toggle {
		width: 2.7rem;
		height: 2.7rem;
	}

	.primary-nav {
		max-height: calc(100vh - 4.35rem);
	}

	.hero {
		min-height: clamp(560px, calc(100svh - 5rem), 650px);
		background-position: 69% center;
	}

	.hero__content {
		align-self: center;
		padding-block: 3rem 4.25rem;
	}

	.hero h1 {
		margin-bottom: 0.9rem;
		font-size: clamp(2.65rem, 12vw, 3.75rem);
	}

	.hero__lead {
		margin-bottom: 1.25rem;
		font-size: 1.02rem;
		line-height: 1.5;
	}

	.button-row .button {
		width: 100%;
		min-height: 3rem;
	}

	.hero__meta {
		display: grid;
		gap: 0.45rem;
		margin-top: 1.25rem;
		font-size: 0.78rem;
	}

	.service-hero {
		min-height: 610px;
		background-position: 69% center;
	}

	.service-hero__content {
		padding-block: 3.25rem 4.5rem;
	}

	.service-hero h1 {
		margin-bottom: 0.9rem;
		font-size: clamp(2.6rem, 11.5vw, 3.7rem);
	}

	.service-hero__lead {
		margin-bottom: 1.25rem;
		font-size: 1rem;
		line-height: 1.5;
	}

	.service-hero__meta {
		display: grid;
		gap: 0.4rem;
		margin-top: 1.2rem;
		font-size: 0.77rem;
	}

	.trust-bar {
		margin-top: 0;
		background: var(--paper);
	}

	.trust-bar .container {
		width: 100%;
	}

	.trust-bar__inner {
		grid-template-columns: repeat(3, 1fr);
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.trust-item + .trust-item {
		border-left: 1px solid var(--line);
	}

	.trust-item {
		padding: 0.85rem 0.4rem;
	}

	.trust-item strong {
		font-size: 0.92rem;
	}

	.trust-item span {
		font-size: 0.68rem;
		line-height: 1.35;
	}

	.service-grid,
	.steps,
	.service-page__audience-grid,
	.service-page__process .steps,
	.quote-form__grid,
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: 0;
	}

	.site-footer__bottom {
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* Homepage and Gemstone experience — v0.4 */

.eyebrow--light {
	color: var(--amber-light);
}

.button--paper {
	border-color: var(--paper);
	background: var(--paper);
	color: var(--jade-dark);
}

.button--paper:hover {
	border-color: var(--amber-light);
	background: var(--amber-light);
	color: var(--jade-dark);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-weight: 800;
	text-decoration: none;
}

.text-link span {
	transition: transform 180ms ease;
}

.text-link:hover span {
	transform: translateX(0.25rem);
}

.text-link--light {
	color: var(--paper);
}

.text-link--light:hover {
	color: var(--amber-light);
}

.home-hero,
.gemstone-hero {
	position: relative;
	display: grid;
	min-height: clamp(42rem, 78vh, 52rem);
	overflow: hidden;
	background: #07130f;
	color: var(--paper);
}

.home-hero__image,
.gemstone-hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 48%;
}

.home-hero__shade,
.gemstone-hero__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(4, 18, 13, 0.97) 0%, rgba(4, 18, 13, 0.86) 34%, rgba(4, 18, 13, 0.27) 72%, rgba(4, 18, 13, 0.12) 100%),
		linear-gradient(0deg, rgba(4, 18, 13, 0.58) 0%, transparent 50%);
}

.home-hero__content,
.gemstone-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 78rem;
	padding-block: clamp(5.5rem, 10vw, 8.5rem);
}

.home-hero__content > *,
.gemstone-hero__content > * {
	max-width: 45rem;
}

.home-hero h1,
.gemstone-hero h1 {
	margin-bottom: 1.5rem;
	color: var(--paper);
	font-size: clamp(3rem, 6.2vw, 5.9rem);
	line-height: 0.98;
}

.home-hero__lead,
.gemstone-hero__content > p:not(.eyebrow) {
	margin: 0 0 1.9rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.05rem, 1.8vw, 1.3rem);
	line-height: 1.55;
}

.home-hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 1.4rem;
	margin: 2.2rem 0 0;
	padding: 0;
	list-style: none;
	font-size: 0.92rem;
	font-weight: 700;
}

.home-hero__proof li::before {
	margin-right: 0.5rem;
	color: var(--amber-light);
	content: "✦";
}

.home-hero__caption {
	position: absolute;
	z-index: 1;
	right: 1.5rem;
	bottom: 1.2rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
}

.service-jump {
	position: relative;
	z-index: 3;
	margin-top: -2.2rem;
}

.service-jump__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 1rem;
	background: var(--paper);
	box-shadow: var(--shadow);
}

.service-jump a {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.15rem 0.9rem;
	padding: 1.5rem;
	color: var(--charcoal);
	text-decoration: none;
	transition: background 180ms ease, color 180ms ease;
}

.service-jump a + a {
	border-left: 1px solid var(--line);
}

.service-jump a:hover {
	background: var(--jade-dark);
	color: var(--paper);
}

.service-jump span {
	grid-row: 1 / span 2;
	color: var(--amber);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.service-jump strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.25rem;
	font-weight: 500;
}

.service-jump small {
	color: var(--charcoal-soft);
	font-size: 0.82rem;
}

.service-jump a:hover small {
	color: rgba(255, 255, 255, 0.75);
}

.dealer-verification {
	padding: 4.5rem 0 0;
}

.dealer-verification--service {
	padding-bottom: 1rem;
}

.dealer-verification__inner {
	display: grid;
	grid-template-columns: minmax(15rem, 22.625rem) minmax(18rem, 1fr);
	gap: clamp(2rem, 6vw, 5rem);
	align-items: center;
	padding: 1.25rem 1.5rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: 0 14px 40px rgba(18, 42, 30, 0.08);
}

#GemstoneDealerBadge {
	min-height: 5rem;
}

#GemstoneDealerBadge a {
	display: inline-block;
}

#GemstoneDealerBadge img {
	display: block;
	width: min(100%, 22.625rem);
	height: auto;
}

.dealer-verification__inner p {
	max-width: 42rem;
	margin: 0;
}

.dealer-verification__inner .eyebrow {
	margin-bottom: 0.45rem;
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(16rem, 0.55fr);
	gap: 4rem;
	align-items: end;
	max-width: none;
}

.section-heading--split > p {
	margin-bottom: 0.45rem;
	color: var(--charcoal-soft);
}

.projects {
	padding-top: 8.5rem;
}

.project-showcase {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(19rem, 0.5fr);
	gap: 1rem;
	margin-top: 3rem;
}

.project-showcase figure,
.gemstone-gallery figure {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 1.15rem;
	background: var(--jade-dark);
}

.project-showcase img,
.gemstone-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
}

.project-showcase figure:hover img,
.gemstone-gallery figure:hover img {
	transform: scale(1.025);
}

.project-showcase__feature {
	display: block;
	min-height: 43rem;
	border-radius: 1.15rem;
	color: inherit;
	text-decoration: none;
}

.project-showcase__feature figure,
.project-showcase__rail > a,
.project-showcase__rail > a figure {
	width: 100%;
	height: 100%;
}

.project-showcase__rail > a {
	display: block;
	min-height: 0;
	border-radius: 1.15rem;
	color: inherit;
	text-decoration: none;
}

.project-showcase__feature figcaption {
	position: absolute;
	right: 1.25rem;
	bottom: 1.25rem;
	left: 1.25rem;
	display: grid;
	gap: 0.2rem;
	padding: 1.2rem 1.35rem;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 0.85rem;
	background: rgba(9, 24, 18, 0.82);
	color: var(--paper);
	backdrop-filter: blur(12px);
}

.project-showcase__feature figcaption strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.35rem;
	font-weight: 500;
}

.project-showcase__feature figcaption span {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.88rem;
}

.project-showcase__rail {
	display: grid;
	grid-template-rows: repeat(3, 1fr);
	gap: 1rem;
}

.project-showcase__rail figure {
	min-height: 0;
}

.projects__more {
	margin: 1.5rem 0 0;
}

.project-showcase__rail figcaption,
.gemstone-gallery figcaption {
	position: absolute;
	right: 0.8rem;
	bottom: 0.8rem;
	padding: 0.4rem 0.65rem;
	border-radius: 999px;
	background: rgba(7, 20, 15, 0.82);
	color: var(--paper);
	font-size: 0.76rem;
	font-weight: 800;
	backdrop-filter: blur(10px);
}

.reviews {
	background: var(--jade-dark);
	color: var(--paper);
}

.reviews__summary {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(12rem, 0.65fr);
	gap: 3rem;
	align-items: end;
}

.reviews h2 {
	max-width: 50rem;
	margin-bottom: 0;
	color: var(--paper);
	font-size: clamp(2.35rem, 4.2vw, 4rem);
	line-height: 1.05;
}

.reviews__rating {
	display: grid;
	justify-items: end;
}

.reviews__rating > span {
	color: var(--amber-light);
	font-size: 1.35rem;
	letter-spacing: 0.12em;
}

.reviews__rating strong {
	margin-top: 0.4rem;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.5rem;
	font-weight: 500;
}

.reviews__rating small {
	color: rgba(255, 255, 255, 0.66);
}

.reviews__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 3rem;
}

.review-card {
	display: flex;
	min-height: 24rem;
	margin: 0;
	padding: clamp(2rem, 4vw, 3.25rem);
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
}

.review-card blockquote {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.35rem, 2.2vw, 1.9rem);
	line-height: 1.45;
}

.review-card figcaption {
	display: grid;
	margin-top: 2.5rem;
}

.review-card figcaption strong {
	font-size: 1rem;
}

.review-card figcaption span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.82rem;
}

.reviews__actions {
	display: flex;
	gap: 1.5rem;
	align-items: center;
	margin-top: 2rem;
}

.day-to-night {
	background: var(--paper);
}

.day-to-night__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
	gap: clamp(3rem, 7vw, 6.5rem);
	align-items: center;
}

.day-to-night__image {
	position: relative;
	margin: 0;
}

.day-to-night__image img {
	width: 100%;
	min-height: 31rem;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.day-to-night__image figcaption {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	padding: 0.55rem 0.8rem;
	border-radius: 999px;
	background: var(--paper);
	color: var(--jade-dark);
	font-size: 0.8rem;
	font-weight: 800;
}

.day-to-night__content h2,
.craftsmanship h2,
.founder h2,
.faq-section h2,
.gemstone-intro h2 {
	font-size: clamp(2.35rem, 4.2vw, 4rem);
	line-height: 1.05;
}

.check-list {
	display: grid;
	gap: 0.75rem;
	margin: 1.75rem 0 2rem;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 1.7rem;
}

.check-list li::before {
	position: absolute;
	left: 0;
	color: var(--amber);
	content: "✓";
	font-weight: 900;
}

.service-stories {
	background: #edf3ee;
}

.service-stories__grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 1rem;
	margin-top: 3rem;
}

.service-story {
	position: relative;
	min-height: 19rem;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--paper);
}

.service-story--large {
	grid-row: span 2;
	min-height: 39rem;
}

.service-story > img,
.service-story__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-story__overlay {
	background: linear-gradient(0deg, rgba(6, 21, 15, 0.92) 0%, rgba(6, 21, 15, 0.12) 75%);
}

.service-story__content {
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 0;
	left: 0;
	padding: clamp(2rem, 5vw, 3.5rem);
	color: var(--paper);
}

.service-story h3 {
	margin-bottom: 0.8rem;
	color: inherit;
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1;
}

.service-story__content > p:not(.eyebrow) {
	max-width: 34rem;
}

.service-story__content--plain {
	position: static;
	display: flex;
	min-height: 19rem;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	color: var(--charcoal);
}

.service-story__content--plain h3 {
	font-size: clamp(2rem, 3vw, 2.75rem);
}

.service-story__content--jade {
	background: var(--jade-dark);
	color: var(--paper);
}

.craftsmanship {
	background: var(--ivory);
}

.craftsmanship__grid {
	display: grid;
	grid-template-columns: minmax(20rem, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(3rem, 7vw, 6.5rem);
	align-items: center;
}

.craftsmanship__steps {
	display: grid;
	gap: 0;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.craftsmanship__steps li {
	display: grid;
	grid-template-columns: 2.8rem 1fr;
	gap: 1rem;
	padding: 1.2rem 0;
	border-top: 1px solid var(--line);
}

.craftsmanship__steps span,
.gemstone-benefits article > span {
	color: var(--amber);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.craftsmanship__steps strong {
	display: block;
	margin-bottom: 0.2rem;
	font-size: 1rem;
}

.craftsmanship__steps p {
	margin: 0;
	color: var(--charcoal-soft);
	font-size: 0.92rem;
}

.craftsmanship__photos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	align-items: end;
}

.craftsmanship__photos img {
	width: 100%;
	min-height: 31rem;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.craftsmanship__photos img:first-child {
	margin-bottom: 3rem;
}

.service-area__summary p {
	margin-top: 0;
}

.founder {
	background: var(--paper);
}

.founder__grid {
	display: grid;
	grid-template-columns: minmax(16rem, 0.7fr) minmax(22rem, 1.3fr);
	gap: clamp(3rem, 8vw, 7rem);
	align-items: center;
	max-width: 65rem;
}

.founder__portrait {
	margin: 0;
}

.founder__portrait img {
	width: 100%;
	max-height: 37rem;
	object-fit: cover;
	object-position: center 22%;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.founder__signature {
	display: grid;
	margin-top: 2rem;
}

.founder__signature strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.4rem;
	font-weight: 500;
}

.founder__signature span {
	color: var(--charcoal-soft);
	font-size: 0.9rem;
}

.faq-section {
	background: #f2f5f0;
}

.faq-section__grid {
	display: grid;
	grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
	gap: clamp(3rem, 7vw, 6.5rem);
	align-items: start;
}

.faq-section .section-heading {
	position: sticky;
	top: 8rem;
}

.quote--home {
	background: #0e1c16;
}

.mobile-actions {
	display: none;
}

.site-footer__social {
	display: flex;
	gap: 1rem;
	margin-top: 1.25rem;
}

.site-footer__social a {
	font-weight: 800;
}

.gemstone-hero {
	min-height: clamp(39rem, 72vh, 48rem);
}

.gemstone-hero__content > p:not(.eyebrow) {
	max-width: 43rem;
}

.gemstone-intro {
	background: var(--paper);
}

.gemstone-intro__grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(3rem, 7vw, 6rem);
	align-items: end;
}

.gemstone-benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 4rem;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.reviews__grid--single {
	grid-template-columns: minmax(0, 42rem);
}

.reviews--service .reviews__grid {
	grid-template-columns: minmax(0, 42rem);
}

.about-page__hero {
	background: var(--ivory);
}

.about-page__hero-grid {
	display: grid;
	grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1.25fr);
	gap: clamp(2.5rem, 7vw, 7rem);
	align-items: center;
}

.about-page__portrait {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.about-page__portrait img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.about-page__hero h1 {
	max-width: 12ch;
	margin: 0.7rem 0 1.25rem;
	font-size: clamp(3rem, 7vw, 6.2rem);
}

.about-page__lead {
	max-width: 42rem;
	font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.about-page__hero .button {
	margin-top: 1rem;
}

@media (max-width: 760px) {
	.about-page__hero-grid {
		grid-template-columns: 1fr;
	}

	.about-page__portrait {
		max-width: 24rem;
	}
}

.commercial-examples {
	background: var(--ivory);
}

.commercial-examples__grid {
	display: grid;
	grid-template-columns: 1.35fr 0.65fr;
	gap: clamp(1rem, 2vw, 1.5rem);
}

.commercial-examples__grid figure {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--jade-dark);
}

.commercial-examples__grid img {
	width: 100%;
	height: clamp(24rem, 48vw, 42rem);
	object-fit: cover;
}

.commercial-examples__grid figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 3rem 1.25rem 1.1rem;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
	color: var(--paper);
	font-weight: 800;
}

@media (max-width: 760px) {
	.commercial-examples__grid {
		grid-template-columns: 1fr;
	}

	.commercial-examples__grid img {
		height: auto;
		aspect-ratio: 4 / 3;
	}
}

.gemstone-benefits article {
	padding: 2rem 1.5rem;
}

.gemstone-benefits article + article {
	border-left: 1px solid var(--line);
}

.gemstone-benefits h3 {
	margin: 0.8rem 0 0.6rem;
	font-size: 1.35rem;
}

.gemstone-benefits p {
	margin: 0;
	color: var(--charcoal-soft);
	font-size: 0.92rem;
}

.gemstone-gallery {
	background: var(--jade-dark);
	color: var(--paper);
}

.gemstone-gallery h2,
.gemstone-gallery .eyebrow,
.gemstone-gallery .section-heading--split > p {
	color: var(--paper);
}

.gemstone-gallery .eyebrow {
	color: var(--amber-light);
}

.gemstone-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 18rem;
	gap: 1rem;
	margin-top: 3rem;
}

.gemstone-gallery__wide {
	grid-column: span 2;
	grid-row: span 2;
}

.gemstone-daylight {
	background: var(--paper);
}

@media (max-width: 900px) {
	.site-header__inner {
		min-height: 5rem;
	}

	.home-hero,
	.gemstone-hero {
		min-height: 46rem;
	}

	.home-hero__shade,
	.gemstone-hero__shade {
		background:
			linear-gradient(0deg, rgba(4, 18, 13, 0.96) 0%, rgba(4, 18, 13, 0.76) 70%, rgba(4, 18, 13, 0.42) 100%);
	}

	.home-hero__content,
	.gemstone-hero__content {
		justify-content: flex-end;
		padding-top: 8rem;
		padding-bottom: 4rem;
	}

	.home-hero h1,
	.gemstone-hero h1 {
		font-size: clamp(2.8rem, 10vw, 4.5rem);
	}

	.service-jump {
		margin-top: 0;
	}

	.service-jump__grid {
		width: 100%;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.service-jump a {
		padding: 1.25rem 1rem;
	}

	.service-jump strong {
		font-size: 1.05rem;
	}

	.service-jump small {
		display: none;
	}

	.dealer-verification__inner {
		grid-template-columns: minmax(13rem, 19rem) 1fr;
		gap: 2rem;
	}

	.section-heading--split,
	.project-showcase,
	.reviews__summary,
	.day-to-night__grid,
	.craftsmanship__grid,
	.founder__grid,
	.faq-section__grid,
	.gemstone-intro__grid {
		grid-template-columns: 1fr;
	}

	.section-heading--split,
	.reviews__summary,
	.day-to-night__grid,
	.craftsmanship__grid,
	.founder__grid,
	.faq-section__grid,
	.gemstone-intro__grid {
		gap: 2.5rem;
	}

	.project-showcase__feature {
		min-height: 32rem;
	}

	.project-showcase__rail {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: none;
	}

	.project-showcase__rail figure {
		min-height: 13rem;
	}

	.reviews__rating {
		justify-items: start;
	}

	.service-stories__grid {
		grid-template-columns: 1fr;
	}

	.service-story--large {
		grid-row: auto;
		min-height: 34rem;
	}

	.craftsmanship__photos {
		max-width: 42rem;
	}

	.founder__grid {
		max-width: 42rem;
	}

	.founder__portrait {
		max-width: 23rem;
	}

	.faq-section .section-heading {
		position: static;
	}

	.gemstone-benefits {
		grid-template-columns: 1fr 1fr;
	}

	.gemstone-benefits article:nth-child(3) {
		border-left: 0;
	}

	.gemstone-benefits article:nth-child(n + 3) {
		border-top: 1px solid var(--line);
	}

	.gemstone-gallery__grid {
		grid-template-columns: 1fr 1fr;
	}

	.gemstone-gallery__wide {
		grid-column: span 2;
	}

	.mobile-actions {
		position: fixed;
		z-index: 40;
		right: 0.75rem;
		bottom: 0.75rem;
		left: 0.75rem;
		display: grid;
		grid-template-columns: 0.7fr 0.7fr 1.3fr;
		overflow: hidden;
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 999px;
		background: rgba(12, 31, 23, 0.96);
		box-shadow: 0 16px 44px rgba(4, 18, 13, 0.32);
		backdrop-filter: blur(14px);
	}

	.mobile-actions a {
		padding: 0.9rem 0.6rem;
		color: var(--paper);
		font-size: 0.88rem;
		font-weight: 800;
		text-align: center;
		text-decoration: none;
	}

	.mobile-actions a + a {
		border-left: 1px solid rgba(255, 255, 255, 0.16);
	}

	.mobile-actions a:last-child {
		background: var(--amber);
		color: var(--jade-dark);
	}

	.site-footer {
		padding-bottom: 6rem;
	}
}

@media (max-width: 620px) {
	.home-hero,
	.gemstone-hero {
		min-height: 43rem;
	}

	.home-hero__image,
	.gemstone-hero__image {
		object-position: 56% center;
	}

	.home-hero__content,
	.gemstone-hero__content {
		padding-top: 6.5rem;
		padding-bottom: 3rem;
	}

	.home-hero h1,
	.gemstone-hero h1 {
		font-size: clamp(2.55rem, 12vw, 3.65rem);
	}

	.home-hero__lead,
	.gemstone-hero__content > p:not(.eyebrow) {
		font-size: 1rem;
	}

	.home-hero__proof {
		display: grid;
		gap: 0.45rem;
		margin-top: 1.5rem;
	}

	.home-hero__caption {
		display: none;
	}

	.service-jump__grid {
		grid-template-columns: 1fr;
	}

	.service-jump a + a {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.dealer-verification {
		padding-top: 2.5rem;
	}

	.dealer-verification__inner {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		padding: 1.25rem;
	}

	.projects {
		padding-top: 5rem;
	}

	.project-showcase__feature {
		min-height: 27rem;
	}

	.project-showcase__feature figcaption span {
		display: none;
	}

	.project-showcase__rail {
		grid-template-columns: 1fr 1fr;
	}

	.project-showcase__rail figure {
		min-height: 12rem;
	}

	.project-showcase__rail figure:last-child {
		grid-column: span 2;
	}

	.reviews__grid {
		grid-template-columns: 1fr;
	}

	.review-card {
		min-height: 0;
	}

	.reviews__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.day-to-night__image img {
		min-height: 23rem;
	}

	.service-story--large {
		min-height: 31rem;
	}

	.service-story__content--plain {
		min-height: 17rem;
	}

	.craftsmanship__photos {
		gap: 0.65rem;
	}

	.craftsmanship__photos img {
		min-height: 23rem;
	}

	.craftsmanship__photos img:first-child {
		margin-bottom: 2rem;
	}

	.gemstone-benefits,
	.gemstone-gallery__grid {
		grid-template-columns: 1fr;
	}

	.gemstone-benefits article + article,
	.gemstone-benefits article:nth-child(3) {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.gemstone-gallery__grid {
		grid-auto-rows: 17rem;
	}

	.gemstone-gallery__wide {
		grid-column: auto;
		grid-row: auto;
	}
}

/* Project stories and installation guide — v0.6 */

.portfolio-page,
.case-study,
.installation-page {
	background: var(--ivory);
}

.portfolio-hero {
	padding-top: clamp(5rem, 9vw, 8rem);
	background:
		radial-gradient(circle at 88% 20%, rgba(217, 155, 69, 0.18), transparent 24rem),
		var(--ivory);
}

.portfolio-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
	gap: clamp(2rem, 7vw, 7rem);
	align-items: end;
}

.portfolio-hero h1 {
	max-width: 13ch;
	margin-bottom: 0;
	font-size: clamp(3rem, 7vw, 6.4rem);
}

.portfolio-hero__lead {
	max-width: 34rem;
	margin-bottom: 0.65rem;
	color: var(--charcoal-soft);
	font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.portfolio-list {
	padding-top: 0;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: minmax(27rem, 40vw);
	gap: 1rem;
}

.portfolio-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--jade-dark);
	color: var(--paper);
	text-decoration: none;
}

.portfolio-card--wide {
	grid-column: 1 / -1;
	grid-row: span 1;
}

.portfolio-card::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(5, 17, 13, 0.92), rgba(5, 17, 13, 0.05) 65%);
	content: "";
}

.portfolio-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
}

.portfolio-card:hover {
	color: var(--paper);
}

.portfolio-card:hover img {
	transform: scale(1.025);
}

.portfolio-card > span {
	position: absolute;
	z-index: 1;
	right: clamp(1.4rem, 4vw, 3rem);
	bottom: clamp(1.4rem, 4vw, 3rem);
	left: clamp(1.4rem, 4vw, 3rem);
	display: grid;
	max-width: 48rem;
	gap: 0.55rem;
}

.portfolio-card small {
	color: var(--amber-light);
	font-size: 0.76rem;
	font-style: normal;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.portfolio-card strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.8rem, 4vw, 3.4rem);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.04;
}

.portfolio-card:not(.portfolio-card--wide) strong {
	font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.portfolio-card em {
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 850;
}

.case-study__hero {
	position: relative;
	display: grid;
	min-height: clamp(40rem, 78vh, 54rem);
	align-items: end;
	overflow: hidden;
	background: var(--jade-dark);
	color: var(--paper);
}

.case-study__hero > img,
.case-study__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.case-study__hero > img {
	object-fit: cover;
}

.case-study__shade {
	background:
		linear-gradient(0deg, rgba(4, 16, 12, 0.96) 0%, rgba(4, 16, 12, 0.5) 48%, rgba(4, 16, 12, 0.12) 78%),
		linear-gradient(90deg, rgba(4, 16, 12, 0.5), transparent 60%);
}

.case-study__hero-content {
	position: relative;
	z-index: 1;
	padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

.case-study__hero h1 {
	max-width: 14ch;
	margin-bottom: 1.25rem;
	color: var(--paper);
	font-size: clamp(3rem, 7vw, 6.2rem);
}

.case-study__hero-content > p:last-child {
	max-width: 47rem;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.case-study__overview {
	background: var(--paper);
}

.case-study__overview-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
	gap: clamp(3rem, 8vw, 8rem);
	align-items: start;
}

.case-study__overview-grid h2 {
	max-width: 14ch;
}

.case-study__overview-grid > div > p:last-child {
	max-width: 43rem;
	font-size: 1.08rem;
}

.project-facts {
	margin: 0;
	border-top: 1px solid var(--line);
}

.project-facts > div {
	display: grid;
	grid-template-columns: 7rem 1fr;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--line);
}

.project-facts dt {
	color: var(--jade);
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.project-facts dd {
	margin: 0;
	font-weight: 700;
}

.case-study__gallery {
	background: #edf3ee;
}

.case-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.case-gallery--two {
	grid-template-columns: repeat(2, 1fr);
}

.case-gallery figure {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--jade-dark);
}

.case-gallery img {
	width: 100%;
	height: clamp(23rem, 34vw, 35rem);
	object-fit: cover;
}

.case-gallery figcaption {
	position: absolute;
	right: 0.8rem;
	bottom: 0.8rem;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(7, 20, 15, 0.84);
	color: var(--paper);
	font-size: 0.76rem;
	font-weight: 800;
	backdrop-filter: blur(10px);
}

.case-study__lessons {
	background: var(--paper);
}

.case-study__lessons .gemstone-benefits {
	margin-top: 2rem;
}

.project-cta {
	background: var(--jade-dark);
	color: rgba(255, 255, 255, 0.85);
}

.project-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 2rem;
	align-items: center;
}

.project-cta h2 {
	max-width: 18ch;
	margin-bottom: 0;
	color: var(--paper);
}

.installation-hero {
	background:
		radial-gradient(circle at 90% 15%, rgba(217, 155, 69, 0.19), transparent 24rem),
		var(--ivory);
}

.installation-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
	gap: clamp(3rem, 8vw, 7rem);
	align-items: center;
}

.installation-hero h1 {
	max-width: 12ch;
	font-size: clamp(3rem, 7vw, 6.2rem);
}

.installation-hero__lead {
	max-width: 42rem;
	font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.installation-hero figure,
.installation-proof figure {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.installation-hero figure img {
	width: 100%;
	max-height: 42rem;
	object-fit: cover;
}

.installation-steps {
	background: var(--paper);
}

.installation-steps__list {
	display: grid;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.installation-steps__list li {
	display: grid;
	grid-template-columns: 5rem minmax(0, 1fr);
	gap: clamp(1rem, 4vw, 3rem);
	padding: clamp(1.5rem, 3vw, 2.5rem) 0;
	border-bottom: 1px solid var(--line);
}

.installation-steps__list > li > span {
	color: var(--amber);
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.installation-steps__list h3 {
	margin-bottom: 0.45rem;
}

.installation-steps__list p {
	max-width: 49rem;
	margin-bottom: 0;
	color: var(--charcoal-soft);
}

.installation-proof {
	background: var(--jade-dark);
	color: rgba(255, 255, 255, 0.84);
}

.installation-proof__grid {
	display: grid;
	grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(3rem, 8vw, 7rem);
	align-items: center;
}

.installation-proof figure img {
	width: 100%;
	max-height: 38rem;
	object-fit: cover;
}

.installation-proof h2 {
	max-width: 13ch;
	color: var(--paper);
}

.installation-proof p:not(.eyebrow) {
	max-width: 39rem;
	font-size: 1.08rem;
}

@media (max-width: 900px) {
	.portfolio-hero__grid,
	.case-study__overview-grid,
	.installation-hero__grid,
	.installation-proof__grid {
		grid-template-columns: 1fr;
	}

	.portfolio-grid {
		grid-auto-rows: minmax(24rem, 62vw);
	}

	.case-gallery {
		grid-template-columns: 1fr 1fr;
	}

	.case-gallery figure:last-child:nth-child(odd) {
		grid-column: 1 / -1;
	}

	.case-gallery figure:last-child:nth-child(odd) img {
		height: min(60vw, 32rem);
	}

	.installation-hero figure,
	.installation-proof figure {
		max-width: 35rem;
	}
}

@media (max-width: 620px) {
	.portfolio-grid,
	.case-gallery,
	.case-gallery--two {
		grid-template-columns: 1fr;
	}

	.portfolio-grid {
		grid-auto-rows: 26rem;
	}

	.portfolio-card--wide,
	.case-gallery figure:last-child:nth-child(odd) {
		grid-column: auto;
	}

	.case-study__hero {
		min-height: 40rem;
	}

	.case-study__hero > img {
		object-position: 58% center;
	}

	.case-gallery img,
	.case-gallery figure:last-child:nth-child(odd) img {
		height: auto;
		aspect-ratio: 4 / 3;
	}

	.project-facts > div,
	.project-cta__inner {
		grid-template-columns: 1fr;
	}

	.project-facts > div {
		gap: 0.25rem;
	}

	.installation-steps__list li {
		grid-template-columns: 2.8rem minmax(0, 1fr);
	}
}
