/* ==========================================================================
   Sunshine Aloha — island-luxury design system
   Deep ocean + sunlit gold + volcanic sand. No framework, no build step.
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
	font-family: 'Fraunces';
	src: url('../fonts/fraunces-var.woff2') format('woff2-variations');
	font-weight: 300 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Manrope';
	src: url('../fonts/manrope-var.woff2') format('woff2-variations');
	font-weight: 300 800;
	font-style: normal;
	font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
	/* Ocean */
	--ink:        #05141b;
	--ink-2:      #0a222c;
	--deep:       #0f3442;
	--deep-2:     #14485a;

	/* Water */
	--teal:       #1a8c93;
	--teal-lt:    #38b6b0;
	--teal-glow:  rgba(56, 182, 176, .35);

	/* Sun */
	--gold:       #e9a93c;
	--gold-lt:    #f6c76e;
	--gold-dp:    #b8791f;

	/* Land */
	--sand:       #f6f1e6;
	--sand-2:     #ece3d2;
	--ivory:      #fffdf8;

	--text:       #10262f;
	--text-soft:  #4b6470;
	--on-dark:    #eef6f7;
	--on-dark-soft: #a9c3ca;

	--line:       rgba(16, 38, 47, .12);
	--line-dark:  rgba(238, 246, 247, .14);

	--r-sm: 10px;
	--r:    18px;
	--r-lg: 28px;
	--r-xl: 40px;

	--shadow-sm: 0 2px 8px rgba(5, 20, 27, .06);
	--shadow:    0 18px 44px -18px rgba(5, 20, 27, .28);
	--shadow-lg: 0 40px 90px -32px rgba(5, 20, 27, .45);

	--display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
	--body:    'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

	--wrap: 1240px;
	--gut:  clamp(1.15rem, 4vw, 2.5rem);

	--ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 6rem;
	overflow-x: clip;
}

body {
	font-family: var(--body);
	font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
	line-height: 1.68;
	color: var(--text);
	background: var(--ivory);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

/* <picture> is only a source-selection wrapper. Take it out of the box tree so
   the sizing rules written for `.container img` resolve against the container
   instead of an auto-height inline box. */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--teal-lt); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
	font-family: var(--display);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -.022em;
	font-variation-settings: 'SOFT' 20, 'WONK' 0;
	text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 1.5rem + 4.6vw, 5.1rem); }
h2 { font-size: clamp(2rem, 1.25rem + 3vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem); letter-spacing: -.015em; }

p { text-wrap: pretty; }

.lede {
	font-size: clamp(1.08rem, 1rem + .45vw, 1.32rem);
	line-height: 1.62;
	color: var(--text-soft);
	max-width: 60ch;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .7rem;
	font-family: var(--body);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold-dp);
	margin-bottom: 1.1rem;
}
.eyebrow::before {
	content: '';
	width: 2.2rem;
	height: 2px;
	background: linear-gradient(90deg, var(--gold), transparent);
	border-radius: 2px;
}
.on-dark .eyebrow, .sec--dark .eyebrow { color: var(--gold-lt); }

/* Ampersands set in the body face — Fraunces' ornate '&' misreads as a glyph. */
.amp {
	font-family: var(--body);
	font-weight: 500;
	font-size: .88em;
	letter-spacing: 0;
}

/* Gold-inked word inside a heading */
.gold { color: var(--gold); }
.italic-accent {
	font-style: italic;
	font-variation-settings: 'SOFT' 60, 'WONK' 1;
	color: var(--gold);
}

/* ---------- Layout ---------- */
.wrap {
	width: min(100% - (var(--gut) * 2), var(--wrap));
	margin-inline: auto;
}
.wrap--wide { width: min(100% - (var(--gut) * 2), 1480px); }
.wrap--narrow { width: min(100% - (var(--gut) * 2), 860px); }

.sec { padding-block: clamp(4.5rem, 3rem + 7vw, 9rem); position: relative; }
.sec--tight { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }

.sec--sand { background: var(--sand); }
.sec--dark {
	overflow: hidden;
	background:
		radial-gradient(120% 90% at 12% 0%, var(--deep-2) 0%, transparent 55%),
		linear-gradient(165deg, var(--ink-2) 0%, var(--ink) 62%, #041017 100%);
	color: var(--on-dark);
}
.sec--dark h1, .sec--dark h2, .sec--dark h3 { color: var(--ivory); }
.sec--dark p { color: var(--on-dark-soft); }
.sec--dark .lede { color: var(--on-dark-soft); }

.sec-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }

/* Fine gold hairline used as a section separator */
.rule {
	height: 1px;
	border: 0;
	background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
	opacity: .35;
	margin-block: 0;
}

/* ---------- Decorative palm fronds ---------- */
.frond {
	position: absolute;
	width: clamp(260px, 34vw, 620px);
	height: auto;
	pointer-events: none;
	user-select: none;
	z-index: 0;
	opacity: .5;
	filter: drop-shadow(0 30px 45px rgba(5, 20, 27, .3));
}
.frond--tl { top: -8%;  left: -9%;  transform: rotate(4deg); }
.frond--tr { top: -10%; right: -9%; transform: scaleX(-1) rotate(4deg); }
.frond--bl { bottom: -12%; left: -10%; transform: rotate(-168deg); }
.frond--br { bottom: -12%; right: -10%; transform: scaleX(-1) rotate(-168deg); }
.sec--dark .frond { opacity: .3; }
@media (max-width: 780px) {
	.frond { width: 58vw; opacity: .34; }
	.frond--tr, .frond--br { display: none; }
}

/* Grain — adds depth to the flat dark blocks */
.sec--dark::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: .5;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
.sec > .wrap, .sec > .wrap--wide, .sec > .wrap--narrow { position: relative; z-index: 2; }

/* ---------- Buttons ---------- */
.btn {
	--btn-bg: var(--gold);
	--btn-fg: var(--ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .6rem;
	padding: 1.02rem 1.9rem;
	border: 0;
	border-radius: 999px;
	background: var(--btn-bg);
	color: var(--btn-fg);
	font-weight: 700;
	font-size: .95rem;
	letter-spacing: .01em;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease;
	box-shadow: 0 12px 30px -12px rgba(233, 169, 60, .8);
	white-space: nowrap;
}
.btn::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(115deg, var(--gold-lt), var(--gold));
	opacity: 0;
	transition: opacity .35s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -14px rgba(233, 169, 60, .95); }
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(-1px); }

.btn--ghost {
	--btn-bg: transparent;
	--btn-fg: var(--ivory);
	border: 1.5px solid rgba(238, 246, 247, .38);
	box-shadow: none;
	backdrop-filter: blur(6px);
}
.btn--ghost::after { background: rgba(238, 246, 247, .1); }
.btn--ghost:hover { box-shadow: none; border-color: var(--gold); color: var(--ivory); }

.btn--dark { --btn-bg: var(--deep); --btn-fg: var(--ivory); box-shadow: var(--shadow); }
.btn--dark::after { background: linear-gradient(115deg, var(--deep-2), var(--deep)); }

.btn--lg { padding: 1.18rem 2.3rem; font-size: 1rem; }
.btn svg { width: 1.1em; height: 1.1em; fill: currentColor; flex: none; }

/* Text link with animated gold underline */
.link-u {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	font-weight: 700;
	font-size: .92rem;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--teal);
	padding-bottom: 3px;
	background-image: linear-gradient(var(--gold), var(--gold));
	background-size: 0% 2px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size .4s var(--ease), color .3s ease;
}
.link-u:hover { background-size: 100% 2px; color: var(--gold-dp); }
.sec--dark .link-u { color: var(--gold-lt); }

/* ---------- Stars ---------- */
.stars { display: inline-flex; gap: 2px; }
.stars svg { fill: var(--gold); width: 16px; height: 16px; }
.stars--lg svg { width: 21px; height: 21px; }

/* ==========================================================================
   Header
   ========================================================================== */
.topbar {
	background: var(--ink);
	color: var(--on-dark-soft);
	font-size: .84rem;
	letter-spacing: .02em;
	border-bottom: 1px solid var(--line-dark);
}
.topbar__in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 42px;
	flex-wrap: wrap;
}
.topbar__badges { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar__badge { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__badge svg { width: 15px; height: 15px; fill: var(--gold); flex: none; }
.topbar a:hover { color: var(--gold-lt); }
@media (max-width: 900px) { .topbar { display: none; } }

.site-head {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(255, 253, 248, .82);
	backdrop-filter: saturate(180%) blur(18px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow .3s ease, background .3s ease;
}
.site-head.is-stuck { box-shadow: 0 10px 34px -22px rgba(5, 20, 27, .5); }
.site-head__in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 82px;
}

.brand { display: flex; align-items: center; gap: .8rem; flex: none; }
.brand__mark { width: 46px; height: 46px; flex: none; }
.brand__txt { display: grid; line-height: 1.05; }
.brand__name {
	font-family: var(--display);
	font-weight: 700;
	font-size: 1.16rem;
	letter-spacing: -.02em;
	color: var(--ink);
}
.brand__sub {
	font-size: .66rem;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--teal);
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); }
.nav a {
	font-size: .93rem;
	font-weight: 600;
	color: var(--text);
	position: relative;
	padding-block: .35rem;
}
.nav a::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 100%; height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .35s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.head-cta { display: flex; align-items: center; gap: .8rem; flex: none; }
.head-phone {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	font-weight: 800;
	color: var(--ink);
	font-size: 1.02rem;
}
.head-phone svg { width: 18px; height: 18px; fill: var(--teal); }

.burger {
	display: none;
	width: 46px; height: 46px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: transparent;
	cursor: pointer;
	place-items: center;
}
.burger span {
	display: block;
	width: 20px; height: 2px;
	background: var(--ink);
	border-radius: 2px;
	position: relative;
	transition: background .2s;
}
.burger span::before, .burger span::after {
	content: ''; position: absolute; left: 0;
	width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
	transition: transform .35s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px) {
	.nav, .head-cta .btn { display: none; }
	.burger { display: grid; }
	.site-head__in { min-height: 70px; }
}
@media (max-width: 620px) {
	/* The sticky call bar carries the number down here. */
	.head-phone { display: none; }
	.brand__mark { width: 38px; height: 38px; }
	.brand__name { font-size: 1.02rem; }
}

/* Mobile drawer */
.drawer {
	position: fixed;
	inset: 0 0 0 auto;
	width: min(88vw, 380px);
	background: var(--ink);
	color: var(--on-dark);
	z-index: 90;
	padding: 5.5rem 2rem 2rem;
	transform: translateX(100%);
	transition: transform .5s var(--ease);
	overflow-y: auto;
	box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer a { display: block; padding: .95rem 0; border-bottom: 1px solid var(--line-dark); font-size: 1.06rem; font-weight: 600; }
.drawer a:hover { color: var(--gold-lt); }
.drawer .btn { width: 100%; margin-top: 1.6rem; }
.drawer__close {
	position: absolute; top: 1.4rem; right: 1.4rem;
	width: 42px; height: 42px; border-radius: 50%;
	border: 1px solid var(--line-dark); background: transparent; color: var(--ivory);
	font-size: 1.4rem; cursor: pointer; line-height: 1;
}
.scrim {
	position: fixed; inset: 0; z-index: 85;
	background: rgba(5, 20, 27, .55);
	backdrop-filter: blur(3px);
	opacity: 0; visibility: hidden;
	transition: opacity .4s ease, visibility .4s;
}
.scrim.is-open { opacity: 1; visibility: visible; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	position: relative;
	min-height: clamp(600px, 88vh, 940px);
	display: grid;
	align-items: center;
	isolation: isolate;
	overflow: hidden;
	color: var(--ivory);
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.hero::before {
	content: '';
	position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(180deg, rgba(5, 20, 27, .72) 0%, rgba(5, 20, 27, .3) 34%, rgba(5, 20, 27, .55) 68%, rgba(5, 20, 27, .92) 100%),
		linear-gradient(100deg, rgba(5, 20, 27, .88) 0%, rgba(5, 20, 27, .34) 52%, transparent 78%);
}
.hero__in { padding-block: clamp(4.5rem, 12vh, 8rem); position: relative; z-index: 2; }
@media (max-width: 780px) {
	.hero::before {
		background:
			linear-gradient(180deg, rgba(5, 20, 27, .74) 0%, rgba(5, 20, 27, .5) 30%, rgba(5, 20, 27, .82) 62%, rgba(5, 20, 27, .96) 100%);
	}
	.hero__media img { object-position: 50% 38%; }
}
.hero h1 { color: var(--ivory); max-width: 16ch; }
.hero h1 .italic-accent { color: var(--gold-lt); }
.hero__lede {
	margin-top: 1.5rem;
	max-width: 52ch;
	font-size: clamp(1.06rem, 1rem + .5vw, 1.3rem);
	color: rgba(238, 246, 247, .9);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.4rem; }

/* Google rating chip */
.rating-chip {
	display: inline-flex;
	align-items: center;
	gap: .85rem;
	padding: .62rem 1.15rem .62rem .72rem;
	border-radius: 999px;
	background: rgba(255, 253, 248, .1);
	border: 1px solid rgba(238, 246, 247, .22);
	backdrop-filter: blur(14px);
	margin-bottom: 1.6rem;
	font-size: .88rem;
	color: var(--ivory);
}
.rating-chip__g {
	width: 30px; height: 30px; border-radius: 50%;
	background: var(--ivory);
	display: grid; place-items: center; flex: none;
}
.rating-chip__g svg { width: 17px; height: 17px; }
.rating-chip b { font-size: 1.02rem; }
.rating-chip .stars svg { width: 14px; height: 14px; }
.rating-chip span { color: rgba(238, 246, 247, .78); }

/* Hero service cards, sitting over the fold like the competitor's — but calmer */
.hero-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: clamp(2.5rem, 5vw, 4rem);
}
.hero-card {
	position: relative;
	border-radius: var(--r-lg);
	overflow: hidden;
	min-height: 250px;
	display: flex;
	align-items: flex-end;
	isolation: isolate;
	border: 1px solid rgba(238, 246, 247, .16);
	transition: transform .5s var(--ease), border-color .4s ease;
}
.hero-card img {
	position: absolute; inset: 0; z-index: -2;
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .8s var(--ease);
}
.hero-card::after {
	content: ''; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(180deg, transparent 28%, rgba(5, 20, 27, .82) 82%);
}
.hero-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.hero-card:hover img { transform: scale(1.07); }
.hero-card__body { padding: 1.5rem; }
.hero-card__kicker {
	font-size: .68rem; font-weight: 800; letter-spacing: .17em;
	text-transform: uppercase; color: var(--gold-lt); display: block; margin-bottom: .35rem;
}
.hero-card h3 { font-size: 1.22rem; color: var(--ivory); }

@media (max-width: 900px) {
	/* A swipe strip rather than a stack: keeps the hero short enough that the
	   photograph still reads as a photograph on a phone. */
	.hero-cards {
		display: flex;
		gap: .75rem;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		margin-inline: calc(var(--gut) * -1);
		padding-inline: var(--gut);
		padding-bottom: .35rem;
	}
	.hero-cards::-webkit-scrollbar { display: none; }
	.hero-card {
		flex: 0 0 min(74%, 300px);
		min-height: 176px;
		scroll-snap-align: start;
	}
	.hero-card__body { padding: 1.1rem; }
	.hero-card h3 { font-size: 1.08rem; }
}
@media (max-width: 620px) {
	.hero { min-height: clamp(560px, 82vh, 760px); }
	.hero__in { padding-block: 2.75rem 2rem; }
	.hero__lede { margin-top: 1.1rem; }
	.hero__cta { margin-top: 1.6rem; gap: .65rem; }
	.hero__cta .btn { flex: 1 1 auto; padding-inline: 1.2rem; }
	.rating-chip { margin-bottom: 1.1rem; }
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust {
	background: var(--ink);
	border-block: 1px solid var(--line-dark);
	padding-block: 1.5rem;
	color: var(--on-dark);
}
.trust__in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1rem, 3vw, 2.5rem);
	flex-wrap: wrap;
}
.trust__item {
	display: inline-flex; align-items: center; gap: .7rem;
	font-size: .9rem; font-weight: 600; letter-spacing: .01em;
}
.trust__item svg { width: 21px; height: 21px; fill: var(--gold); flex: none; }
.trust__item small { display: block; font-weight: 500; color: var(--on-dark-soft); font-size: .78rem; letter-spacing: .02em; }

/* ==========================================================================
   Services
   ========================================================================== */
.svc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
	gap: clamp(1rem, 2vw, 1.6rem);
}
.svc {
	position: relative;
	background: var(--ivory);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s ease;
}
.svc:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(233, 169, 60, .6); }
.svc__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.06); }
.svc__media::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(5, 20, 27, .5));
}
.svc__body { padding: 1.6rem 1.6rem 1.75rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.svc__body p { color: var(--text-soft); font-size: .97rem; }
.svc__body .link-u { margin-top: auto; padding-top: .6rem; }
.svc--feat { grid-column: span 1; }

/* Numbered index in the card corner */
.svc__no {
	position: absolute; top: 1rem; right: 1.15rem;
	font-family: var(--display); font-size: 2.6rem; font-weight: 300;
	color: rgba(255, 253, 248, .85); line-height: 1;
	text-shadow: 0 2px 12px rgba(5, 20, 27, .5);
}

/* ==========================================================================
   Signature quote (Angel's own line from the business card)
   ========================================================================== */
.quote-block { position: relative; overflow: hidden; }
.quote-block__in { text-align: center; max-width: 34ch; margin-inline: auto; }
.quote-mark {
	font-family: var(--display);
	font-size: clamp(5rem, 12vw, 9rem);
	line-height: .6;
	color: var(--gold);
	opacity: .45;
	display: block;
	margin-bottom: .5rem;
}
.quote-block blockquote {
	font-family: var(--display);
	font-size: clamp(1.6rem, 1.1rem + 2.1vw, 3rem);
	line-height: 1.22;
	letter-spacing: -.02em;
	color: var(--ivory);
	font-variation-settings: 'SOFT' 40, 'WONK' 1;
	max-width: 26ch;
	margin-inline: auto;
}
.quote-block cite {
	display: block;
	margin-top: 2rem;
	font-style: normal;
	font-size: .84rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--gold-lt);
}
.quote-block cite small {
	display: block;
	margin-top: .35rem;
	letter-spacing: .06em;
	text-transform: none;
	font-weight: 500;
	color: var(--on-dark-soft);
	font-size: .85rem;
}

/* ==========================================================================
   Process
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(1.2rem, 2.4vw, 2.2rem); }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
	content: '';
	position: absolute; top: 1.05rem; left: 0; right: 0;
	height: 1px; background: var(--line-dark);
}
.step__n {
	font-family: var(--display);
	font-size: 2.1rem; font-weight: 300; line-height: 1;
	color: var(--gold);
	position: absolute; top: 0; left: 0;
	background: var(--ink-2); padding-right: .8rem;
}
.sec--sand .step__n { background: var(--sand); }
.sec--sand .step::before { background: var(--line); }
.step h3 { margin-bottom: .55rem; }
.step p { font-size: .96rem; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.rev-head {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 4vw, 3.4rem);
}
.rev-score {
	display: flex; align-items: center; gap: 1.15rem;
	padding: 1.15rem 1.6rem;
	background: var(--ivory);
	border: 1px solid var(--line);
	border-radius: var(--r);
	box-shadow: var(--shadow-sm);
	flex: none;
}
.rev-score__num { font-family: var(--display); font-size: 3rem; line-height: .9; font-weight: 600; color: var(--ink); }
.rev-score__meta { font-size: .87rem; color: var(--text-soft); }
.rev-score__meta strong { display: block; color: var(--text); font-weight: 700; }

.rev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.3rem; }
.rev {
	background: var(--ivory);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 1.85rem 1.75rem;
	display: flex; flex-direction: column; gap: 1rem;
	position: relative;
	transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.rev:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.rev p { font-size: .99rem; color: var(--text); line-height: 1.62; }
.rev__foot { display: flex; align-items: center; gap: .85rem; margin-top: auto; padding-top: .4rem; }
.rev__av {
	width: 42px; height: 42px; border-radius: 50%; flex: none;
	display: grid; place-items: center;
	background: linear-gradient(140deg, var(--teal), var(--deep));
	color: var(--ivory); font-weight: 800; font-size: 1rem;
	font-family: var(--body);
}
.rev__who { line-height: 1.3; }
.rev__who b { font-size: .96rem; }
.rev__who small { display: block; color: var(--text-soft); font-size: .8rem; }
.rev__g { position: absolute; top: 1.5rem; right: 1.5rem; width: 18px; height: 18px; opacity: .5; }

/* What customers mention — the GBP topic chips */
.topics { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.2rem; justify-content: center; }
.topic {
	display: inline-flex; align-items: center; gap: .5rem;
	padding: .5rem 1rem;
	border-radius: 999px;
	background: var(--ivory);
	border: 1px solid var(--line);
	font-size: .87rem; font-weight: 600;
}
.topic b { color: var(--teal); font-weight: 800; }

/* ==========================================================================
   Areas
   ========================================================================== */
.areas-layout {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}
@media (max-width: 900px) { .areas-layout { grid-template-columns: 1fr; } }

.area-chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2rem; }
.area-chip {
	padding: .55rem 1.05rem;
	border-radius: 999px;
	border: 1px solid var(--line-dark);
	font-size: .9rem;
	font-weight: 600;
	color: var(--on-dark);
	transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s var(--ease);
}
.area-chip:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }

.island {
	position: relative;
	border-radius: var(--r-xl);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid var(--line-dark);
	box-shadow: var(--shadow-lg);
}
.island img { width: 100%; height: 100%; object-fit: cover; }
.island__tag {
	position: absolute; left: 1.4rem; bottom: 1.4rem;
	background: rgba(5, 20, 27, .72);
	backdrop-filter: blur(12px);
	border: 1px solid var(--line-dark);
	border-radius: var(--r);
	padding: .85rem 1.25rem;
	color: var(--ivory);
}
.island__tag b { display: block; font-family: var(--display); font-size: 1.2rem; }
.island__tag small { color: var(--on-dark-soft); font-size: .82rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 880px; margin-inline: auto; }
.faq details {
	border-bottom: 1px solid var(--line);
	padding: 0;
}
.faq summary {
	list-style: none;
	cursor: pointer;
	padding: 1.5rem 3.2rem 1.5rem 0;
	position: relative;
	font-family: var(--display);
	font-size: clamp(1.08rem, 1rem + .45vw, 1.34rem);
	font-weight: 600;
	letter-spacing: -.012em;
	transition: color .3s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--teal); }
.faq summary::after {
	content: '';
	position: absolute; right: .4rem; top: 50%;
	width: 13px; height: 13px;
	border-right: 2px solid var(--gold);
	border-bottom: 2px solid var(--gold);
	transform: translateY(-70%) rotate(45deg);
	transition: transform .4s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__a { padding: 0 3.2rem 1.7rem 0; color: var(--text-soft); }
.faq details[open] .faq__a { animation: sa-fade .45s var(--ease) both; }

@keyframes sa-fade {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: none; }
}

/* ==========================================================================
   Quote / contact
   ========================================================================== */
.quote-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: start;
}
@media (max-width: 940px) { .quote-layout { grid-template-columns: 1fr; } }

.form-card {
	background: var(--ivory);
	border-radius: var(--r-xl);
	padding: clamp(1.75rem, 3.6vw, 2.9rem);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--line);
}
.field { display: grid; gap: .45rem; margin-bottom: 1.05rem; }
.field label { font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text-soft); }
.field input, .field select, .field textarea {
	width: 100%;
	padding: .9rem 1.05rem;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	background: #fff;
	transition: border-color .3s ease, box-shadow .3s ease;
}
.field textarea { min-height: 122px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
	outline: none;
	border-color: var(--teal);
	box-shadow: 0 0 0 4px var(--teal-glow);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field--row { grid-template-columns: 1fr; } }
.form-card .btn { width: 100%; margin-top: .6rem; }
.form-note { font-size: .82rem; color: var(--text-soft); margin-top: .9rem; text-align: center; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert {
	padding: .95rem 1.2rem;
	border-radius: var(--r-sm);
	margin-bottom: 1.2rem;
	font-size: .93rem;
	font-weight: 600;
}
.alert--ok  { background: rgba(56, 182, 176, .13); border: 1px solid rgba(26, 140, 147, .4); color: #0c5a5e; }
.alert--err { background: rgba(214, 84, 61, .1);  border: 1px solid rgba(214, 84, 61, .35); color: #92351f; }

.contact-list { display: grid; gap: 1.15rem; margin-top: 2.2rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1rem; }
.contact-row__ic {
	width: 44px; height: 44px; border-radius: 13px; flex: none;
	display: grid; place-items: center;
	background: rgba(233, 169, 60, .14);
	border: 1px solid rgba(233, 169, 60, .3);
}
.contact-row__ic svg { width: 19px; height: 19px; fill: var(--gold); }
.contact-row b { display: block; font-size: 1.04rem; }
.contact-row small { color: var(--on-dark-soft); font-size: .86rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 700; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-foot { background: var(--ink); color: var(--on-dark-soft); position: relative; overflow: hidden; }
.foot-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: clamp(1.8rem, 3.5vw, 3.2rem);
	padding-block: clamp(3.2rem, 6vw, 5rem);
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

.foot-grid h4 {
	font-family: var(--body);
	font-size: .78rem; font-weight: 800; letter-spacing: .18em;
	text-transform: uppercase; color: var(--gold-lt); margin-bottom: 1.1rem;
}
.foot-links { display: grid; gap: .62rem; }
.foot-links a { font-size: .94rem; transition: color .25s ease, transform .25s var(--ease); }
.foot-links a:hover { color: var(--gold-lt); transform: translateX(3px); }
.foot-about p { font-size: .94rem; max-width: 34ch; margin-top: 1rem; }
.foot-brand { display: flex; align-items: center; gap: .8rem; }
.foot-brand .brand__name { color: var(--ivory); }
.socials { display: flex; gap: .6rem; margin-top: 1.4rem; }
.socials a {
	width: 40px; height: 40px; border-radius: 50%;
	border: 1px solid var(--line-dark);
	display: grid; place-items: center;
	transition: background .3s ease, border-color .3s ease, transform .3s var(--ease);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.socials a:hover svg { fill: var(--ink); }
.socials svg { width: 17px; height: 17px; fill: var(--on-dark-soft); transition: fill .3s ease; }

.foot-bottom {
	border-top: 1px solid var(--line-dark);
	padding-block: 1.5rem;
	display: flex; justify-content: space-between; align-items: center;
	gap: 1rem; flex-wrap: wrap;
	font-size: .84rem;
}
.foot-bottom a:hover { color: var(--gold-lt); }

/* Sticky mobile call bar */
.callbar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
	display: none;
	background: rgba(5, 20, 27, .93);
	backdrop-filter: blur(14px);
	border-top: 1px solid var(--line-dark);
	padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom));
	gap: .6rem;
}
.callbar .btn { flex: 1; padding: .92rem 1rem; font-size: .92rem; }
@media (max-width: 780px) { .callbar { display: flex; } body { padding-bottom: 78px; } }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
	/* Scoped to .js so the page stays fully visible if the script never runs. */
	.js .reveal { opacity: 0; transform: translateY(22px); }
	.js .reveal.is-in {
		opacity: 1; transform: none;
		transition: opacity .8s var(--ease), transform .8s var(--ease);
		transition-delay: var(--d, 0ms);
	}
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- Interior pages ---------- */
.page-hero {
	position: relative;
	padding-block: clamp(5rem, 12vh, 8rem) clamp(3rem, 6vh, 4.5rem);
	background:
		radial-gradient(110% 80% at 80% 0%, var(--deep-2) 0%, transparent 58%),
		linear-gradient(160deg, var(--ink-2), var(--ink));
	color: var(--ivory);
	overflow: hidden;
}
.page-hero h1 { color: var(--ivory); max-width: 20ch; }
.crumbs { font-size: .85rem; color: var(--on-dark-soft); margin-bottom: 1.2rem; }
.crumbs a:hover { color: var(--gold-lt); }

.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { margin-top: 2.6rem; }
.prose h3 { margin-top: 2rem; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: .5rem; }
.prose a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: var(--r); margin-block: 1.8rem; }
.prose blockquote {
	border-left: 3px solid var(--gold);
	padding-left: 1.4rem;
	font-family: var(--display);
	font-size: 1.28rem;
	font-style: italic;
}
