/* ==========================================================================
   Justify: landing page styles
   Values at 1440px match the Figma frame 1:1. Smaller breakpoints are
   our own responsive decisions (the file only ships a desktop frame).

   1. Fonts & tokens      6. Team
   2. Base                7. Services rail
   3. Shared components   8. Pricing
   4. Header              9. FAQ
   5. Hero & booking     10. CTA & footer
                         11. Responsive
   ========================================================================== */

/* 1. Fonts & tokens
   ========================================================================== */
@font-face {
	font-family: "Sora";
	src: url("../fonts/sora.woff2") format("woff2");
	font-weight: 400 700;
	font-display: swap;
}
@font-face {
	font-family: "Asta Sans";
	src: url("../fonts/asta-sans.woff2") format("woff2");
	font-weight: 400;
	font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("../fonts/inter.woff2") format("woff2");
	font-weight: 400;
	font-display: swap;
}

:root {
	--c-cream: #fdf5e8;
	--c-sand: #e5ded2;
	--c-ink: #000;
	--c-ink-soft: #030712;
	--c-dark: #231e15;
	--c-btn: #262626;
	--c-btn-border: #525252;
	--c-muted: #4b5563;
	--c-stone: #78716c;
	--c-yellow: #fec10e;
	--c-yellow-deep: #ecb102;
	--c-yellow-soft: #ffe8a6;
	--c-green: #86efac;
	--c-check: #16a34a;
	--c-line: #d4d4d4;
	--c-input: #e7e5e4;
	--c-dash: #a3a3a3;
	--c-error: #c2410c;

	--f-sans: "Sora", system-ui, sans-serif;
	--f-accent: "Asta Sans", "Sora", system-ui, sans-serif;

	--gutter: clamp(20px, 6.945vw, 100px);
	--container: 1240px;
	--radius: 16px;
	--shadow-card: 0 10px 0 rgba(0, 0, 0, 0.1);
	--ring: 0 0 0 3px var(--c-cream), 0 0 0 5px var(--c-dark);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--header-h: 84px;
}

/* 2. Base
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
	margin: 0;
	background: var(--c-cream);
	color: var(--c-ink);
	font: 400 16px/1.5 var(--f-sans);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: clip;
}

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

h1, h2, h3, p, ul, dl, dd, figure, fieldset { margin: 0; }
ul { padding: 0; list-style: none; }
fieldset { padding: 0; border: 0; min-width: 0; }
legend { padding: 0; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: inherit; text-decoration: none; }

:focus-visible { outline: 2px solid var(--c-dark); outline-offset: 3px; }

[hidden] { display: none !important; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.skip-link {
	position: fixed; top: 12px; left: 12px; z-index: 100;
	padding: 12px 20px;
	background: var(--c-dark); color: #fff;
	border-radius: 6px;
	transform: translateY(-200%);
	transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: none; }

.container {
	width: 100%;
	max-width: calc(var(--container) + 2 * var(--gutter));
	margin-inline: auto;
	padding-inline: var(--gutter);
}

/* 3. Shared components
   ========================================================================== */

/* Solid buttons. The inset bottom edge from Figma doubles as a "key":
   hover lifts it, active presses it down. */
.btn {
	--edge: #000;
	display: inline-flex; align-items: center; justify-content: center;
	height: 48px; padding: 0 32px;
	border: 1px solid var(--c-btn-border);
	border-radius: 6px;
	background: var(--c-btn);
	color: #fff;
	font: 700 14px/20px var(--f-sans);
	text-transform: uppercase;
	white-space: nowrap;
	box-shadow: inset 0 -6px 0 var(--edge);
	transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background-color 0.18s;
}
.btn:hover { background: #1a1a1a; transform: translateY(-2px); box-shadow: inset 0 -6px 0 var(--edge), 0 6px 14px -6px rgba(35, 30, 21, 0.45); }
.btn:active { transform: translateY(2px); box-shadow: inset 0 -2px 0 var(--edge); transition-duration: 0.06s; }
.btn:focus-visible { outline: none; box-shadow: inset 0 -6px 0 var(--edge), var(--ring); }

.btn--yellow { --edge: var(--c-yellow-deep); background: var(--c-yellow); border-color: var(--c-yellow-soft); color: #000; }
.btn--yellow:hover { background: #ffc928; }
.btn--ghost { background: transparent; border-color: transparent; color: #000; box-shadow: none; }

/* Label + round arrow badge ("BOOK A CALL →") */
.arrow-link {
	display: inline-flex; align-items: center; gap: 8px;
	color: #000;
	font: 700 14px/20px var(--f-sans);
	text-transform: uppercase;
	white-space: nowrap;
}
.arrow-link__badge {
	position: relative;
	display: grid; place-items: center;
	width: 42px; height: 42px;
	border: 1px solid #000;
	border-radius: 50%;
	background: var(--c-yellow);
	overflow: hidden;
	transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.arrow-link__badge .icon { transition: transform 0.35s var(--ease); }
.arrow-link:hover .arrow-link__badge { background: var(--c-dark); color: var(--c-yellow); }
.arrow-link:hover .arrow-link__badge .icon { transform: translateX(3px); }
.arrow-link:active .arrow-link__badge { transform: scale(0.94); }
.arrow-link:focus-visible { outline: none; }
.arrow-link:focus-visible .arrow-link__badge { box-shadow: var(--ring); }
.arrow-link--light { font-weight: 500; }
.arrow-link--light .arrow-link__badge { background: #fff; }
.arrow-link--on-dark { color: #fff; }
.arrow-link--on-dark:hover .arrow-link__badge { background: #fff; color: #000; }

.round-btn {
	display: grid; place-items: center;
	width: 56px; height: 56px;
	border: 1px solid #000;
	border-radius: 50%;
	background: var(--c-yellow);
	color: #000;
	transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
}
.round-btn:hover { background: var(--c-dark); color: var(--c-yellow); }
.round-btn:active { transform: scale(0.92); }
.round-btn:focus-visible { outline: none; box-shadow: var(--ring); }

.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
	display: inline-flex; align-items: center;
	padding: 6px 20px;
	border: 1px solid var(--c-line);
	border-radius: 999px;
	color: var(--c-muted);
	font: 500 16px/24px var(--f-sans);
	white-space: nowrap;
}

.dash {
	height: 1px; margin: 0; border: 0;
	background: linear-gradient(90deg, var(--c-dash) 50%, transparent 0) 0 0 / 10px 1px repeat-x;
}

.eyebrow { color: var(--c-dark); font: 400 20px/28px var(--f-sans); }
.eyebrow--accent { color: var(--c-yellow); font: 400 20px/24px var(--f-accent); }
.section-title { font: 600 32px/35.2px var(--f-sans); text-align: center; }
.section-title--lg { font: 500 48px/48px var(--f-sans); }
.lead { color: var(--c-ink-soft); font: 400 20px/28px var(--f-sans); }

.icon { width: 24px; height: 24px; flex: none; }

/* 4. Header
   ========================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 50;
	height: var(--header-h);
	padding: 0 40px;
	background: var(--c-cream);
	transition: box-shadow 0.3s;
}
.site-header.is-scrolled { box-shadow: 0 1px 0 rgba(35, 30, 21, 0.08), 0 8px 24px -16px rgba(35, 30, 21, 0.25); }

.site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	max-width: 1360px; height: 100%;
	margin: 0 auto;
	padding: 16px 16px 20px;
}
.site-header__brand { width: 255px; }
.site-header__brand img { width: 143px; height: 29px; }

.site-nav__list {
	display: flex; gap: 8px;
	padding: 4px;
	border-radius: 8px;
	background: var(--c-sand);
}
.site-nav__link {
	display: flex; align-items: center;
	height: 40px; padding: 0 16px;
	border-radius: 6px;
	font: 400 12px/16px var(--f-sans);
	text-transform: uppercase;
	transition: background-color 0.2s, box-shadow 0.2s;
}
.site-nav__link:hover { background: rgba(255, 255, 255, 0.55); }
.site-nav__link.is-active { background: #fff; box-shadow: 0 1px 2px rgba(35, 30, 21, 0.12); }
.site-nav__link:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--c-dark); }
.site-nav__mobile-actions { display: none; }

.site-header__actions { display: flex; align-items: center; gap: 16px; }
.site-header__login {
	display: flex; align-items: center;
	height: 48px; padding: 0 32px;
	border-radius: 6px;
	font: 700 14px/20px var(--f-sans);
	transition: background-color 0.2s;
}
.site-header__login:hover { background: rgba(35, 30, 21, 0.06); }
.site-header__toggle { display: none; }

/* 5. Hero & booking
   ========================================================================== */
.hero { position: relative; overflow: hidden; }

.hero__intro {
	position: relative;
	display: flex; flex-direction: column; align-items: center;
	padding: 100px 0 40px;
	text-align: center;
}
.hero__squiggle { position: absolute; z-index: -1; pointer-events: none; max-width: none; }
.hero__squiggle--left { top: 101px; left: -142px; width: 438px; }
.hero__squiggle--right { top: 226px; right: -261px; width: 527px; }

.hero__eyebrow { font: 400 20px/24px var(--f-accent); }
.hero__title {
	margin-top: 16px;
	font: 600 64px/70.4px var(--f-sans);
}
.hero__line { display: block; }
.hero__line:first-child { padding-right: 0.25em; } /* Figma keeps a trailing space on this line. */
.hero__highlight { position: relative; z-index: 0; display: inline-block; }
.hero__highlight::before {
	content: "";
	position: absolute; z-index: -1;
	inset: 2.6px -0.27em -11.2px -0.105em;
	border-radius: 6px;
	background: var(--c-yellow);
	box-shadow: inset 0 -8px 0 #e5ab01;
	transform-origin: left center;
	transition: transform 0.9s var(--ease) 0.55s;
}
/* The yellow marker sweeps in once JS is ready. */
.js:not(.is-ready) .hero__highlight::before { transform: scaleX(0); }

/* Fallback: if scripts fail, nothing stays hidden. */
.js:not(.is-ready) [data-reveal] { opacity: 0; }

.booking.is-flash { animation: flash 1.1s var(--ease); }
@keyframes flash {
	0%, 100% { box-shadow: var(--shadow-card); }
	30% { box-shadow: var(--shadow-card), 0 0 0 6px rgba(254, 193, 14, 0.7); }
}
.hero__text { max-width: 744px; margin-top: 37px; color: var(--c-ink-soft); font: 400 20px/28px var(--f-sans); padding-inline: 20px; box-sizing: content-box; }
.hero__intro .btn { margin-top: 37px; }

.logos {
	position: relative;
	width: 100%; height: 80px;
	margin-top: 60px;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 22%, #000 78%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 22%, #000 78%, transparent 100%);
}
.logos::before,
.logos::after {
	content: ""; position: absolute; left: 0; right: 0; height: 1px;
	background: linear-gradient(90deg, rgba(240, 235, 229, 0), #dfd6c8 50%, rgba(240, 235, 229, 0));
}
.logos::before { top: 0; }
.logos::after { bottom: 0; }
.logos__track {
	display: flex;
	width: max-content; height: 100%;
	margin-left: -197px; /* Matches the logo offset in the Figma frame. */
	animation: marquee 48s linear infinite;
}
.logos:hover .logos__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logos__set { display: flex; align-items: center; gap: 38px; padding-right: 38px; }
.logos__set img { height: 32px; width: auto; }

.hero__booking { padding-top: 60px; padding-bottom: 60px; }

.booking {
	display: grid;
	grid-template-columns: 538fr 700fr;
	border: 1px solid #000;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow-card);
	overflow: hidden;
}
.booking__panel { position: relative; box-shadow: inset 0 0 0 1px #000; }
.booking__form,
.booking__success { display: flex; flex-direction: column; height: 100%; padding: 32px; }
.booking__form { justify-content: space-between; gap: 13px; }
.booking__title { font: 500 32px/38.4px var(--f-sans); }
.booking__question { margin-bottom: 23px; color: var(--c-muted); font: 500 16px/24px var(--f-sans); }
.booking__support { position: relative; }
.booking__fields { display: flex; flex-direction: column; gap: 24px; }

.chip--choice { position: relative; cursor: pointer; transition: border-color 0.2s, background-color 0.2s, color 0.2s; }
.chip--choice input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.chip--choice:hover { border-color: var(--c-dark); color: var(--c-dark); }
.chip--choice:has(input:checked) { background: var(--c-yellow); border-color: #000; color: #000; }
.chip--choice:has(input:focus-visible) { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--c-dark); }

.field { position: relative; display: flex; flex-direction: column; gap: 12px; }
.field__label { font: 500 16px/24px var(--f-sans); }
.field__input {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	width: 100%; height: 56px; padding: 12px 20px;
	border: 1px solid var(--c-input);
	border-radius: 999px;
	background: #fff;
	font: 400 16px/19.2px var(--f-sans);
	text-align: left;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.field__input::placeholder { color: var(--c-muted); opacity: 1; }
.field__input:hover { border-color: #c9c4c1; }
.field__input:focus,
.field__input:focus-visible,
.field__picker[aria-expanded="true"] { outline: none; border-color: var(--c-dark); box-shadow: 0 0 0 3px rgba(254, 193, 14, 0.45); }
.field__picker-value { color: var(--c-muted); }
.field__picker.has-value .field__picker-value { color: #000; }
.field.is-invalid .field__input { border-color: var(--c-error); }
.field.is-invalid .field__input:focus { box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.18); }
.field.is-valid .field__input { border-color: #a7d7b5; }

/* Errors sit on the label line, right-aligned: no overlap, no layout shift. */
.field__error {
	position: absolute; top: 0; right: 0;
	max-width: 70%;
	text-align: right;
	line-height: 24px !important;
	color: var(--c-error);
	font: 500 13px/16px var(--f-sans);
	opacity: 0; transform: translateY(-4px);
	transition: opacity 0.2s, transform 0.2s var(--ease);
}
.field__error:not(:empty) { opacity: 1; transform: none; }
.booking__support .field__error { top: -47px; max-width: 30%; }
.booking__support.is-invalid .chip--choice { border-color: var(--c-error); }

.time-picker {
	position: absolute; z-index: 5; bottom: calc(100% - 28px); left: 0; right: 0;
	padding: 16px 20px 20px;
	border: 1px solid #000;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1), 0 20px 40px -20px rgba(35, 30, 21, 0.35);
}
.time-picker:not([hidden]) { animation: pop-in 0.22s var(--ease); }
.time-picker__label { margin: 4px 0 8px; color: var(--c-muted); font: 500 12px/16px var(--f-sans); text-transform: uppercase; letter-spacing: 0.06em; }
.time-picker__days,
.time-picker__slots { display: flex; gap: 8px; }
.time-picker__days { overflow-x: auto; padding: 2px 2px 8px; margin: -2px -2px 4px; scrollbar-width: thin; }
.time-picker__slots { flex-wrap: wrap; }
.time-picker__option {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	min-width: 56px; padding: 8px 12px;
	border: 1px solid var(--c-line);
	border-radius: 12px;
	font: 500 14px/18px var(--f-sans);
	transition: border-color 0.15s, background-color 0.15s;
}
.time-picker__option small { color: var(--c-muted); font-size: 11px; font-weight: 400; text-transform: uppercase; }
.time-picker__slots .time-picker__option { border-radius: 999px; min-width: 0; padding: 6px 14px; }
.time-picker__option:hover { border-color: var(--c-dark); }
.time-picker__option[aria-checked="true"] { background: var(--c-yellow); border-color: #000; }
.time-picker__option[aria-checked="true"] small { color: #000; }
.time-picker__option:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--c-dark); }

@keyframes pop-in { from { opacity: 0; transform: translateY(-6px) scale(0.98); } }

.booking__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.booking__footer { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.booking__status { margin-right: auto; color: var(--c-error); font: 500 14px/20px var(--f-sans); }
.booking__submit .spinner {
	position: absolute; inset: 9px;
	border: 2px solid rgba(0, 0, 0, 0.2); border-top-color: #000;
	border-radius: 50%;
	opacity: 0;
}
.booking__submit.is-loading { pointer-events: none; }
.booking__submit.is-loading .icon { opacity: 0; }
.booking__submit.is-loading .spinner { opacity: 1; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.booking__success { align-items: flex-start; justify-content: center; gap: 16px; }
.booking__success:focus { outline: none; }
.booking__success-icon { display: grid; place-items: center; width: 56px; height: 56px; border: 1px solid #000; border-radius: 50%; background: var(--c-green); color: #000; }
.booking__success-text { color: var(--c-muted); font: 400 18px/26px var(--f-sans); }
.booking__again { margin-top: 8px; }

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

/* 6. Team
   ========================================================================== */
.team {
	position: relative;
	overflow-x: clip;
	padding: 60px 0;
	text-align: center;
}
.team__grid { position: absolute; top: 46px; left: 50%; width: 1008px; max-width: none; margin-left: -504px; pointer-events: none; }
.team__title { position: relative; }

.team__carousel {
	--spread: 426.5px;
	--tilt: 2.83deg;
	--drop: 9.15px;
	position: relative;
	max-width: 1440px;
	height: 696.3px;
	margin: 48px auto 0;
}
.team__stage {
	position: relative;
	display: grid;
	justify-content: center;
	height: 100%;
	touch-action: pan-y;
}
.member {
	grid-area: 1 / 1;
	align-self: start;
	display: flex; flex-direction: column; gap: 18px;
	width: 386.7px;
	margin-top: 9.15px;
	padding: 12px 12px 24px;
	border: 1px solid #000;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow-card);
	text-align: left;
	/* Slot position is expressed as variables so hover can nudge it without
	   fighting the carousel transform. */
	--x: 0px;
	--y: 0px;
	--r: 0deg;
	--s: 1;
	transform: translate(var(--x), var(--y)) rotate(var(--r)) scale(var(--s));
	transition: transform 0.75s var(--ease), opacity 0.5s var(--ease), box-shadow 0.3s var(--ease);
	/* Smooth edges on the rotated cards (Chrome aliases rotated 1px borders). */
	outline: 1px solid transparent;
	backface-visibility: hidden;
}
.member[data-slot="center"] { z-index: 3; --y: -9.15px; }
.member[data-slot="left"] { z-index: 2; --x: calc(-1 * var(--spread)); --r: calc(-1 * var(--tilt)); }
.member[data-slot="right"] { z-index: 2; --x: var(--spread); --r: var(--tilt); }
.member[data-slot="hidden"] { z-index: 1; opacity: 0; visibility: hidden; }
.member.is-wrapping { z-index: 1; --s: 0.86; opacity: 0.6; }

@media (hover: hover) {
	.member[data-slot="left"],
	.member[data-slot="right"] { cursor: pointer; }
	.member[data-slot="left"]:hover { --y: -10px; --r: calc(-0.4 * var(--tilt)); box-shadow: 0 16px 0 rgba(0, 0, 0, 0.08); }
	.member[data-slot="right"]:hover { --y: -10px; --r: calc(0.4 * var(--tilt)); box-shadow: 0 16px 0 rgba(0, 0, 0, 0.08); }
}
.member__photo { width: 100%; aspect-ratio: 360.7 / 307; object-fit: fill; border-radius: 8px; }
.member__body { display: flex; flex-direction: column; gap: 20px; padding: 0 8px; }
.member__head { display: flex; flex-direction: column; gap: 12px; }
.member__name { font: 500 24px/28.8px var(--f-sans); }
.member__role { color: rgba(0, 0, 0, 0.5); font: 500 16px/24px var(--f-sans); }
.member__specialties { display: flex; flex-direction: column; gap: 16px; min-height: 128px; }
.member__label { color: var(--c-muted); font: 500 16px/24px var(--f-sans); }
.member .arrow-link { align-self: flex-start; }

.team__nav { position: absolute; z-index: 4; top: 320px; }
.team__nav--prev { left: max(12px, calc(50% - 650px)); }
.team__nav--next { left: min(calc(100% - 68px), calc(50% + 594px)); }

.stats {
	position: relative;
	display: grid; grid-template-columns: repeat(3, 1fr);
	margin-top: 48px;
}
.stats__item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stats__value { font: 600 32px/38.4px var(--f-sans); }
.stats__label { color: var(--c-muted); font: 400 18px/24px var(--f-sans); }

/* 7. Services rail
   ========================================================================== */
.services {
	position: relative;
	background: var(--c-dark);
	color: #fff;
	overflow: hidden;
}
.services__head { padding-top: 60px; padding-bottom: 40px; }
.services__title { max-width: 828px; margin-top: 24px; font: 500 48px/48px var(--f-sans); }

.rail {
	padding: 50px 0 0;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: var(--gutter);
	scrollbar-width: none;
	cursor: grab;
	overscroll-behavior-x: contain;
}
.rail::-webkit-scrollbar { display: none; }
.rail.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.rail.is-dragging a { pointer-events: none; }
.rail:focus-visible { outline: none; }
.rail:focus-visible .service-card { box-shadow: var(--shadow-card), 0 0 0 3px var(--c-yellow); }
.rail__track {
	display: flex; gap: 24px;
	width: max-content;
	padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
}

.service-card {
	display: grid; grid-template-columns: 590fr 286fr;
	width: 878px; height: 440px;
	border: 1px solid #000;
	border-radius: var(--radius);
	background: #fff;
	box-shadow: var(--shadow-card);
	overflow: hidden;
	color: #000;
	scroll-snap-align: start;
	transition: transform 0.4s var(--ease);
}
.service-card__main {
	position: relative;
	display: flex; flex-direction: column; justify-content: flex-end; gap: 42px;
	padding: 32px;
	box-shadow: inset 0 0 0 1px #000;
	overflow: hidden;
}
.service-card--yellow .service-card__main { background: var(--c-yellow-soft); }
.service-card--green .service-card__main { background: var(--c-green); }
.service-card__pattern { position: absolute; top: -275px; left: 25px; width: 637px; max-width: none; pointer-events: none; transition: transform 0.8s var(--ease); }
.service-card:hover .service-card__pattern { transform: translate(-10px, 10px) rotate(-2deg); }
.service-card__content { position: relative; display: flex; flex-direction: column; gap: 16px; max-width: 467px; }
.service-card--yellow .service-card__content { max-width: 412px; }
.service-card__eyebrow { font: 500 14px/20px var(--f-sans); }
.service-card__title { font: 500 30px/36px var(--f-sans); }
.service-card .arrow-link { position: relative; align-self: flex-start; }
.service-card__stats { display: flex; flex-direction: column; gap: 24px; padding: 32px; }
.service-card__stats dt { font: 500 30px/36px var(--f-sans); }
.service-card__stats dd { margin-top: 12px; font: 500 14px/20px var(--f-sans); }

.services__foot { padding-top: 42px; padding-bottom: 50px; }
.services__text { max-width: 828px; color: rgba(255, 255, 255, 0.8); font: 400 20px/28px var(--f-sans); }
.services__foot .arrow-link { margin-top: 32px; }

/* 8. Pricing
   ========================================================================== */
.pricing {
	position: relative;
	overflow-x: clip;
	padding: 60px var(--gutter);
	text-align: center;
}
.pricing__grid { position: absolute; top: -326px; left: 50%; width: 816px; max-width: none; margin-left: -408px; pointer-events: none; }
.pricing__head { position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pricing__head .section-title { max-width: 726px; }
.pricing__head .lead { max-width: 792px; }

.billing {
	position: relative;
	display: inline-flex; align-items: center; gap: 12px;
	margin-top: 40px;
	color: var(--c-ink-soft);
	font: 400 20px/28px var(--f-sans);
}
.billing__label { cursor: pointer; transition: color 0.2s; user-select: none; }
.billing__switch {
	display: flex; align-items: center;
	width: 52px; height: 32px; padding: 4px;
	border: 1px solid #000;
	border-radius: 999px;
	background: #fff;
	box-shadow: 2px 4px 0 #000;
	transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.billing__switch:hover { transform: translate(-1px, -1px); box-shadow: 3px 5px 0 #000; }
.billing__switch:active { transform: translate(2px, 3px); box-shadow: 0 1px 0 #000; }
.billing__switch:focus-visible { outline: 2px solid var(--c-dark); outline-offset: 4px; }
.billing__knob {
	width: 24px; height: 24px;
	border: 1px solid #000;
	border-radius: 50%;
	background: var(--c-check);
	transition: transform 0.35s var(--ease);
}
.billing__switch[aria-checked="true"] .billing__knob { transform: translateX(18px); }
.billing__save {
	position: absolute; left: 100%; top: 50%;
	margin-left: 10px;
	padding: 2px 10px;
	border: 1px solid #000;
	border-radius: 999px;
	background: var(--c-green);
	color: #000;
	font: 600 12px/18px var(--f-sans);
	white-space: nowrap;
	transform: translateY(-50%) rotate(-4deg);
	transition: transform 0.35s var(--ease), background-color 0.2s;
}
.billing.is-yearly .billing__save { background: var(--c-yellow); transform: translateY(-50%) rotate(0) scale(1.06); }

.plans {
	position: relative;
	display: flex; flex-direction: column; align-items: center; gap: 18px;
	max-width: 946px;
	margin: 40px auto 0;
	text-align: left;
}
.plan {
	display: flex; gap: 72px;
	width: 830px; max-width: 100%;
	padding: 32px;
	border-radius: var(--radius);
}
.plan--featured {
	width: 946px;
	justify-content: center;
	padding: 48px 32px;
	border: 1px solid #000;
	background: var(--c-yellow-soft);
	box-shadow: var(--shadow-card);
}
.plan__main { display: flex; flex-direction: column; justify-content: space-between; gap: 24px; width: 424px; flex: none; }
.plan__intro { display: flex; flex-direction: column; gap: 12px; }
.plan__intro .icon { width: 28px; height: 28px; }
.plan__name { font: 500 24px/32px var(--f-sans); }
.plan__text,
.plan__from { font: 500 16px/24px var(--f-sans); }
.plan__price { display: flex; flex-direction: column; gap: 12px; }
.price { display: flex; align-items: baseline; gap: 9px; }
.price__amount { display: inline-flex; font: 700 48px/48px var(--f-sans); font-variant-numeric: tabular-nums; }
.price__value { display: inline-block; }
.price__unit { font: 500 12px/14.4px var(--f-sans); }
.plan__side { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; min-width: 222px; }
.plan__label { margin-bottom: -12px; font: 500 12px/16px var(--f-sans); }
.plan__features { display: flex; flex-direction: column; gap: 12px; }
.plan__features li { display: flex; align-items: center; gap: 6px; font: 500 16px/24px var(--f-sans); white-space: nowrap; }
.plan__features .icon { width: 20px; height: 20px; color: var(--c-check); }
.plan--featured .plan__from,
.plan--featured .plan__features li { line-height: 19.2px; }
.plan--featured .plan__features li { min-height: 20px; }
.plan--featured .plan__main { gap: 37px; }
.plan--featured .btn--yellow { --edge: var(--c-yellow); }

/* 9. FAQ
   ========================================================================== */
.faq {
	display: flex; justify-content: space-between; gap: 40px;
	max-width: calc(var(--container) + 2 * var(--gutter));
	margin: 0 auto;
	padding: 60px var(--gutter);
}
.faq__intro { display: flex; flex-direction: column; gap: 12px; max-width: 457px; }
.faq__intro .section-title { text-align: left; }
.faq__list { display: flex; flex-direction: column; gap: 18px; width: 714px; flex: none; }

.faq-item {
	border-radius: var(--radius);
	background: #fff;
	box-shadow: 0 1px 3px rgba(143, 143, 143, 0.2), 0 0 0 1px #ebebeb, inset 0 -2.4px 0 rgba(62, 62, 62, 0.04);
	transition: box-shadow 0.25s;
}
.faq-item:hover { box-shadow: 0 4px 14px -4px rgba(35, 30, 21, 0.18), 0 0 0 1px #dcd6cc, inset 0 -2.4px 0 rgba(62, 62, 62, 0.04); }
.faq-item.is-open { box-shadow: 0 6px 20px -8px rgba(35, 30, 21, 0.25), 0 0 0 1px var(--c-dark); }
.faq-item__heading { font: inherit; }
.faq-item__toggle {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	width: 100%; min-height: 60px;
	padding: 16px 20px;
	border-radius: var(--radius);
	font: 400 20px/28px var(--f-sans);
	text-align: left;
}
.faq-item__toggle:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--c-dark); }
.faq-item__toggle .icon { width: 20px; height: 20px; stroke-width: 1.5; transition: transform 0.4s var(--ease); }
.faq-item.is-open .faq-item__toggle .icon { transform: rotate(135deg); }
.faq-item__panel { overflow: hidden; }
.faq-item__inner { position: relative; padding: 0 20px 20px; }
.faq-item__answer { max-width: 620px; color: var(--c-muted); font: 400 16px/26px var(--f-sans); }

.typing {
	display: inline-flex; gap: 5px;
	padding: 12px 16px;
	border-radius: 16px 16px 16px 4px;
	background: var(--c-cream);
}
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--c-stone); animation: typing 1s infinite ease-in-out; }
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }

/* JS takes over the reveal; without JS every answer is simply shown. */
.typing { display: none; }
.js .typing { display: inline-flex; position: absolute; top: 0; left: 20px; }
.js .faq-item__inner.is-typed .typing { display: none; }

/* 10. CTA & footer
   ========================================================================== */
.cta {
	position: relative;
	padding: 60px var(--gutter) 20px;
}
.cta::after {
	content: "";
	position: absolute; left: 0; right: 0; bottom: 0; z-index: -1;
	height: 186px;
	border-radius: 28px 28px 0 0;
	background: var(--c-dark);
}
.cta__card {
	display: flex; flex-direction: column; align-items: center; gap: 16px;
	max-width: 1124px;
	margin: 0 auto;
	padding: 67px 100px;
	border: 1px solid #000;
	border-radius: var(--radius);
	background: var(--c-yellow-soft);
	box-shadow: 0 10px 0 rgba(255, 255, 255, 0.3);
	text-align: center;
}
.cta__title { font: 600 48px/58px var(--f-sans); }
.cta__text { max-width: 834px; font: 400 20px/28px var(--f-sans); }
.cta .btn { margin-top: 8px; }

.site-footer { background: var(--c-dark); color: #fff; }
.site-footer__top { display: flex; justify-content: space-between; gap: 24px; padding-top: 60px; padding-bottom: 60px; }
.site-footer__brand { display: flex; flex-direction: column; gap: 20px; max-width: 362px; }
.site-footer__brand img { width: 143px; height: 30px; }
.site-footer__brand p { font: 400 20px/28px var(--f-sans); }
.site-footer__nav { display: flex; gap: 64px; padding-bottom: 52px; }
.site-footer__col { width: 166px; }
.site-footer__col:last-child { width: 134.5px; }
.site-footer__heading { font: 400 12px/11.4px "Inter", sans-serif; letter-spacing: 1.2px; text-transform: uppercase; }
.site-footer__links { padding: 18px 0 23px; }
.site-footer__links li { display: flex; align-items: center; height: 35px; }
.site-footer__links li + li { padding-top: 12px; }
.site-footer__link { position: relative; font: 400 16px/24px var(--f-sans); white-space: nowrap; transition: color 0.2s; }
.site-footer__link::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
	background: currentColor;
	transform: scaleX(0); transform-origin: right;
	transition: transform 0.35s var(--ease);
}
.site-footer__link:hover { color: var(--c-yellow); }
.site-footer__link:hover::after { transform: scaleX(1); transform-origin: left; }
.site-footer__link:focus-visible { outline-color: var(--c-yellow); }

.site-footer__bottom { display: flex; align-items: center; gap: 32px; padding-top: 30px; padding-bottom: 30px; }
.site-footer__copy { font: 400 14px/20px var(--f-sans); opacity: 0.5; }
.site-footer__legal { display: flex; gap: 24px; opacity: 0.7; }
.site-footer__legal li { display: flex; }
.site-footer__legal .site-footer__link { font-size: 14px; line-height: 20px; }

.entry { padding-top: 80px; padding-bottom: 120px; }
.entry__title { margin-bottom: 24px; font: 500 48px/1.1 var(--f-sans); }

/* 11. Responsive
   ========================================================================== */

/* Laptop */
@media (max-width: 1279px) {
	.site-header { padding: 0 16px; }
	.site-header__brand { width: auto; }
	.site-header__login { padding: 0 20px; }

	.hero__title { font-size: 56px; line-height: 62px; }

	.booking__form { padding: 28px; }

	.team__carousel { --spread: 330px; height: auto; }
	.member[data-slot="left"],
	.member[data-slot="right"] { opacity: 0.9; }
	.team__nav { top: 42%; }
	.team__nav--prev { left: var(--gutter); }
	.team__nav--next { left: auto; right: var(--gutter); }

	.plan { width: 100%; gap: 48px; }
	.plan--featured { width: 100%; }
	.plan__main { width: auto; flex: 1; }

	.faq__list { width: auto; flex: 1 1 60%; }
}

/* Tablet */
@media (max-width: 1023px) {
	:root { --header-h: 72px; }

	.site-header__inner { padding: 12px 0; }
	.site-header__brand img { width: 124px; height: auto; }
	.site-header__login { display: none; }
	.site-header__cta { height: 44px; padding: 0 20px; }
	.site-header__toggle {
		display: grid; place-items: center;
		width: 44px; height: 44px;
		border-radius: 8px;
		background: var(--c-sand);
	}
	.site-header__toggle .icon--close,
	.site-header__toggle[aria-expanded="true"] .icon--menu { display: none; }
	.site-header__toggle[aria-expanded="true"] .icon--close { display: block; }
	.site-header__toggle:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--c-dark); }

	.site-nav {
		position: fixed; inset: var(--header-h) 0 auto 0;
		display: flex; flex-direction: column; gap: 16px;
		padding: 16px 20px 24px;
		background: var(--c-cream);
		border-bottom: 1px solid rgba(35, 30, 21, 0.1);
		box-shadow: 0 24px 40px -24px rgba(35, 30, 21, 0.35);
		opacity: 0; visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 0.25s, transform 0.3s var(--ease), visibility 0s 0.3s;
	}
	.site-nav.is-open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
	.site-nav__list { flex-direction: column; gap: 4px; }
	.site-nav__link { height: 52px; font-size: 14px; }
	.site-nav__mobile-actions { display: flex; gap: 12px; }
	.site-nav__mobile-actions .btn { flex: 1; }
	.site-nav__mobile-actions .btn--ghost { border: 1px solid rgba(0, 0, 0, 0.2); }

	.hero__intro { padding-top: 64px; }
	.hero__title { font-size: 48px; line-height: 54px; }
	.hero__eyebrow { font-size: 18px; }
	.hero__text { font-size: 18px; line-height: 26px; margin-top: 28px; }
	.hero__intro .btn { margin-top: 28px; }
	.logos { margin-top: 48px; }
	.hero__squiggle--left { left: -240px; }
	.hero__squiggle--right { right: -380px; }

	.booking { grid-template-columns: 1fr; }
	.booking__media { order: -1; aspect-ratio: 16 / 9; overflow: hidden; border-bottom: 1px solid #000; }
	.booking__media img { object-position: center 70%; }
	.booking__panel { box-shadow: none; }
	.booking__form { gap: 24px; }

	.team__carousel { --spread: 250px; --tilt: 4deg; }
	.member { width: 340px; }
	.member[data-slot="left"],
	.member[data-slot="right"] { --y: 20px; --s: 0.88; }
	.member[data-slot="left"],
	.member[data-slot="right"] { opacity: 0.55; }
	/* Arrows move under the cards so they never cover a name. */
	.team__carousel { padding-bottom: 80px; }
	.team__nav { top: auto; bottom: 0; }
	.team__nav--prev { left: calc(50% - 68px); }
	.team__nav--next { left: auto; right: calc(50% - 68px); }
	.stats { gap: 16px; }

	.services__title { font-size: 40px; line-height: 44px; }
	.service-card { width: min(720px, 84vw); height: auto; grid-template-columns: 1fr; }
	.service-card__main { min-height: 380px; }
	.service-card__stats { flex-direction: row; gap: 48px; }

	.section-title--lg { font-size: 40px; line-height: 44px; }
	.plan { gap: 32px; }
	.plan--featured { padding: 40px 32px; }

	.faq { flex-direction: column; }
	.faq__intro { max-width: 600px; }

	.cta__card { padding: 56px 40px; }
	.cta__title { font-size: 40px; line-height: 48px; }

	.site-footer__top { flex-direction: column; gap: 48px; }
	.site-footer__nav { justify-content: space-between; padding-bottom: 0; }
	.site-footer__bottom { flex-wrap: wrap; gap: 16px 32px; }
}

/* Mobile */
@media (max-width: 767px) {
	.site-header__cta { display: none; }

	.hero__intro { padding-top: 48px; }
	.hero__eyebrow { font-size: 16px; }
	.hero__title { font-size: 36px; line-height: 44px; padding-inline: 16px; }
	.hero__highlight::before { inset: 2px -4px -6px -5px; box-shadow: inset 0 -5px 0 #e5ab01; }
	.hero__text { font-size: 16px; line-height: 24px; }
	.logos { height: 64px; margin-top: 40px; }
	.logos__set { gap: 28px; padding-right: 28px; }
	.logos__set img { height: 24px; }
	.hero__squiggle { opacity: 0.6; }
	.hero__squiggle--left { top: 20px; left: -300px; }
	.hero__squiggle--right { top: 300px; right: -440px; }

	.hero__booking { padding-top: 40px; padding-bottom: 48px; }
	.booking__media { aspect-ratio: 4 / 3; }
	.booking__form,
	.booking__success { padding: 24px 20px; }
	.booking__title { font-size: 26px; line-height: 32px; }
	.chip { padding: 6px 16px; font-size: 15px; }
	.chips { gap: 8px; }
	.booking__footer { flex-direction: column-reverse; align-items: stretch; }
	.booking__submit { justify-content: space-between; }
	.booking__support .field__error { position: static; max-width: none; margin-top: 8px; text-align: left; }
	.booking__support .field__error:empty { display: none; }

	.section-title { font-size: 26px; line-height: 32px; padding-inline: 20px; }
	.section-title--lg { font-size: 32px; line-height: 36px; padding-inline: 0; }
	.lead,
	.eyebrow { font-size: 17px; line-height: 26px; }

	.team { padding-bottom: 48px; }
	.team__grid { width: 700px; margin-left: -350px; }
	.team__carousel { margin-top: 32px; }
	.member { width: min(340px, calc(100vw - 48px)); }
	.member[data-slot="left"] { --x: -48px; --y: 16px; --r: -5deg; --s: 0.9; opacity: 0; }
	.member[data-slot="right"] { --x: 48px; --y: 16px; --r: 5deg; --s: 0.9; opacity: 0; }
	.member__name { font-size: 22px; }
	.stats { grid-template-columns: 1fr; gap: 28px; margin-top: 40px; }

	.services__head { padding-top: 56px; padding-bottom: 8px; }
	.services__title { font-size: 32px; line-height: 36px; margin-top: 16px; }
	.eyebrow--accent { font-size: 17px; }
	.rail { padding-top: 32px; }
	.service-card { width: 84vw; }
	.service-card__main { min-height: 400px; padding: 24px; gap: 32px; }
	.service-card__title { font-size: 24px; line-height: 30px; }
	.service-card .arrow-link { white-space: normal; font-size: 13px; }
	.service-card .arrow-link__badge { flex: none; }
	.service-card__stats { padding: 24px; gap: 32px; }
	.service-card__stats dt { font-size: 26px; line-height: 32px; }
	.services__foot { padding-top: 32px; padding-bottom: 56px; }
	.services__text { font-size: 17px; line-height: 26px; }

	.pricing { padding-top: 56px; padding-bottom: 56px; }
	.billing { font-size: 17px; margin-top: 32px; }
	.billing__save { position: static; margin-left: 0; transform: rotate(-4deg); }
	.billing.is-yearly .billing__save { transform: scale(1.06); }
	.plans { margin-top: 32px; gap: 16px; }
	.plan { flex-direction: column; }
	.plan__main { gap: 32px; }
	.plan--featured .plan__main { gap: 32px; }
	.plan { padding: 24px 4px; }
	.plan--featured { padding: 32px 20px; }
	.plan__features li { white-space: normal; }

	.faq { padding-top: 56px; padding-bottom: 56px; gap: 32px; }
	.faq-item__toggle { font-size: 17px; line-height: 24px; padding: 16px; }
	.faq-item__inner { padding: 0 16px 18px; }
	.js .faq-item__inner .typing { left: 16px; }

	.cta { padding-top: 32px; }
	.cta::after { height: 50%; }
	.cta__card { padding: 44px 20px; gap: 14px; }
	.cta__title { font-size: 30px; line-height: 36px; }
	.cta__text { font-size: 16px; line-height: 24px; }

	.site-footer__top { padding-top: 56px; padding-bottom: 40px; }
	.site-footer__brand p { font-size: 17px; line-height: 26px; }
	.site-footer__nav { flex-wrap: wrap; gap: 32px 24px; justify-content: flex-start; }
	.site-footer__col,
	.site-footer__col:last-child { width: calc(50% - 12px); }
	.site-footer__link { white-space: normal; }
	.site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* Motion preferences: keep every state change, drop the movement. */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
