:root {
	--color-black: #070707;
	--color-charcoal: #111111;
	--color-white: #ffffff;
	--color-cream: #f7f3ea;
	--color-muted: #6f6f6f;
	--color-gold: #caa14a;
	--color-gold-dark: #9d7625;
	--color-water: #dff6ff;
	--shadow-soft: 0 20px 70px rgba(0, 0, 0, 0.12);
	--shadow-gold: 0 18px 45px rgba(202, 161, 74, 0.28);
	--radius: 8px;
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-white);
	color: var(--color-black);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

.container {
	width: min(100% - 32px, var(--container));
	margin-inline: auto;
}

.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;
}

.skip-link:focus {
	position: fixed;
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--color-gold);
	color: var(--color-black);
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	padding: 16px 0;
	transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
	padding: 10px 0;
	background: rgba(7, 7, 7, 0.92);
	box-shadow: 0 14px 45px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(14px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--color-white);
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(202, 161, 74, 0.85);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	color: var(--color-gold);
	font-family: "Playfair Display", Georgia, serif;
	font-size: 25px;
	font-weight: 800;
}

.brand-name,
.brand-line {
	display: block;
}

.brand-name {
	font-weight: 800;
	line-height: 1.1;
}

.brand-line {
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 24px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	font-weight: 600;
}

.site-nav a {
	transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus {
	color: var(--color-gold);
}

.header-cta,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 13px 20px;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-weight: 800;
	line-height: 1;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.header-cta,
.btn-gold {
	background: linear-gradient(135deg, #e6c878, var(--color-gold) 45%, #a8802d);
	color: var(--color-black);
	box-shadow: var(--shadow-gold);
}

.header-cta:hover,
.btn:hover {
	transform: translateY(-2px);
}

.btn-ghost {
	border-color: rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-white);
}

.btn-ghost:hover {
	border-color: var(--color-gold);
	color: var(--color-gold);
}

.section {
	padding: clamp(72px, 8vw, 120px) 0;
}

.section-dark {
	background: var(--color-black);
	color: var(--color-white);
}

.hero {
	position: relative;
	display: grid;
	min-height: 94vh;
	overflow: hidden;
	align-items: center;
	padding: 148px 0 78px;
}

.hero-media,
.hero-media::after {
	position: absolute;
	inset: 0;
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-media::after {
	content: "";
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.1)),
		linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 45%);
}

.water-shimmer {
	position: absolute;
	inset: auto -10% 0;
	height: 46%;
	background: linear-gradient(115deg, transparent 20%, rgba(223, 246, 255, 0.16) 38%, transparent 56%);
	transform: translateX(-35%);
	animation: shimmer 8s ease-in-out infinite;
}

.water-ripple {
	position: absolute;
	right: 10%;
	bottom: 18%;
	width: 150px;
	aspect-ratio: 1;
	border: 1px solid rgba(223, 246, 255, 0.32);
	border-radius: 50%;
	animation: ripple 6s linear infinite;
}

.ripple-two {
	right: 22%;
	bottom: 8%;
	animation-delay: 1.8s;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 760px;
	margin-inline: auto auto;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--color-gold);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2 {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: 0;
}

h1 {
	max-width: 820px;
	margin-bottom: 22px;
	font-size: clamp(44px, 8vw, 86px);
}

h2 {
	margin-bottom: 18px;
	font-size: clamp(34px, 5vw, 58px);
}

h3 {
	margin-bottom: 10px;
	font-size: 21px;
	line-height: 1.25;
}

.hero-subtitle {
	max-width: 580px;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 34px 0 28px;
}

.hero-keywords {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hero-keywords span,
.surface-grid span {
	border: 1px solid rgba(202, 161, 74, 0.28);
	border-radius: 999px;
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	font-weight: 700;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 38px;
}

.split-heading {
	display: grid;
	max-width: none;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
	align-items: end;
	gap: 28px;
}

.split-heading > p {
	color: var(--color-muted);
}

.premium-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.premium-card,
.service-pill,
.testimonial-grid blockquote,
.faq-list details,
.quote-form-wrap,
.gallery-item {
	border: 1px solid rgba(7, 7, 7, 0.09);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow-soft);
}

.premium-card {
	position: relative;
	overflow: hidden;
	min-height: 250px;
	padding: 30px;
}

.premium-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--color-gold), transparent);
}

.premium-card p,
.service-pill p,
.testimonial-grid p,
.faq-list p {
	color: var(--color-muted);
}

.service-icon {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 30px;
	border-radius: 50%;
	background: var(--color-black);
	color: var(--color-gold);
	font-size: 13px;
	font-weight: 800;
}

.services-section {
	background: #f5f5f2;
}

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

.service-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 82px;
	padding: 18px;
	box-shadow: none;
}

.service-pill span {
	width: 9px;
	height: 9px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--color-gold);
	box-shadow: 0 0 0 6px rgba(202, 161, 74, 0.14);
}

.service-pill h3 {
	margin: 0;
	font-size: 15px;
}

.pressure-feature {
	position: relative;
	overflow: hidden;
}

.pressure-feature::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at 18% 20%, rgba(202, 161, 74, 0.16), transparent 30%),
		linear-gradient(125deg, rgba(223, 246, 255, 0.1), transparent 38%);
}

.feature-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
	align-items: center;
	gap: 46px;
}

.feature-copy p {
	color: rgba(255, 255, 255, 0.76);
}

.benefit-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	padding: 0;
	margin: 28px 0 0;
	list-style: none;
}

.benefit-list li {
	position: relative;
	padding-left: 24px;
	color: rgba(255, 255, 255, 0.88);
	font-weight: 700;
}

.benefit-list li::before {
	content: "";
	position: absolute;
	top: 11px;
	left: 0;
	width: 12px;
	height: 2px;
	background: var(--color-gold);
}

.feature-media {
	position: relative;
}

.comparison-slider {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	background: var(--color-charcoal);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
	--position: 52%;
}

.comparison-slider.compact {
	aspect-ratio: 16 / 11;
	border-color: rgba(7, 7, 7, 0.1);
	box-shadow: none;
}

.comparison-img,
.comparison-after img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.comparison-after {
	position: absolute;
	inset: 0;
	width: var(--position);
	overflow: hidden;
}

.comparison-after img {
	width: calc(100% / (var(--position-number, 0.52)));
	max-width: none;
}

.comparison-slider input[type="range"] {
	position: absolute;
	inset: 0;
	z-index: 4;
	width: 100%;
	height: 100%;
	margin: 0;
	cursor: ew-resize;
	opacity: 0;
}

.slider-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--position);
	z-index: 3;
	width: 2px;
	background: var(--color-gold);
	box-shadow: 0 0 0 999px rgba(0, 0, 0, 0.08);
}

.slider-line::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 42px;
	height: 42px;
	border: 2px solid var(--color-gold);
	border-radius: 50%;
	background: rgba(7, 7, 7, 0.86);
	transform: translate(-50%, -50%);
	box-shadow: var(--shadow-gold);
}

.slider-label {
	position: absolute;
	z-index: 2;
	bottom: 18px;
	border-radius: 999px;
	padding: 7px 12px;
	background: rgba(0, 0, 0, 0.62);
	color: var(--color-white);
	font-size: 12px;
	font-weight: 800;
}

.label-before {
	left: 18px;
}

.label-after {
	right: 18px;
}

.surfaces-wrap {
	position: relative;
	z-index: 1;
	margin-top: 46px;
}

.surfaces-wrap h3 {
	color: var(--color-gold);
}

.surface-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gallery-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.gallery-tabs button {
	min-height: 38px;
	border: 1px solid rgba(7, 7, 7, 0.12);
	border-radius: 999px;
	padding: 8px 13px;
	background: var(--color-white);
	color: var(--color-black);
	cursor: pointer;
	font-size: 13px;
	font-weight: 800;
}

.gallery-tabs button.active {
	border-color: var(--color-black);
	background: var(--color-black);
	color: var(--color-gold);
}

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

.gallery-item {
	overflow: hidden;
	margin: 0;
	background: var(--color-white);
	transition: opacity 160ms ease, transform 160ms ease;
}

.gallery-item.is-hidden {
	display: none;
}

.gallery-item img {
	width: 100%;
	height: 260px;
	object-fit: cover;
}

.gallery-item.wide {
	grid-column: span 1;
}

.gallery-item figcaption {
	padding: 16px 18px 18px;
	font-weight: 800;
}

.testimonials-section {
	background: var(--color-black);
	color: var(--color-white);
}

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

.testimonial-grid blockquote {
	margin: 0;
	padding: 28px;
	background: #151515;
	border-color: rgba(255, 255, 255, 0.1);
	box-shadow: none;
}

.testimonial-grid p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 17px;
}

.testimonial-grid cite {
	display: block;
	color: var(--color-gold);
	font-style: normal;
	font-weight: 800;
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-list details {
	padding: 20px 22px;
	box-shadow: none;
}

.faq-list summary {
	cursor: pointer;
	font-weight: 800;
}

.faq-list summary::marker {
	color: var(--color-gold);
}

.faq-list p {
	margin: 12px 0 0;
}

.quote-section {
	position: relative;
	overflow: hidden;
}

.quote-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(202, 161, 74, 0.18), transparent 36%), linear-gradient(0deg, rgba(223, 246, 255, 0.08), transparent);
}

.quote-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
	gap: 40px;
	align-items: start;
}

.quote-copy p {
	color: rgba(255, 255, 255, 0.78);
}

.quote-form-wrap {
	padding: clamp(20px, 4vw, 34px);
	background: var(--color-white);
	color: var(--color-black);
}

.plugin-notice {
	margin: 0;
	color: var(--color-muted);
	font-weight: 700;
}

.site-footer {
	padding: 46px 0 24px;
	background: #050505;
	color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 24px;
}

.footer-brand {
	margin-bottom: 8px;
	color: var(--color-white);
	font-size: 22px;
	font-weight: 900;
}

.footer-label {
	margin-bottom: 8px;
	color: var(--color-gold);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.footer-bottom {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 13px;
}

.dorado-quote-form {
	display: grid;
	gap: 15px;
}

.dorado-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.dorado-quote-form label {
	display: grid;
	gap: 6px;
	color: var(--color-black);
	font-size: 13px;
	font-weight: 800;
}

.dorado-quote-form input,
.dorado-quote-form select,
.dorado-quote-form textarea {
	width: 100%;
	min-height: 46px;
	border: 1px solid rgba(7, 7, 7, 0.14);
	border-radius: var(--radius);
	padding: 11px 12px;
	background: #fbfbf8;
	color: var(--color-black);
}

.dorado-quote-form textarea {
	min-height: 112px;
	resize: vertical;
}

.dorado-quote-form input:focus,
.dorado-quote-form select:focus,
.dorado-quote-form textarea:focus {
	outline: 2px solid rgba(202, 161, 74, 0.42);
	border-color: var(--color-gold);
}

.dorado-form-submit {
	width: 100%;
	min-height: 52px;
	border: 0;
	border-radius: var(--radius);
	background: var(--color-black);
	color: var(--color-gold);
	cursor: pointer;
	font-weight: 900;
}

.dorado-form-note,
.dorado-form-success,
.dorado-form-error {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
}

.dorado-form-note {
	color: var(--color-muted);
}

.dorado-form-success {
	border-left: 4px solid #1f8f4d;
	padding: 10px 12px;
	background: #eefaf3;
	color: #155d34;
}

.dorado-form-error {
	border-left: 4px solid #ad2d2d;
	padding: 10px 12px;
	background: #fff0f0;
	color: #8a1f1f;
}

@keyframes shimmer {
	0%,
	100% {
		transform: translateX(-40%);
		opacity: 0.36;
	}

	50% {
		transform: translateX(35%);
		opacity: 0.62;
	}
}

@keyframes ripple {
	from {
		transform: scale(0.35);
		opacity: 0.65;
	}

	to {
		transform: scale(1.7);
		opacity: 0;
	}
}

@media (max-width: 980px) {
	.site-nav {
		display: none;
	}

	.premium-cards,
	.testimonial-grid,
	.footer-grid,
	.gallery-grid {
		grid-template-columns: 1fr;
	}

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

	.split-heading,
	.feature-grid,
	.quote-grid {
		grid-template-columns: 1fr;
	}

	.gallery-tabs {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(100% - 24px, var(--container));
	}

	.header-cta {
		display: none;
	}

	.brand-line {
		display: none;
	}

	.hero {
		min-height: 88vh;
		padding-top: 118px;
	}

	.hero-actions,
	.hero-actions .btn {
		width: 100%;
	}

	.service-grid,
	.benefit-list,
	.dorado-form-row {
		grid-template-columns: 1fr;
	}

	.premium-card {
		min-height: auto;
		padding: 24px;
	}

	.gallery-item img {
		height: 230px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}
