/* ==========================================================================
   Wave Websites — Global Stylesheet
   Built to Flow. Designed to Grow.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
	/* Sky */
	--sky-50:  #f0f9ff;
	--sky-100: #e0f2fe;
	--sky-200: #bae6fd;
	--sky-300: #7dd3fc;
	--sky-400: #38bdf8;
	--sky-500: #0ea5e9;
	--sky-600: #0284c7;
	--sky-700: #0369a1;
	--sky-800: #075985;
	--sky-900: #0c4a6e;
	--sky-950: #082f49;

	/* Cyan */
	--cyan-50:  #ecfeff;
	--cyan-100: #cffafe;
	--cyan-200: #a5f3fc;
	--cyan-300: #67e8f9;
	--cyan-400: #22d3ee;
	--cyan-500: #06b6d4;
	--cyan-700: #0e7490;

	/* Surfaces */
	--shell: #f8fbfd;
	--white: #ffffff;

	/* Type */
	--font-display: "Sora", sans-serif;
	--font-body: "DM Sans", sans-serif;

	/* Structure */
	--header-h: 72px;
	--shadow-card: 0 20px 50px -30px rgba(2, 132, 199, 0.4);
	--shadow-lift: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	border: 0 solid #e5e7eb;
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-h);
}

body {
	background-color: var(--shell);
	color: var(--sky-950);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-size: inherit;
	font-weight: inherit;
}

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

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

button {
	background: none;
	color: inherit;
	font: inherit;
	cursor: pointer;
}

ul {
	list-style: none;
}

::selection {
	background: var(--cyan-300);
	color: var(--sky-950);
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.shell {
	margin-inline: auto;
	max-width: 80rem;
	padding-inline: 1.25rem;
}

.wrap {
	margin-inline: auto;
	max-width: 72rem;
	padding-inline: 1.25rem;
}

.section {
	padding-block: 6rem;
}

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

.section--deep {
	position: relative;
	background-image: linear-gradient(to bottom, var(--sky-950), var(--sky-800));
	color: var(--white);
}

.section--navy {
	position: relative;
	overflow: hidden;
	background-color: var(--sky-950);
	color: var(--white);
}

/* Section heading block */
.section-head {
	margin-inline: auto;
	max-width: 42rem;
	text-align: center;
}

.eyebrow {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.25rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sky-500);
}

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

.section-title {
	margin-top: 0.75rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 2.25rem;
	line-height: 2.5rem;
	letter-spacing: -0.025em;
	color: var(--sky-950);
}

.section--deep .section-title,
.section--navy .section-title { color: var(--white); }

.section-sub {
	margin-top: 1rem;
	line-height: 1.625;
	color: rgba(12, 74, 110, 0.7);
}

.section--deep .section-sub,
.section--navy .section-sub { color: rgba(224, 242, 254, 0.8); }

.grid-body {
	margin-top: 3.5rem;
	display: grid;
	gap: 1.5rem;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 9999px;
	padding: 1rem 1.75rem;
	font-weight: 600;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	white-space: nowrap;
}

.btn svg { flex: none; }

.btn--white {
	background-color: var(--white);
	color: var(--sky-900);
}
.btn--white:hover { background-color: var(--cyan-50); }

.btn--white-sky {
	background-color: var(--white);
	color: var(--sky-700);
}
.btn--white-sky:hover { background-color: var(--sky-50); }

.btn--sky {
	background-color: var(--sky-600);
	color: var(--white);
}
.btn--sky:hover { background-color: var(--sky-700); }

.btn--cyan {
	background-color: var(--cyan-400);
	color: var(--sky-950);
}
.btn--cyan:hover { background-color: var(--cyan-300); }

.btn--outline-light {
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--white);
}
.btn--outline-light:hover { background-color: rgba(255, 255, 255, 0.1); }

.btn--outline-light-40 {
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: var(--white);
}
.btn--outline-light-40:hover { background-color: rgba(255, 255, 255, 0.1); }

.btn--outline-sky {
	border: 1px solid var(--sky-300);
	background-color: var(--white);
	color: var(--sky-600);
}
.btn--outline-sky:hover { background-color: var(--sky-50); }

.btn .icon-cyan { color: var(--cyan-300); }

.btn--arrow .arrow { transition: transform 0.15s ease; }
.btn--arrow:hover .arrow { transform: translateX(0.25rem); }

.btn-row {
	margin-top: 2.25rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
}

.btn-row--center { align-items: center; }

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background-color: transparent;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
	background-color: rgba(255, 255, 255, 0.9);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Inner pages open on a light band, so the bar is solid from the start. */
.site-header--solid {
	background-color: rgba(255, 255, 255, 0.9);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.header-bar {
	margin-inline: auto;
	max-width: 80rem;
	padding-inline: 1.25rem;
	height: var(--header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-family: var(--font-display);
	letter-spacing: -0.025em;
	color: var(--sky-950);
}

.brand__mark {
	display: grid;
	place-items: center;
	height: 2.25rem;
	width: 2.25rem;
	border-radius: 0.75rem;
	background-image: linear-gradient(to bottom right, var(--sky-500), var(--cyan-400));
	color: var(--white);
	flex: none;
}

.brand__mark svg { height: 1.25rem; width: 1.25rem; }

.brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.brand__name {
	font-weight: 800;
	font-size: 1.125rem;
}

.brand__tagline {
	display: none;
	font-size: 0.6875rem;
	font-weight: 500;
	font-style: italic;
	color: var(--sky-500);
	white-space: nowrap;
	margin-top: 0.1875rem;
}

/* Over the dark home hero the wordmark is intentionally low-contrast until scroll */
.site-header--overlay .brand { color: var(--sky-950); }

.nav {
	display: none;
	align-items: center;
	gap: 1.75rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(8, 47, 73, 0.8);
}

.nav a { white-space: nowrap; transition: color 0.15s ease; }
.nav a:hover { color: var(--sky-600); }
.nav a.is-active { color: var(--sky-600); font-weight: 600; }

.header-actions {
	display: none;
	align-items: center;
	gap: 0.75rem;
}

.header-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--sky-950);
	transition: color 0.15s ease;
}

.header-link:hover { color: var(--sky-600); }
.header-link svg { height: 1rem; width: 1rem; }
.header-link .ic-phone { color: var(--sky-500); }
.header-link .ic-text { color: var(--cyan-500); }

.header-cta {
	border-radius: 9999px;
	background-color: var(--sky-600);
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--white);
	transition: background-color 0.15s ease;
}

.header-cta:hover { background-color: var(--sky-700); }

.nav-toggle {
	color: var(--sky-950);
	display: inline-flex;
}

.nav-toggle .icon-close { display: none; }
.site-header.is-open .nav-toggle .icon-open { display: none; }
.site-header.is-open .nav-toggle .icon-close { display: block; }

.mobile-menu {
	display: none;
	background-color: var(--white);
	border-top: 1px solid var(--sky-100);
	padding: 1rem 1.25rem;
}

.site-header.is-open .mobile-menu { display: block; }

.mobile-menu a {
	display: block;
	color: var(--sky-950);
	font-weight: 500;
	padding-block: 0.375rem;
}

.mobile-menu a.is-active { color: var(--sky-600); }

.mobile-menu .mobile-contact {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	color: var(--sky-950);
	padding-top: 0.5rem;
}

.mobile-menu .mobile-contact svg { height: 1rem; width: 1rem; }
.mobile-menu .mobile-contact .ic-phone { color: var(--sky-500); }
.mobile-menu .mobile-contact .ic-text { color: var(--cyan-500); }

.mobile-menu .header-cta {
	display: block;
	margin-top: 0.75rem;
	text-align: center;
	padding-block: 0.75rem;
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-image: linear-gradient(to bottom, var(--sky-950), var(--sky-800) 55%, var(--cyan-700));
	color: var(--white);
	min-height: 100dvh;
}

.hero--page {
	min-height: 0;
}

.hero--photo {
	background-image:
		linear-gradient(to bottom, rgba(8, 47, 73, 0.88), rgba(7, 89, 133, 0.72) 55%, rgba(8, 47, 73, 0.7)),
		url('../img/local-surfer-pelicans.jpg');
	background-size: cover;
	background-position: center 40%;
}

.hero__photo-credit {
	position: absolute;
	right: 1.25rem;
	bottom: 6.5rem;
	z-index: 1;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.55);
	transition: color 0.15s ease;
}

.hero__photo-credit:hover {
	color: rgba(255, 255, 255, 0.9);
}

.hero__texture {
	position: absolute;
	inset: 0;
	opacity: 0.3;
	mix-blend-mode: soft-light;
	background-image: url("../img/hero-texture.png");
	background-size: cover;
	background-position: center;
}

.hero__glow {
	position: absolute;
	border-radius: 9999px;
	filter: blur(64px);
	pointer-events: none;
}

.hero__glow--a {
	top: -6rem;
	right: -6rem;
	height: 24rem;
	width: 24rem;
	background-color: rgba(34, 211, 238, 0.3);
	animation: wave-float 6s ease-in-out infinite;
}

.hero__glow--b {
	bottom: 10rem;
	left: -5rem;
	height: 20rem;
	width: 20rem;
	background-color: rgba(56, 189, 248, 0.2);
}

.hero__inner {
	position: relative;
	margin-inline: auto;
	max-width: 80rem;
	width: 100%;
	padding: 7rem 1.25rem 10rem;
}

.hero--page .hero__inner {
	padding: 9rem 1.25rem 8rem;
	text-align: center;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 9999px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background-color: rgba(255, 255, 255, 0.1);
	padding: 0.375rem 1rem;
	font-size: 0.875rem;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.pill svg { height: 1rem; width: 1rem; color: var(--cyan-300); }

.hero__title {
	margin-top: 1.5rem;
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.025em;
	font-size: 3rem;
	line-height: 1.02;
	max-width: 56rem;
}

.hero--page .hero__title {
	margin-inline: auto;
	font-size: 2.5rem;
}

.accent { color: var(--cyan-300); }

.hero__lede {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	color: rgba(224, 242, 254, 0.9);
	max-width: 36rem;
}

.hero--page .hero__lede { margin-inline: auto; }

.hero__tagline {
	margin-top: 0.75rem;
	font-family: var(--font-display);
	font-weight: 600;
	font-style: italic;
	color: var(--cyan-200);
}

.hero__wave {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 90px;
	width: 100%;
}

.hero--page .hero__wave { height: 70px; }

/* Wave divider sitting at the top of a section */
.wave-top {
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	height: 70px;
	width: 100%;
	transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   7. Marquee
   -------------------------------------------------------------------------- */
.marquee {
	background-color: var(--shell);
	padding-block: 1.25rem;
	border-bottom: 1px solid var(--sky-100);
	overflow: hidden;
}

.marquee__track {
	display: flex;
	white-space: nowrap;
	animation: marquee 28s linear infinite;
}

.marquee__group {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.marquee__item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-inline: 2rem;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(12, 74, 110, 0.7);
}

.marquee__dot {
	height: 0.375rem;
	width: 0.375rem;
	border-radius: 9999px;
	background-color: var(--cyan-400);
}

@keyframes marquee {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

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

/* --------------------------------------------------------------------------
   8. Step cards — How It Works
   -------------------------------------------------------------------------- */
.step-card {
	position: relative;
	height: 100%;
	border-radius: 1.5rem;
	background-color: var(--white);
	padding: 2rem;
	border: 1px solid var(--sky-100);
	box-shadow: var(--shadow-card);
}

.step-card__num {
	position: absolute;
	top: 1.25rem;
	right: 1.5rem;
	font-family: var(--font-display);
	font-size: 3.75rem;
	line-height: 1;
	font-weight: 800;
	color: var(--sky-100);
}

.icon-tile {
	display: grid;
	place-items: center;
	height: 3.5rem;
	width: 3.5rem;
	border-radius: 9999px;
	background-image: linear-gradient(to bottom right, var(--sky-500), var(--cyan-400));
	color: var(--white);
}

.icon-tile svg { height: 1.75rem; width: 1.75rem; }

.card-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.25rem;
	margin-top: 1.5rem;
	color: var(--sky-950);
}

.card-copy {
	margin-top: 0.75rem;
	color: rgba(12, 74, 110, 0.7);
	line-height: 1.625;
}

/* --------------------------------------------------------------------------
   9. Pricing
   -------------------------------------------------------------------------- */
.pricing-card {
	border-radius: 1.5rem;
	background-image: linear-gradient(to bottom right, var(--sky-50), var(--cyan-50));
	border: 1px solid var(--sky-200);
	padding: 3rem;
	text-align: center;
}

.pricing-card p {
	font-size: 1.125rem;
	color: rgba(12, 74, 110, 0.8);
	line-height: 1.625;
}

.pricing-card strong {
	font-weight: 600;
	color: var(--sky-950);
}

.pricing-actions {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.price-notes {
	margin-top: 3.5rem;
	display: grid;
	gap: 1.5rem;
}

.price-note {
	border-radius: 1.5rem;
	background-color: var(--white);
	border: 1px solid var(--sky-100);
	padding: 2rem;
	box-shadow: var(--shadow-card);
}

.price-note h3 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--sky-950);
	margin-top: 1.25rem;
}

.price-note p {
	margin-top: 0.625rem;
	font-size: 0.9375rem;
	color: rgba(12, 74, 110, 0.7);
	line-height: 1.625;
}

.icon-tile--sm {
	height: 2.75rem;
	width: 2.75rem;
	border-radius: 9999px;
	background-image: none;
	background-color: var(--sky-100);
	color: var(--sky-600);
}

.icon-tile--sm svg { height: 1.25rem; width: 1.25rem; }

/* --------------------------------------------------------------------------
   10. Service cards — Who We Build For
   -------------------------------------------------------------------------- */
.services-grid {
	margin-top: 3.5rem;
	display: grid;
	gap: 1rem;
}

.service-card {
	height: 100%;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background-color: rgba(255, 255, 255, 0.05);
	padding: 1.5rem;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.service-card:hover {
	background-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-0.25rem);
}

.service-card__icon {
	display: grid;
	place-items: center;
	height: 3rem;
	width: 3rem;
	border-radius: 9999px;
	background-image: linear-gradient(to bottom right, var(--cyan-400), var(--sky-500));
	color: var(--sky-950);
}

.service-card__icon svg { height: 1.5rem; width: 1.5rem; }

.service-card h3 {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.125rem;
	margin-top: 1rem;
}

.service-card p {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.625;
	color: rgba(224, 242, 254, 0.7);
}

/* --------------------------------------------------------------------------
   11. Work & demo cards
   -------------------------------------------------------------------------- */
.card-grid-3 {
	margin-top: 3.5rem;
	display: grid;
	gap: 1.5rem;
	max-width: 48rem;
	margin-inline: auto;
}

.link-card {
	height: 100%;
	border-radius: 1rem;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.link-card--work {
	border: 1px solid var(--sky-100);
	background-image: linear-gradient(to bottom right, var(--sky-50), var(--cyan-50));
}

.link-card--work:hover {
	border-color: var(--sky-300);
	box-shadow: var(--shadow-lift);
}

.link-card--demo {
	border: 1px solid var(--sky-200);
	background-color: var(--white);
}

.link-card--demo:hover {
	border-color: var(--sky-400);
	box-shadow: var(--shadow-lift);
}

.link-card__icon {
	display: grid;
	place-items: center;
	height: 3.5rem;
	width: 3.5rem;
	border-radius: 9999px;
	background-image: linear-gradient(to bottom right, var(--sky-500), var(--cyan-400));
	color: var(--white);
	margin-bottom: 1rem;
}

.link-card__icon svg { height: 1.5rem; width: 1.5rem; }

.link-card__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 4.5rem;
	width: 100%;
	margin-bottom: 1.25rem;
}

.link-card__logo img {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.link-card:hover .link-card__logo img {
	transform: scale(1.05);
}

.link-card h3 {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.125rem;
	color: var(--sky-950);
}

.link-card__meta {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	color: rgba(12, 74, 110, 0.7);
	line-height: 1.625;
}

.link-card__cta {
	color: var(--sky-600);
	font-size: 0.875rem;
	margin-top: 0.75rem;
	transition: color 0.15s ease;
}

.link-card:hover .link-card__cta { color: var(--sky-700); }

/* --------------------------------------------------------------------------
   12. Why Us
   -------------------------------------------------------------------------- */
.why-grid {
	display: grid;
	gap: 3.5rem;
	align-items: center;
}

.why-copy .section-title { margin-top: 0.75rem; text-align: left; }

.why-copy p.lede {
	margin-top: 1.25rem;
	color: rgba(12, 74, 110, 0.7);
	line-height: 1.625;
}

.contact-box {
	margin-top: 2rem;
	border-radius: 1rem;
	background-color: var(--sky-900);
	color: var(--white);
	padding: 1.5rem;
}

.contact-box__row {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-box__row + .contact-box__row {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--sky-700);
}

.contact-box__row svg {
	height: 2rem;
	width: 2rem;
	color: var(--cyan-300);
	flex: none;
}

.contact-box__label {
	color: var(--sky-200);
	font-size: 0.875rem;
}

.contact-box__value {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.25rem;
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.feature-row {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	border-radius: 1rem;
	background-color: var(--white);
	padding: 1.25rem;
	border: 1px solid var(--sky-100);
}

.feature-row__icon {
	display: grid;
	place-items: center;
	height: 2.75rem;
	width: 2.75rem;
	border-radius: 9999px;
	background-color: var(--sky-100);
	color: var(--sky-600);
	flex: none;
}

.feature-row__icon svg { height: 1.25rem; width: 1.25rem; }

.feature-row h3 {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--sky-950);
}

.feature-row p {
	color: rgba(12, 74, 110, 0.7);
	font-size: 0.875rem;
	margin-top: 0.25rem;
	line-height: 1.5;
}

/* --------------------------------------------------------------------------
   12b. Local Life feature
   -------------------------------------------------------------------------- */
.local-feature {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

.local-feature__photo {
	border-radius: 1.5rem;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: var(--shadow-card);
}

.local-feature__photo img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.local-feature__photo:hover img {
	transform: scale(1.03);
}

.local-feature__copy .section-title {
	text-align: left;
}

.local-feature__copy .lede {
	margin-top: 1.25rem;
	color: rgba(12, 74, 110, 0.7);
	line-height: 1.625;
}

.local-feature__credit {
	margin-top: 1.5rem;
	font-size: 0.875rem;
	color: rgba(12, 74, 110, 0.55);
}

.local-feature__credit a {
	font-weight: 600;
	color: var(--sky-600);
	transition: color 0.15s ease;
}

.local-feature__credit a:hover {
	color: var(--sky-700);
}

/* --------------------------------------------------------------------------
   12c. Live surf conditions
   -------------------------------------------------------------------------- */
.surf-conditions {
	margin-top: 3rem;
	border-radius: 1.5rem;
	background-color: var(--shell);
	border: 1px solid var(--sky-100);
	padding: 2rem;
}

.surf-conditions__head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.surf-conditions__dot {
	height: 0.5rem;
	width: 0.5rem;
	border-radius: 9999px;
	background-color: var(--cyan-500);
	flex: none;
	animation: surf-pulse 2s ease-in-out infinite;
}

.surf-conditions__label {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--sky-600);
}

.surf-conditions__grid {
	margin-top: 1.75rem;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.surf-stat {
	text-align: center;
	padding: 1.25rem 0.5rem;
	border-radius: 1rem;
	background-color: var(--white);
	border: 1px solid var(--sky-100);
}

.surf-stat__value {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.625rem;
	color: var(--sky-950);
	font-variant-numeric: tabular-nums;
}

.surf-stat__label {
	margin-top: 0.375rem;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: rgba(12, 74, 110, 0.55);
}

.surf-conditions__meta {
	margin-top: 1.5rem;
	text-align: center;
	font-size: 0.8125rem;
	font-style: italic;
	color: rgba(12, 74, 110, 0.5);
}

@keyframes surf-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.4; transform: scale(1.4); }
}

/* --------------------------------------------------------------------------
   13. Referral
   -------------------------------------------------------------------------- */
.blob {
	position: absolute;
	border-radius: 9999px;
	filter: blur(64px);
	pointer-events: none;
}

.blob--tl {
	top: -8rem;
	left: -8rem;
	height: 24rem;
	width: 24rem;
	background-color: rgba(34, 211, 238, 0.1);
}

.blob--br {
	bottom: 0;
	right: 0;
	height: 20rem;
	width: 20rem;
	background-color: rgba(56, 189, 248, 0.1);
}

.referral-grid {
	position: relative;
	display: grid;
	gap: 3.5rem;
	align-items: center;
}

.referral-copy .section-title {
	text-align: left;
	line-height: 1.25;
}

.referral-copy p.lede {
	margin-top: 1.25rem;
	color: rgba(224, 242, 254, 0.8);
	line-height: 1.625;
}

.referral-copy p.lede strong {
	font-weight: 700;
	color: #f5b400;
}

.payout {
	margin-top: 2rem;
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	border-radius: 1rem;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.25rem 1.5rem;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.payout__icon {
	display: grid;
	place-items: center;
	height: 3.5rem;
	width: 3.5rem;
	border-radius: 9999px;
	background-color: rgba(34, 211, 238, 0.2);
	color: var(--cyan-300);
	flex: none;
}

.payout__icon svg { height: 1.75rem; width: 1.75rem; }

.payout__amount {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.875rem;
	line-height: 1;
	color: #f5b400;
}

.payout__label {
	color: rgba(186, 230, 253, 0.7);
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

.referral-steps {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.referral-step {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	border-radius: 1rem;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem;
}

.referral-step__num {
	display: grid;
	place-items: center;
	height: 3rem;
	width: 3rem;
	border-radius: 9999px;
	background-color: rgba(34, 211, 238, 0.15);
	color: var(--cyan-300);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.125rem;
	flex: none;
}

.referral-step__head {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.referral-step__head svg {
	height: 1.25rem;
	width: 1.25rem;
	color: var(--cyan-300);
	flex: none;
}

.referral-step__head h3 {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.125rem;
}

.referral-step p {
	color: rgba(224, 242, 254, 0.7);
	font-size: 0.875rem;
	margin-top: 0.375rem;
	line-height: 1.625;
}

/* Referral fine print */
.fineprint {
	margin-top: 3.5rem;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background-color: rgba(255, 255, 255, 0.05);
	padding: 2rem;
}

.fineprint h3 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.25rem;
}

.fineprint ul {
	margin-top: 1rem;
	display: grid;
	gap: 0.75rem;
}

.fineprint li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: rgba(224, 242, 254, 0.75);
	font-size: 0.9375rem;
	line-height: 1.625;
}

.fineprint li svg {
	height: 1.25rem;
	width: 1.25rem;
	color: var(--cyan-300);
	flex: none;
	margin-top: 0.125rem;
}

/* --------------------------------------------------------------------------
   14. Team
   -------------------------------------------------------------------------- */
.team-grid {
	margin-top: 3.5rem;
	display: grid;
	gap: 2rem;
	max-width: 48rem;
	margin-inline: auto;
}

.team-card {
	border-radius: 1.5rem;
	overflow: hidden;
	background-color: var(--shell);
	border: 1px solid var(--sky-100);
}

.team-card__photo {
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.team-card__photo img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.team-card:hover .team-card__photo img { transform: scale(1.05); }

.team-card__body { padding: 1.5rem; }

.team-card__name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--sky-950);
}

.team-card__role {
	color: var(--sky-600);
	font-weight: 600;
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

.team-card__place {
	color: rgba(12, 74, 110, 0.6);
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: flex;
	align-items: center;
	gap: 0.375rem;
}

.team-card__place svg { height: 1rem; width: 1rem; flex: none; }

.team-card__verse {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--sky-200);
}

.team-card__verse p {
	color: rgba(12, 74, 110, 0.7);
	font-size: 0.875rem;
	font-style: italic;
	line-height: 1.625;
}

.team-card__ref {
	color: var(--sky-600);
	font-size: 0.75rem;
	font-weight: 600;
	margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   14b. Reviews
   -------------------------------------------------------------------------- */
.reviews-grid {
	align-items: stretch;
	max-width: 72rem;
}

.review-card {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	border-radius: 1.5rem;
	background-color: var(--white);
	padding: 2rem;
	border: 1px solid var(--sky-100);
	box-shadow: var(--shadow-card);
	text-align: left;
}

.review-card__quote {
	display: grid;
	place-items: center;
	height: 2.75rem;
	width: 2.75rem;
	border-radius: 9999px;
	background-color: var(--sky-100);
	color: var(--sky-500);
}

.review-card__quote svg { height: 1.375rem; width: 1.375rem; }

.star-rating {
	display: flex;
	gap: 0.25rem;
	margin-top: 1.25rem;
	color: #f5b400;
}

.star-rating__star { flex: none; }

.review-card__text {
	margin-top: 1rem;
	color: rgba(12, 74, 110, 0.75);
	font-size: 0.9375rem;
	line-height: 1.625;
	flex: 1;
}

.review-card__author {
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--sky-100);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.review-card__avatar {
	display: grid;
	place-items: center;
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 9999px;
	background-image: linear-gradient(to bottom right, var(--sky-500), var(--cyan-400));
	color: var(--white);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.9375rem;
	flex: none;
}

.review-card__name {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--sky-950);
}

/* --------------------------------------------------------------------------
   15. Closing CTA band
   -------------------------------------------------------------------------- */
.cta-band {
	position: relative;
	background-image: linear-gradient(to bottom right, var(--sky-600), var(--cyan-500));
	color: var(--white);
	overflow: hidden;
}

.cta-band__inner {
	position: relative;
	margin-inline: auto;
	max-width: 72rem;
	padding: 6rem 1.25rem;
	text-align: center;
}

.cta-band h2 {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 2.25rem;
	line-height: 2.5rem;
}

.cta-band p {
	margin-top: 1rem;
	color: var(--sky-50);
	font-size: 1.125rem;
	max-width: 36rem;
	margin-inline: auto;
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background-color: var(--sky-950);
	color: rgba(186, 230, 253, 0.8);
	padding-block: 3rem;
}

.footer-inner {
	margin-inline: auto;
	max-width: 72rem;
	padding-inline: 1.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.75rem;
}

.footer-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	width: 100%;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-weight: 800;
	color: var(--white);
	font-size: 1.125rem;
}

.footer-brand__mark {
	display: grid;
	place-items: center;
	height: 2rem;
	width: 2rem;
	border-radius: 0.5rem;
	background-image: linear-gradient(to bottom right, var(--sky-500), var(--cyan-400));
	flex: none;
}

.footer-brand__mark svg { height: 1rem; width: 1rem; }

.footer-tagline {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	font-style: italic;
	color: rgba(103, 232, 249, 0.8);
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1.25rem;
	font-size: 0.875rem;
}

.footer-nav a { transition: color 0.15s ease; }
.footer-nav a:hover { color: var(--cyan-300); }

.footer-meta {
	text-align: center;
	font-size: 0.875rem;
}

.footer-meta > * + * { margin-top: 0.25rem; }

.footer-meta .phone {
	display: block;
	font-weight: 600;
	color: var(--white);
}

.footer-meta .copyright { color: rgba(125, 211, 252, 0.5); }

/* --------------------------------------------------------------------------
   17. Scroll reveal
   -------------------------------------------------------------------------- */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; transition: none; }
	.marquee__track,
	.hero__glow--a,
	.surf-conditions__dot { animation: none; }
}

/* --------------------------------------------------------------------------
   18. Breakpoints
   -------------------------------------------------------------------------- */

/* sm — 640px */
@media (min-width: 640px) {
	.hero__title { font-size: 3.75rem; }
	.hero--page .hero__title { font-size: 3rem; }
	.hero__lede { font-size: 1.25rem; }
	.section-title { font-size: 3rem; line-height: 1; }
	.cta-band h2 { font-size: 3rem; line-height: 1; }

	.btn-row {
		flex-direction: row;
		align-items: center;
	}

	.btn-row--center { justify-content: center; }
	.pricing-actions { flex-direction: row; }

	.services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.surf-conditions__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.price-notes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.fineprint ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* md — 768px */
@media (min-width: 768px) {
	.nav { display: flex; }
	.header-actions { display: flex; }
	.nav-toggle { display: none; }
	.mobile-menu { display: none !important; }

	.grid-body { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.price-notes { grid-template-columns: repeat(3, minmax(0, 1fr)); }

	.footer-main {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

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

/* lg — 1024px */
@media (min-width: 1024px) {
	.hero__title { font-size: 4.5rem; }
	.hero--page .hero__title { font-size: 3.5rem; }

	.services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.why-grid { grid-template-columns: 0.9fr 1.1fr; }
	.referral-grid { grid-template-columns: 0.85fr 1.15fr; }
	.local-feature { grid-template-columns: 1fr 1fr; }
}

/* xl — 1180px: header has enough breathing room for the tagline by here */
@media (min-width: 1180px) {
	.brand__tagline { display: block; }
}
