:root {
	--ink: #101820;
	--muted: #5c6b76;
	--paper: #f2f6f6;
	--paper-deep: #e3ecec;
	--sea: #0e6a67;
	--sea-deep: #084441;
	--sea-ink: #062826;
	--mist: #7fb0ab;
	--accent: #c4a35a;
	--accent-soft: #e9dcbc;
	--line: rgba(16, 24, 32, 0.09);
	--line-strong: rgba(16, 24, 32, 0.16);
	--card: rgba(255, 255, 255, 0.82);
	--shadow-sm: 0 1px 2px rgba(8, 68, 65, 0.05), 0 4px 12px rgba(8, 68, 65, 0.05);
	--shadow-md: 0 2px 6px rgba(8, 68, 65, 0.06), 0 14px 34px rgba(8, 68, 65, 0.1);
	--shadow-lg: 0 24px 70px rgba(8, 68, 65, 0.22);
	--font-display: "Cormorant Garamond", Georgia, serif;
	--font-body: "Outfit", system-ui, sans-serif;
	--header-h: 4.25rem;
	--r-card: 14px;
	--r-btn: 8px;
	--content-max: 72rem;
	--page-gutter: clamp(1.25rem, 4vw, 3rem);
	--page-inline: max(var(--page-gutter), calc((100% - var(--content-max)) / 2));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--ink);
	background:
		radial-gradient(900px 480px at 100% 0%, rgba(127, 176, 171, 0.24), transparent 55%),
		radial-gradient(700px 420px at 0% 24%, rgba(14, 106, 103, 0.08), transparent 50%),
		linear-gradient(168deg, #f6fafa 0%, var(--paper) 42%, #e6efef 100%);
	min-height: 100vh;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--sea-deep);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--sea);
}

::selection {
	background: rgba(196, 163, 90, 0.35);
}

/* —— Header —— */
.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 0.85rem var(--page-inline);
	min-height: var(--header-h);
	position: sticky;
	top: 0;
	z-index: 40;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	background: rgba(242, 246, 246, 0.85);
	border-bottom: 1px solid transparent;
	transition: box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled {
	border-bottom-color: var(--line);
	box-shadow: 0 10px 30px rgba(8, 68, 65, 0.07);
	background: rgba(242, 246, 246, 0.95);
}

.brand {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--ink);
	text-decoration: none;
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}

.brand::before {
	content: "";
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, var(--accent), #a8863c);
	box-shadow: 0 0 0 4px rgba(196, 163, 90, 0.18);
}

.nav {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.35rem;
	align-items: center;
	justify-content: flex-end;
	font-size: 0.95rem;
}

.nav a {
	text-decoration: none;
	color: var(--muted);
	transition: color 0.2s ease, background 0.2s ease;
	white-space: nowrap;
	flex: 0 0 auto;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
}

.nav a:hover {
	color: var(--ink);
	background: rgba(14, 106, 103, 0.07);
}

.nav-cta {
	margin-left: 0.5rem;
	padding: 0.6rem 1.15rem !important;
	background: var(--sea);
	color: #f2f8f8 !important;
	border-radius: 999px;
	font-weight: 500;
	box-shadow: 0 6px 18px rgba(14, 106, 103, 0.28);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
	background: var(--sea-deep) !important;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(14, 106, 103, 0.34);
}

.nav-toggle {
	display: none;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	gap: 0.35rem;
	z-index: 2;
}

.nav-toggle span {
	display: block;
	height: 2px;
	width: 1.35rem;
	background: var(--ink);
	transition: transform 0.25s ease, opacity 0.2s ease;
	margin-inline: auto;
}

.site-header.is-nav-open .nav-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.site-header.is-nav-open .nav-toggle span:nth-child(2) {
	opacity: 0;
}
.site-header.is-nav-open .nav-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* —— Hero —— */
.hero {
	position: relative;
	isolation: isolate;
	min-height: calc(100vh - var(--header-h));
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: center;
	gap: clamp(2rem, 5vw, 4rem);
	padding: clamp(3rem, 8vw, 5.5rem) var(--page-inline) clamp(3.5rem, 9vw, 6rem);
	overflow: hidden;
	color: #eef6f5;
}

.hero-atmosphere {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(ellipse 60% 55% at 78% 30%, rgba(196, 163, 90, 0.2), transparent 60%),
		radial-gradient(ellipse 70% 80% at 10% 90%, rgba(14, 106, 103, 0.5), transparent 60%),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E"),
		linear-gradient(155deg, #0a3d3a 0%, #062826 52%, #0d4a47 100%);
	background-size: cover, cover, 180px 180px, cover;
	transform: scale(1.02);
	animation: hero-drift 20s ease-in-out infinite alternate;
}

.hero-atmosphere::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(6, 40, 38, 0.5) 0%, transparent 40%);
}

.hero-inner {
	max-width: 36rem;
	animation: rise 1s ease-out both;
}

.brand-mark {
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 3vw, 1.9rem);
	font-style: italic;
	font-weight: 500;
	color: var(--accent);
	margin: 0 0 1rem;
	letter-spacing: 0.01em;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	animation: rise 1.1s 0.05s ease-out both;
}

.brand-mark::after {
	content: "";
	height: 1px;
	width: 3.5rem;
	background: linear-gradient(90deg, rgba(196, 163, 90, 0.8), transparent);
}

.hero h1,
.section-head h1,
.section-head h2,
.cta-band h2 {
	font-family: var(--font-display);
	font-weight: 550;
	line-height: 1.06;
	letter-spacing: -0.015em;
	margin: 0 0 1rem;
}

.hero h1 {
	font-size: clamp(2.6rem, 5.6vw, 4.1rem);
	max-width: 15ch;
	color: #f4faf9;
	animation: rise 1.05s 0.1s ease-out both;
}

.hero h1 em {
	font-style: italic;
	color: var(--accent);
}

.lede {
	font-size: 1.12rem;
	color: rgba(238, 246, 245, 0.82);
	max-width: 30rem;
	margin: 0 0 1.9rem;
	font-weight: 300;
	animation: rise 1.1s 0.16s ease-out both;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	animation: rise 1.15s 0.22s ease-out both;
}

.hero-trust {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	margin: 2rem 0 0;
	padding: 1.25rem 0 0;
	border-top: 1px solid rgba(238, 246, 245, 0.16);
	font-size: 0.88rem;
	color: rgba(238, 246, 245, 0.75);
	animation: rise 1.2s 0.3s ease-out both;
}

.hero-trust li {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.hero-trust li::before {
	content: "";
	width: 0.95rem;
	height: 0.95rem;
	flex: 0 0 auto;
	background-color: var(--accent);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='currentColor' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-6.5 6.5a.75.75 0 0 1-1.06 0l-3-3a.75.75 0 1 1 1.06-1.06l2.47 2.47 5.97-5.97a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='currentColor' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-6.5 6.5a.75.75 0 0 1-1.06 0l-3-3a.75.75 0 1 1 1.06-1.06l2.47 2.47 5.97-5.97a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Hero visual: CSS booking mockup */
.hero-visual {
	position: relative;
	justify-self: center;
	width: min(100%, 27rem);
	animation: rise 1.2s 0.25s ease-out both;
}

.mockup {
	background: #fdfefe;
	border-radius: 18px;
	box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.14);
	overflow: hidden;
	color: var(--ink);
	transform: rotate(1.2deg);
}

.mockup-bar {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.7rem 0.95rem;
	background: #eef3f3;
	border-bottom: 1px solid var(--line);
}

.mockup-bar span {
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 50%;
	background: #d5dedd;
}

.mockup-bar span:nth-child(1) { background: #f0a8a2; }
.mockup-bar span:nth-child(2) { background: #f0d9a2; }
.mockup-bar span:nth-child(3) { background: #a8d8b4; }

.mockup-bar em {
	font-style: normal;
	font-size: 0.72rem;
	color: var(--muted);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 0.15rem 0.75rem;
	margin-left: 0.35rem;
}

.mockup-body {
	padding: 1.15rem 1.2rem 1.3rem;
	display: grid;
	gap: 0.9rem;
}

.mockup-head strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 600;
}

.mockup-head span {
	font-size: 0.82rem;
	color: var(--muted);
}

.mockup-services {
	display: grid;
	gap: 0.5rem;
}

.mockup-service {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	padding: 0.65rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: 10px;
	font-size: 0.88rem;
	color: var(--muted);
	background: #fff;
}

.mockup-service.is-active {
	border-color: rgba(14, 106, 103, 0.5);
	background: rgba(14, 106, 103, 0.06);
	color: var(--sea-deep);
	font-weight: 500;
	box-shadow: inset 0 0 0 1px rgba(14, 106, 103, 0.35);
}

.mockup-service b {
	font-weight: 500;
}

.mockup-slots {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.mockup-slots span {
	padding: 0.4rem 0.7rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 0.8rem;
	color: var(--muted);
	background: #fff;
}

.mockup-slots span.is-active {
	background: var(--sea);
	border-color: var(--sea);
	color: #fff;
	font-weight: 500;
}

.mockup-btn {
	text-align: center;
	padding: 0.8rem 1rem;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--sea) 0%, var(--sea-deep) 100%);
	color: #f2f8f8;
	font-weight: 500;
	font-size: 0.95rem;
	box-shadow: 0 8px 20px rgba(14, 106, 103, 0.3);
}

.hero-chip {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.6rem 0.9rem;
	background: #fff;
	color: var(--ink);
	border-radius: 12px;
	box-shadow: var(--shadow-md);
	font-size: 0.82rem;
	font-weight: 500;
	white-space: nowrap;
}

.hero-chip::before {
	content: "";
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	flex: 0 0 auto;
	background-color: rgba(14, 106, 103, 0.12);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 0.85rem;
}

.hero-chip small {
	display: block;
	font-weight: 400;
	color: var(--muted);
	font-size: 0.72rem;
}

.hero-chip-1 {
	top: -1.4rem;
	right: -0.75rem;
	animation: float 5.5s ease-in-out infinite;
}

.hero-chip-1::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230e6a67' d='M13.78 4.22a.75.75 0 0 1 0 1.06l-6.5 6.5a.75.75 0 0 1-1.06 0l-3-3a.75.75 0 1 1 1.06-1.06l2.47 2.47 5.97-5.97a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
}

.hero-chip-2 {
	bottom: -1.2rem;
	left: -1.25rem;
	animation: float 6.5s 0.8s ease-in-out infinite;
}

.hero-chip-2::before {
	background-color: rgba(196, 163, 90, 0.18);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23a8863c' d='M4.5 1a.5.5 0 0 1 .5.5V2h6v-.5a.5.5 0 0 1 1 0V2h1.5A1.5 1.5 0 0 1 15 3.5v9a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 1 12.5v-9A1.5 1.5 0 0 1 2.5 2H4v-.5a.5.5 0 0 1 .5-.5zM2 5v7.5a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5V5H2z'/%3E%3C/svg%3E");
}

/* —— Buttons —— */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.85rem 1.5rem;
	border-radius: var(--r-btn);
	border: 1px solid transparent;
	font: inherit;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn:active {
	transform: translateY(0);
}

.btn-primary {
	background: linear-gradient(135deg, var(--sea) 0%, var(--sea-deep) 100%);
	color: #f5f9fa !important;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(14, 106, 103, 0.3);
}

.btn-primary:hover {
	box-shadow: 0 12px 28px rgba(14, 106, 103, 0.38);
	color: #fff !important;
}

.hero .btn-primary,
.cta-band .btn-primary {
	background: linear-gradient(135deg, #d4b56a 0%, var(--accent) 60%, #a8863c 100%);
	color: var(--sea-ink) !important;
	box-shadow: 0 10px 26px rgba(196, 163, 90, 0.35);
}

.hero .btn-primary:hover,
.cta-band .btn-primary:hover {
	box-shadow: 0 14px 32px rgba(196, 163, 90, 0.45);
	color: var(--sea-ink) !important;
}

.hero .btn-ghost {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(238, 246, 245, 0.4);
	color: #eef6f5 !important;
	backdrop-filter: blur(4px);
}

.hero .btn-ghost:hover {
	border-color: #eef6f5;
	background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
	background: rgba(255, 255, 255, 0.6);
	border-color: var(--line-strong);
	color: var(--ink) !important;
	text-decoration: none;
}

.btn-ghost:hover {
	border-color: var(--sea);
	color: var(--sea-deep) !important;
}

.btn-tiny {
	padding: 0.3rem 0.65rem;
	font-size: 0.8rem;
	border-radius: 6px;
}

/* —— Sections —— */
.section {
	padding: clamp(3.5rem, 8vw, 6.5rem) var(--page-gutter);
}

.page-home .section {
	padding-inline: var(--page-inline);
}

.section-alt {
	background:
		radial-gradient(600px 300px at 85% 0%, rgba(127, 176, 171, 0.14), transparent 60%),
		rgba(215, 227, 229, 0.4);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0 0 0.9rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sea);
}

.eyebrow::before {
	content: "";
	width: 2rem;
	height: 1px;
	background: var(--accent);
}

.section-head {
	max-width: 42rem;
	margin-bottom: 2.75rem;
}

.section-head h2,
.section-head h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--ink);
}

.section-head p {
	color: var(--muted);
	margin: 0;
	font-size: 1.05rem;
}

.section-head-row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: flex-start;
	max-width: none;
}

.section-head--center {
	margin-inline: auto;
	text-align: center;
}

.section-head--center .eyebrow::after {
	content: "";
	width: 2rem;
	height: 1px;
	background: var(--accent);
}

/* —— Feature cards —— */
.feature-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
}

.feature-list li {
	position: relative;
	padding: 1.9rem 1.7rem;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-card);
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	overflow: hidden;
}

.feature-list li::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--sea) 0%, var(--mist) 60%, transparent 100%);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.feature-list li:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: rgba(14, 106, 103, 0.25);
}

.feature-list li:hover::before {
	opacity: 1;
}

.feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1.1rem;
	border-radius: 12px;
	background: linear-gradient(145deg, rgba(14, 106, 103, 0.12), rgba(127, 176, 171, 0.18));
	color: var(--sea-deep);
	box-shadow: inset 0 0 0 1px rgba(14, 106, 103, 0.15);
}

.feature-icon svg {
	width: 1.4rem;
	height: 1.4rem;
}

.feature-list h3,
.steps h3 {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 550;
	margin: 0 0 0.5rem;
}

.feature-list p,
.steps p {
	margin: 0;
	color: var(--muted);
}

/* —— Steps —— */
.steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
	max-width: none;
	counter-reset: step;
}

.steps li {
	position: relative;
	display: block;
	padding: 1.9rem 1.7rem 1.7rem;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-card);
	box-shadow: var(--shadow-sm);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.steps li:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.steps li:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -1.4rem;
	width: 1.4rem;
	height: 1px;
	background: linear-gradient(90deg, var(--mist), transparent);
}

.steps span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	margin-bottom: 1rem;
	border-radius: 50%;
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--sea-deep);
	background: radial-gradient(circle at 30% 30%, rgba(196, 163, 90, 0.35), rgba(196, 163, 90, 0.12));
	box-shadow: inset 0 0 0 1px rgba(196, 163, 90, 0.4);
}

/* —— Quote —— */
.quote-section {
	padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.site-quote {
	margin: 0 auto;
	max-width: 38rem;
	text-align: center;
	border: 0;
	padding: 2.5rem 2rem;
	position: relative;
}

.site-quote::before {
	content: "“";
	position: absolute;
	top: -0.5rem;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--font-display);
	font-size: 5rem;
	line-height: 1;
	color: var(--accent);
	opacity: 0.5;
}

.site-quote p {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 3.5vw, 2.2rem);
	font-style: italic;
	line-height: 1.3;
	margin: 0 0 1rem;
	color: var(--sea-deep);
}

.site-quote footer {
	color: var(--muted);
	font-size: 0.95rem;
}

/* —— FAQ —— */
.faq-list {
	max-width: 44rem;
	display: grid;
	gap: 0.75rem;
}

.faq-item {
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--card);
	padding: 0.35rem 1.25rem;
	box-shadow: var(--shadow-sm);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
	border-color: rgba(14, 106, 103, 0.3);
	box-shadow: var(--shadow-md);
}

.faq-item summary {
	font-family: var(--font-display);
	font-size: 1.3rem;
	cursor: pointer;
	list-style: none;
	padding: 0.75rem 0;
	color: var(--ink);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: "+";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.7rem;
	height: 1.7rem;
	flex: 0 0 auto;
	border-radius: 50%;
	border: 1px solid var(--line-strong);
	color: var(--sea);
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 1rem;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-item[open] summary::after {
	content: "−";
	background: var(--sea);
	border-color: var(--sea);
	color: #fff;
}

.faq-item p {
	margin: 0 0 1rem;
	color: var(--muted);
	padding-right: 2.5rem;
	animation: rise 0.35s ease-out both;
}

/* —— Pricing —— */
.price-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
	gap: 1.4rem;
	align-items: stretch;
}

.price-grid--single {
	max-width: 30rem;
}

.price-block {
	position: relative;
	padding: 2.2rem 2rem 2rem;
	border: 1px solid var(--line);
	border-radius: var(--r-card);
	background: var(--card);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-block:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.price-block.is-featured {
	border-color: rgba(14, 106, 103, 0.45);
	background: linear-gradient(180deg, #ffffff 0%, #f4faf9 100%);
	box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(14, 106, 103, 0.2);
}

.price-block.is-featured::before {
	content: "Most popular";
	position: absolute;
	top: -0.8rem;
	left: 50%;
	transform: translateX(-50%);
	padding: 0.3rem 0.95rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #d4b56a, var(--accent));
	color: var(--sea-ink);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 6px 16px rgba(196, 163, 90, 0.4);
	white-space: nowrap;
}

.price-name {
	font-family: var(--font-display);
	font-size: 1.55rem;
	margin: 0 0 0.65rem;
	font-weight: 550;
}

.price-tag {
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 4vw, 3.2rem);
	margin: 0 0 0.5rem;
	line-height: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.45rem 0.65rem;
	color: var(--sea-deep);
}

.price-period {
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--muted);
	font-weight: 400;
}

.price-note {
	color: var(--muted);
	margin: 0 0 1.25rem;
}

.price-block ul {
	list-style: none;
	padding: 0;
	margin: 0 0 1.6rem;
	color: var(--ink);
	flex: 1;
	display: grid;
	gap: 0.55rem;
}

.price-block ul li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.95rem;
}

.price-block ul li::before {
	content: "";
	width: 1.05rem;
	height: 1.05rem;
	flex: 0 0 auto;
	margin-top: 0.18rem;
	border-radius: 50%;
	background:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230e6a67' d='M12.78 5.22a.75.75 0 0 1 0 1.06l-4.5 4.5a.75.75 0 0 1-1.06 0l-2-2a.75.75 0 1 1 1.06-1.06l1.47 1.47 3.97-3.97a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E") center / contain no-repeat,
		rgba(14, 106, 103, 0.12);
}

.price-block .btn {
	align-self: stretch;
	margin-top: auto;
}

/* —— Promos —— */
.promo-banner-list {
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0;
	display: grid;
	gap: 0.65rem;
	max-width: 48rem;
}

.promo-banner {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.85rem;
	align-items: baseline;
	padding: 0.9rem 1.15rem;
	border: 1px solid rgba(196, 163, 90, 0.45);
	border-radius: 12px;
	background: linear-gradient(120deg, rgba(196, 163, 90, 0.14), rgba(196, 163, 90, 0.05));
	color: #6d5518;
	box-shadow: var(--shadow-sm);
}

.promo-banner strong {
	font-family: var(--font-display);
	font-size: 1.25rem;
	color: #52400f;
}

.promo-pill {
	display: inline-block;
	margin: 0 0 0.75rem;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	border: 1px solid rgba(196, 163, 90, 0.55);
	background: rgba(196, 163, 90, 0.12);
	color: #6d5518;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	align-self: flex-start;
}

.promo-checkout-note {
	margin: 0.35rem 0 0;
	color: var(--sea-deep);
}

.promo-apply,
.checkout-form label.promo-apply {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 0.35rem;
}

.promo-apply input {
	accent-color: var(--sea);
	width: 1.05rem;
	height: 1.05rem;
	margin: 0;
	flex: 0 0 auto;
}

/* —— Plan picker (checkout) —— */
.plan-picker {
	border: 0;
	margin: 0 0 0.5rem;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.plan-picker legend {
	font-size: 0.9rem;
	color: var(--muted);
	margin-bottom: 0.35rem;
	padding: 0;
}

.plan-option {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.75rem;
	align-items: start;
	padding: 0.95rem 1.1rem;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.75);
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.plan-option:hover {
	border-color: rgba(14, 106, 103, 0.35);
}

.plan-option.is-selected {
	border-color: var(--sea);
	background: rgba(14, 106, 103, 0.06);
	box-shadow: inset 0 0 0 1px var(--sea), var(--shadow-sm);
}

.plan-option input {
	margin-top: 0.3rem;
	accent-color: var(--sea);
}

.plan-option-body {
	display: grid;
	gap: 0.2rem;
}

.plan-option-body strong {
	font-family: var(--font-display);
	font-size: 1.25rem;
}

.plan-option-body em {
	font-style: normal;
	color: var(--sea-deep);
}

.plan-option-body small {
	color: var(--muted);
}

/* —— CTA band —— */
.cta-band {
	position: relative;
	isolation: isolate;
	text-align: center;
	background:
		radial-gradient(ellipse 55% 70% at 50% 0%, rgba(196, 163, 90, 0.2), transparent 60%),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E"),
		linear-gradient(125deg, #0e6a67 0%, #062826 100%);
	background-size: cover, 180px 180px, cover;
	color: #eef6f5;
}

.cta-band h2 {
	font-size: clamp(2rem, 4vw, 2.9rem);
}

.cta-band p {
	color: rgba(238, 246, 245, 0.78);
	max-width: 34rem;
	margin: 0 auto 1.75rem;
}

/* —— Footer —— */
.site-footer {
	display: flex;
	justify-content: space-between;
	gap: 2rem 3rem;
	flex-wrap: wrap;
	padding: 3rem var(--page-inline) 2.5rem;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 0.95rem;
	background: rgba(255, 255, 255, 0.35);
}

.site-footer strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: var(--ink);
	margin-bottom: 0.35rem;
}

.site-footer p {
	margin: 0 0 0.5rem;
	max-width: 26rem;
}

.footer-meta {
	font-size: 0.88rem;
	opacity: 0.9;
}

.site-footer div:not(:first-child) {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.footer-heading {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--muted);
	margin: 0 0 0.35rem;
}

.site-footer a {
	text-decoration: none;
	color: var(--muted);
	transition: color 0.15s ease;
}

.site-footer a:hover {
	color: var(--sea-deep);
}

.footer-legal {
	font-size: 0.88rem;
}

/* —— Reveal on scroll —— */
.js .reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
	opacity: 1;
	transform: none;
}

.js .reveal-stagger > * {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal-stagger.is-visible > * {
	opacity: 1;
	transform: none;
}

.js .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.js .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.js .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.js .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; }

/* —— Checkout / success —— */
.checkout-section,
.success-section {
	max-width: 36rem;
	margin: 0 auto;
	width: 100%;
}

.page-checkout .section-head,
.page-success .section-head {
	margin-bottom: 1.75rem;
}

.page-checkout .section-head h1,
.page-success .section-head h1 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 2.8rem);
	color: var(--ink);
}

.page-checkout .section-head p,
.page-success .section-head p {
	color: var(--muted);
}

.checkout-form {
	display: grid;
	gap: 1rem;
	padding: 1.75rem;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-card);
	box-shadow: var(--shadow-md);
}

.checkout-form label {
	display: grid;
	gap: 0.35rem;
}

.checkout-form span {
	font-size: 0.9rem;
	color: var(--muted);
}

.checkout-form em {
	font-style: normal;
	opacity: 0.7;
}

.checkout-form input,
.checkout-form select {
	font: inherit;
	padding: 0.8rem 0.95rem;
	border: 1px solid var(--line-strong);
	border-radius: 8px;
	background: #fff;
	color: var(--ink);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.checkout-form input:focus,
.checkout-form select:focus {
	outline: none;
	border-color: var(--sea);
	box-shadow: 0 0 0 3px rgba(14, 106, 103, 0.18);
}

.form-hint {
	color: var(--muted);
	font-size: 0.9rem;
}

.flash {
	padding: 0.9rem 1.1rem;
	border: 1px solid var(--line);
	border-radius: 10px;
	margin: 0 0 1rem;
	list-style: none;
	background: rgba(255, 255, 255, 0.7);
}

.flash-error {
	border-color: rgba(170, 50, 50, 0.5);
	background: rgba(170, 50, 50, 0.07);
	color: #6d1f1f;
}

.flash-warn {
	border-color: rgba(196, 163, 90, 0.6);
	background: rgba(196, 163, 90, 0.12);
}

.flash-ok {
	border-color: rgba(14, 106, 103, 0.4);
	background: rgba(14, 106, 103, 0.08);
	color: var(--sea-deep);
}

.success-card {
	padding: 1.75rem;
	border: 1px solid var(--line);
	border-radius: var(--r-card);
	background: var(--card);
	box-shadow: var(--shadow-md);
	display: grid;
	gap: 0.85rem;
}

.success-card p {
	margin: 0;
}

.success-note,
.muted {
	color: var(--muted);
	font-size: 0.92rem;
}

/* —— Domain setup —— */
.domain-setup-section {
	max-width: 48rem;
	margin: 0 auto;
	width: 100%;
}

.domain-setup-section .section-head {
	text-align: center;
}

.domain-setup-section .section-head p {
	margin-inline: auto;
	max-width: 36rem;
}

.domain-setup-grid {
	display: grid;
	gap: 1.25rem;
	width: 100%;
}

.domain-setup-section > .flash {
	width: 100%;
	box-sizing: border-box;
}

.domain-card {
	padding: 1.5rem;
	border: 1px solid var(--line);
	border-radius: var(--r-card);
	background: var(--card);
	box-shadow: var(--shadow-sm);
}

.domain-card h2 {
	font-family: var(--font-display);
	font-size: 1.55rem;
	font-weight: 550;
	margin: 0;
}

.domain-field {
	display: grid;
	gap: 0.35rem;
}

.domain-field span {
	font-size: 0.88rem;
	color: var(--muted);
}

.domain-field input {
	width: 100%;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--line-strong);
	border-radius: 8px;
	background: #fff;
	font: inherit;
}

.domain-steps {
	margin: 0.25rem 0 0;
	padding-left: 1.25rem;
	display: grid;
	gap: 0.55rem;
}

.domain-registrars {
	margin: 0.35rem 0 0;
	padding-left: 1.2rem;
}

.domain-status-active {
	color: var(--sea-deep);
}

.domain-status-pending,
.domain-status-failed {
	color: #8a6e12;
}

/* —— Legal / help pages —— */
.legal-section,
.help-section {
	max-width: 42rem;
	margin: 0 auto;
	width: 100%;
}

.legal-body {
	display: grid;
	gap: 1rem;
}

.legal-body h2 {
	font-family: var(--font-display);
	font-size: 1.4rem;
	margin: 1.25rem 0 0;
}

.legal-body h2:first-child {
	margin-top: 0;
}

.legal-body p {
	color: var(--ink);
	line-height: 1.65;
	margin: 0;
}

.checkout-legal-note {
	font-size: 0.85rem;
	color: var(--muted);
}

.checkout-legal-note a {
	color: var(--sea-deep);
}

.status-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	color: var(--muted);
	box-shadow: var(--shadow-sm);
}

.status-pill-dot {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: #2e9e63;
	box-shadow: 0 0 0 3px rgba(46, 158, 99, 0.18);
}

.checklist {
	display: grid;
	gap: 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: checklist;
}

.checklist li {
	counter-increment: checklist;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.85rem;
	align-items: start;
	padding: 1rem 1.15rem;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--card);
	box-shadow: var(--shadow-sm);
}

.checklist li::before {
	content: counter(checklist);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.7rem;
	height: 1.7rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--sea), var(--sea-deep));
	color: #fff;
	font-size: 0.85rem;
	font-family: var(--font-display);
}

.checklist strong {
	display: block;
	margin-bottom: 0.2rem;
}

.checklist p {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
}

.account-grid {
	display: grid;
	gap: 1.25rem;
	max-width: 40rem;
}

/* —— Shared tables / status (admin uses these too) —— */
.table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.6);
}

.orders-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
}

.orders-table th,
.orders-table td {
	text-align: left;
	padding: 0.85rem 1rem;
	border-bottom: 1px solid var(--line);
	vertical-align: top;
}

.orders-table tbody tr:last-child td {
	border-bottom: 0;
}

.orders-table tbody tr {
	transition: background 0.15s ease;
}

.orders-table tbody tr:hover {
	background: rgba(14, 106, 103, 0.045);
}

.orders-table th {
	font-weight: 500;
	color: var(--muted);
	font-size: 0.8rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: rgba(215, 227, 229, 0.5);
	position: sticky;
	top: 0;
}

.status {
	display: inline-block;
	padding: 0.2rem 0.6rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 500;
	background: rgba(255, 255, 255, 0.6);
}

.status-provisioned,
.status-provisioned_stub {
	border-color: rgba(14, 106, 103, 0.4);
	color: var(--sea-deep);
	background: rgba(14, 106, 103, 0.08);
}

.status-pending_payment {
	border-color: rgba(196, 163, 90, 0.5);
	color: #8a6e12;
	background: rgba(196, 163, 90, 0.1);
}

.status-awaiting_provision {
	border-color: rgba(90, 122, 154, 0.5);
	color: #2f4a66;
	background: rgba(90, 122, 154, 0.1);
}

.status-provision_failed {
	border-color: rgba(170, 50, 50, 0.5);
	color: #6d1f1f;
	background: rgba(170, 50, 50, 0.07);
}

/* —— Animations —— */
@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-9px);
	}
}

@keyframes hero-drift {
	from {
		transform: scale(1.02) translate3d(0, 0, 0);
	}
	to {
		transform: scale(1.06) translate3d(-1.2%, -0.8%, 0);
	}
}

/* —— Responsive —— */
@media (max-width: 1020px) {
	.hero {
		grid-template-columns: 1fr;
		align-content: center;
		gap: 3rem;
	}

	.hero-visual {
		justify-self: start;
		max-width: 26rem;
	}

	.hero-chip-1 {
		right: 0.5rem;
	}

	.hero-chip-2 {
		left: -0.5rem;
	}

	.steps li:not(:last-child)::after {
		display: none;
	}
}

@media (max-width: 900px) {
	.feature-list,
	.steps {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 860px) {
	.nav-toggle {
		display: flex;
	}

	.nav {
		position: fixed;
		inset: 0;
		padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
		background: rgba(242, 246, 246, 0.98);
		transform: translateY(-110%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.35s ease, opacity 0.3s ease;
		z-index: 1;
		font-size: 1.1rem;
	}

	.site-header.is-nav-open .nav {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.hero {
		min-height: calc(100svh - var(--header-h));
	}

	.hero-visual {
		width: 100%;
	}

	.hero-chip {
		font-size: 0.76rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.js .reveal,
	.js .reveal-stagger > * {
		opacity: 1;
		transform: none;
	}
}
