/*
 * Southern Drive Collective — pre-launch landing page.
 *
 * Standalone stylesheet for the static placeholder. It is NOT the theme's
 * style.css: the theme file is ~2,900 lines of WooCommerce/PMPro/Bookings
 * plumbing this page has no use for. Everything below is either copied
 * verbatim from themes/sdc/style.css (tokens, buttons, pricing components,
 * nav, type scale) or is new markup specific to this page.
 *
 * The tokens and the docs/design-handoff.md §11 guardrails are LOCKED:
 * cream #FAF6EF, ink #171717, one hot orange #FF5C00, geometric sans only.
 * No dark sections, no serif/condensed display face, no shadows, no
 * gradients, no rounded cards, no default blues. Do not add colors here.
 */

/* ==========================================================================
   Fonts — self-hosted, same files the theme ships.
   ========================================================================== */

@font-face { font-family: 'General Sans'; src: url('../fonts/GeneralSans-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'General Sans'; src: url('../fonts/GeneralSans-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'General Sans'; src: url('../fonts/GeneralSans-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'General Sans'; src: url('../fonts/GeneralSans-Semibold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'General Sans'; src: url('../fonts/GeneralSans-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('../fonts/JetBrainsMono-Variable.woff2') format('woff2'); font-weight: 400 500; font-style: normal; font-display: swap; }

/* ==========================================================================
   Tokens (handoff §3) — copied from the theme. Locked palette.
   ========================================================================== */

:root {
	--bg: #FAF6EF;
	--ink: #171717;
	--accent: #FF5C00;
	--accent-hover: #E85200;
	--tan: #EFE6D4;
	--ink-60: rgba( 23, 23, 23, 0.60 );
	--ink-12: rgba( 23, 23, 23, 0.12 );

	--sans: 'General Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

	--pad-section: clamp( 4rem, 8vw, 7rem );
	--nav-h: 76px;
	--radius: 4px;

	--wrap: 1320px;
	--gutter: clamp( 1.25rem, 4vw, 3rem );
	--measure: 35rem;
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

html { scroll-behavior: smooth; }

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

body {
	background: var(--bg);
	color: var(--ink);
	font-family: var(--sans);
	font-weight: 400;
	line-height: 1.5;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }

/* ==========================================================================
   Accessibility
   ========================================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	border-radius: 2px;
}

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

.skip-link {
	position: absolute;
	top: -100px;
	left: var(--gutter);
	z-index: 100;
	background: var(--accent);
	color: #fff;
	padding: 0.7rem 1.25rem;
	border-radius: var(--radius);
	font-weight: 600;
	text-decoration: none;
	transition: top 0.2s ease;
}

.skip-link:focus { top: 1rem; }

/* ==========================================================================
   Typography (§4)
   ========================================================================== */

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; }
h1 { font-size: clamp( 2.25rem, 5vw, 3.75rem ); }
h2 { font-size: clamp( 1.75rem, 4vw, 3rem ); line-height: 1.06; }
h3 { font-size: clamp( 1.35rem, 2.4vw, 1.9rem ); }
h4 { font-size: 1.15rem; }
p, li { font-size: 1rem; line-height: 1.5; }

a {
	color: var(--ink);
	text-decoration-color: var(--ink-12);
	text-underline-offset: 0.2em;
	transition: text-decoration-color 0.2s ease;
}

a:hover { text-decoration-color: var(--ink); }

.mono {
	font-family: var(--mono);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.72rem;
	font-weight: 400;
	color: var(--ink-60);
}

/* ==========================================================================
   Layout rhythm (§6)
   ========================================================================== */

.container { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--pad-section); }
.section[id] { scroll-margin-top: var(--nav-h); }
.section + .section { border-top: 1px solid var(--ink-12); }
.section-eyebrow { margin-bottom: clamp( 1rem, 2vw, 1.5rem ); }

.section-lead {
	margin-top: 1.25rem;
	font-size: clamp( 1.05rem, 1.6vw, 1.3rem );
	color: var(--ink-60);
	max-width: 44ch;
}

/* Centred variant, for the section headers that sit above a grid. */
.section-head { text-align: center; }
.section-head .section-lead { margin-inline: auto; }

/* ==========================================================================
   Buttons (§5) — copied from the theme.
   ========================================================================== */

.btn {
	font-family: var(--sans);
	font-weight: 600;
	font-size: 0.9rem;
	border: none;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: var(--radius);
	transition: transform 0.15s ease, background 0.2s ease;
}

.btn.btn-primary,
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:visited {
	background: var(--accent);
	color: #fff;
	padding: 0.7rem 1.25rem;
	text-decoration: none;
}

.btn.btn-primary:hover { background: var(--accent-hover); transform: translateY( -1px ); }

.btn.btn-ghost,
.btn.btn-ghost:hover,
.btn.btn-ghost:visited {
	background: transparent;
	color: var(--ink);
	padding: 0.7rem 0;
	position: relative;
	text-decoration: none;
}

.btn.btn-ghost::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0.35rem;
	width: 100%; height: 1px;
	background: var(--ink);
	transform: scaleX( 0 );
	transform-origin: left;
	transition: transform 0.25s ease;
}

.btn.btn-ghost:hover::after { transform: scaleX( 1 ); }

/* ==========================================================================
   Nav (§7) — cream and translucent, as the theme ships it.
   The client's concept comp showed a black bar; §11 rules out dark sections,
   so the bar stays cream and the "Opening Oct 10" chip carries the urgency.
   ========================================================================== */

.nav {
	position: fixed;
	inset: 0 0 auto 0;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-inline: var(--gutter);
	z-index: 50;
	background: rgba( 250, 246, 239, 0.92 );
	backdrop-filter: blur( 8px );
	-webkit-backdrop-filter: blur( 8px );
	border-bottom: 1px solid transparent;
	transition: border-color 0.35s ease;
}

.nav.solid { border-bottom-color: var(--ink-12); }

.brand {
	font-size: clamp( 0.9rem, 4.4vw, 1.15rem );
	line-height: 1;
	text-transform: uppercase;
	color: var(--ink);
	text-decoration: none;
	display: flex;
	align-items: baseline;
	gap: 0.45em;
	white-space: nowrap;
}

.brand:hover { text-decoration: none; }
.brand-strong { font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.brand-light { font-weight: 300; letter-spacing: 0.06em; color: var(--ink-60); }

.nav-links {
	display: flex;
	align-items: center;
	gap: clamp( 1.25rem, 2.5vw, 2.5rem );
	list-style: none;
}

.nav-links a:not(.btn) {
	color: var(--ink);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	opacity: 0.82;
	transition: opacity 0.2s ease;
}

.nav-links a:not(.btn):hover { opacity: 1; }

/*
 * The status chip replaces the live site's "Join" CTA. It is a link to the
 * waitlist, not a button, because nothing can be bought yet — presenting it
 * as a primary orange CTA would promise a checkout that does not exist.
 */
.nav-chip {
	font-family: var(--mono);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--ink);
	background: var(--tan);
	border: 1px solid var(--ink-12);
	padding: 0.55rem 0.9rem;
	text-decoration: none;
	white-space: nowrap;
}

.nav-chip:hover { text-decoration: none; border-color: var(--ink); }

.menu-toggle { display: none; background: transparent; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span[aria-hidden="true"] { width: 24px; height: 2px; background: var(--ink); display: block; }

/* ==========================================================================
   Hero — deliberately compact. The tiers are the page's job, so the hero
   states the date and hands off rather than filling a viewport on its own.
   ========================================================================== */

.hero {
	padding-top: calc( var(--nav-h) + clamp( 2.5rem, 6vw, 4.5rem ) );
	padding-bottom: clamp( 2.5rem, 5vw, 4rem );
	text-align: center;
}

.hero-eyebrow { margin-bottom: 0.75rem; color: var(--accent); }

.hero-title {
	font-size: clamp( 2.5rem, 8vw, 5rem );
	letter-spacing: -0.03em;
	line-height: 0.98;
	text-transform: uppercase;
}

.hero-date {
	display: inline-block;
	margin-top: 1.25rem;
	padding: 0.6rem 1.25rem;
	background: var(--tan);
	border: 1px solid var(--ink-12);
	font-family: var(--mono);
	font-size: clamp( 0.8rem, 1.6vw, 1rem );
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

/*
 * The collaboration credit, between the date and the mark row it names.
 *
 * Deliberately a step quieter than .hero-sub: it is a factual credit, and the
 * "more than a shop" line below it is the one that should carry the hero. The
 * collaborator names are the only emphasis — they caption the marks directly
 * underneath, which is the point of having the sentence here.
 */
.hero-collab {
	margin: clamp( 1.1rem, 2.2vw, 1.5rem ) auto 0;
	max-width: 46ch;
	font-size: clamp( 0.95rem, 1.25vw, 1.05rem );
	line-height: 1.55;
	color: var(--ink-60);
}

.hero-collab strong {
	font-weight: 600;
	color: var(--ink);
}

/* Lead-in tightened: this now follows the mark row, not the date chip. */
.hero-sub {
	margin: clamp( 1rem, 2vw, 1.4rem ) auto 0;
	max-width: 52ch;
	font-size: clamp( 1.05rem, 1.6vw, 1.25rem );
	color: var(--ink-60);
}

/* The slogan, as a spaced run rather than a sentence. */
.hero-slogan {
	margin-top: clamp( 1.25rem, 2.5vw, 1.75rem );
	font-family: var(--sans);
	font-weight: 700;
	font-size: clamp( 1rem, 2vw, 1.35rem );
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.hero-slogan .accent { color: var(--accent); }

.hero-logo { width: clamp( 140px, 22vw, 230px ); margin: clamp( 2rem, 4vw, 3rem ) auto 0; }

/*
 * Collaborator marks. The two-partner concept flanked the headline; with a
 * third they sit in one centred row instead, since a trio cannot be split
 * left/right without giving one of the three unequal billing.
 *
 * The marks ship with a baked-in circular alpha channel, so no border-radius
 * is needed and there are no square corners to hide. They are sized well below
 * the concept's scale on purpose: they are the only saturated colour on a page
 * whose palette is one accent, and at hero scale three competing colour worlds
 * pull focus off the headline they are meant to support.
 */
.hero-marks {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: clamp( 1rem, 4vw, 3rem );
	margin: clamp( 1.5rem, 3vw, 2.25rem ) 0 0;
	padding: 0;
	list-style: none;
}

.hero-mark { display: block; }

.hero-mark img {
	width: clamp( 92px, 9.5vw, 140px );
	height: auto;
}

/*
 * A black disc painted behind a mark, for artwork that is dark to the rim
 * (Shadow Society). It guarantees the mark reads as a solid round shape on the
 * cream even if the source file ever ships with a transparent ground instead
 * of a baked-in one.
 *
 * The gradient stops 1px inside the box rather than using border-radius: 50%,
 * because the image's own circular alpha and a CSS-rounded box antialias
 * differently and a full-size disc leaves a hairline dark fringe on the cream.
 */
.hero-mark--ground img {
	background: radial-gradient( circle, #000 0 calc( 50% - 1px ), transparent calc( 50% - 1px ) );
}

/*
 * The tiers are what this page exists for, so the section that follows the
 * hero pulls up close rather than opening with a full --pad-section. Without
 * this the hero's own bottom padding stacks on top of it and pushes the first
 * card most of a viewport further down.
 */
.hero + .section { padding-top: clamp( 1.5rem, 3vw, 2.5rem ); }

/* ==========================================================================
   Pricing (§5 / §8) — components copied from the theme so this page and the
   real membership page cannot drift apart visually.
   ========================================================================== */

.pricing-billing {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin: clamp( 2rem, 4vw, 3rem ) auto 0;
	padding: 0;
	border: 1px solid var(--ink-12);
	border-radius: 0;
}

.pricing-billing label {
	padding: 0.7rem 1.25rem;
	font-family: var(--mono);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--ink-60);
	cursor: pointer;
}

.pricing-billing input:checked + label { background: var(--tan); color: var(--ink); font-weight: 600; }
.pricing-billing input:focus-visible + label { outline: 2px solid var(--accent); outline-offset: -2px; }
.pricing-billing-save { letter-spacing: 0.04em; text-transform: none; }

/*
 * MONTHLY is the default. The live membership page still defaults to annual;
 * changing it there is a planned but unstarted job, so THESE TWO WILL DISAGREE
 * until that lands — that is known, not a bug to "fix" by reverting this.
 *
 * The default period is the one that shows with NO rule applied, so that a
 * browser without :has() support still lands on a period somebody chose.
 * Keep in step with the `checked` radio in index.php: the CSS default and the
 * markup default must name the same period, or the first paint contradicts
 * the highlighted label.
 */
[data-period="year"] { display: none; }
body:has( #sdc-billing-year:checked ) [data-period="year"] { display: block; }
body:has( #sdc-billing-year:checked ) [data-period="month"] { display: none; }

.pricing-grid {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 250px, 1fr ) );
	gap: clamp( 1rem, 2.5vw, 1.75rem );
	margin: clamp( 2rem, 4vw, 3rem ) 0;
	align-items: stretch;
}

.pricing-card {
	display: flex;
	flex-direction: column;
	padding: clamp( 1.5rem, 3vw, 2rem );
	background: var(--bg);
	border: 1px solid var(--ink-12);
	border-radius: 0;
}

/* Reserve the badge row on cards without a badge, so all three tier names
   sit on one baseline. See the theme's note on this rule. */
.pricing-card:not(.pricing-card--payg):not(:has( > .pricing-recommended-badge )):not(:has( > .pricing-cap-badge ))::before {
	content: "";
	display: block;
	height: 26px;
	margin-bottom: 12px;
}

/* Premier is the client's recommended tier. The stronger border is --ink,
   not --accent, so the frame doesn't add a second orange element. */
.pricing-card--recommended { border: 2px solid var(--ink); }

.pricing-recommended-badge {
	display: inline-block;
	font-family: var(--mono);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--accent);
	background: var(--tan);
	padding: 0.25rem 0.6rem;
	margin: 0 0 0.75rem;
}

.pricing-card-tier { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.015em; margin: 0 0 0.5rem; }
.pricing-card-price { font-family: var(--mono); font-size: 1.75rem; margin: 0 0 1.25rem; }
.pricing-card-price-unit { font-size: 1rem; color: var(--ink-60); }

.pricing-card-price-note {
	display: block;
	margin-top: 0.35rem;
	font-family: var(--sans);
	font-size: 0.8rem;
	line-height: 1.4;
	color: var(--ink-60);
}

.pricing-card .pricing-features { list-style: none; padding: 0; margin: 0 0 1.5rem; flex-grow: 1; }

.pricing-features li {
	position: relative;
	padding-left: 1.25rem;
	margin-bottom: 0.65rem;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* Ink, not accent — three cards of features would otherwise put ~20 orange
   marks in one viewport, against §5. The accent belongs to the RECOMMENDED
   badge and the one filled button. */
.pricing-features li::before {
	content: "";
	position: absolute;
	left: 0; top: 0.55em;
	width: 6px; height: 6px;
	background: var(--ink);
}

.pricing-features del { color: var(--ink-60); }

.pricing-cap-badge {
	display: inline-block;
	font-family: var(--mono);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ink-60);
	background: var(--tan);
	padding: 0.25rem 0.6rem;
	margin: 0 0 0.75rem;
}

.pricing-cta { margin-top: auto; }

/* "No Membership" — its own row under the three paid tiers. Quieter by
   treatment rather than by being shrunk, so it reads as the fallback and
   not as a fourth, cheapest tier. */
.pricing-card--payg {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	/* Tighter than the tier grid's gap: the three rates only just fit on one
	   line at 1440px, and at 2.5rem they overflowed by ~4px and orphaned the
	   last one onto a second row. */
	gap: clamp( 1rem, 2vw, 1.75rem );
	color: var(--ink-60);
}

.pricing-card--payg .pricing-card-tier { margin: 0; font-size: 1rem; color: var(--ink); }
.pricing-card--payg .pricing-card-price { margin: 0; font-size: 0.95rem; color: var(--ink-60); }
.pricing-card--payg .pricing-features { display: flex; flex-wrap: wrap; gap: 0.35rem 1.25rem; margin: 0; flex-grow: 1; }
.pricing-card--payg .pricing-features li { margin-bottom: 0; font-size: 0.9rem; padding-left: 1rem; }
.pricing-card--payg .pricing-features li::before { top: 0.5em; width: 5px; height: 5px; background: var(--ink-60); }

/*
 * Keep the pay-as-you-go row on ONE line, and undo the vertical cards' auto
 * top margin on its CTA.
 *
 * Two rules collide here. `.pricing-card--payg` turns the card on its side
 * (flex-direction: row), but `.pricing-cta { margin-top: auto }` was written
 * for the upright tier cards, where it pins the button to the bottom. In a row
 * that same auto margin resolves against the CROSS axis and shoves the button
 * to the bottom of its flex line instead — and because the three children's
 * base widths overflow the container, `flex-wrap: wrap` had already dropped it
 * onto a second line. Together they produced a tall empty box with the CTA
 * stranded at bottom-left.
 *
 * So: don't wrap (the features list wraps internally, so it can absorb the
 * squeeze), let it shrink below its content width, and let flex-grow on the
 * features push the CTA to the right instead of an auto margin. The 760px
 * breakpoint below restacks this to a column, where none of it applies.
 */
.pricing-card--payg { flex-wrap: nowrap; }
.pricing-card--payg > div:first-child { flex: none; }
.pricing-card--payg .pricing-features { min-width: 0; }
.pricing-card--payg .pricing-cta { margin-top: 0; flex: none; }

/* A line under the grid explaining that nothing charges yet. */
.pricing-note {
	margin-top: clamp( 1.5rem, 3vw, 2rem );
	font-size: 0.9rem;
	color: var(--ink-60);
	text-align: center;
}

/* ==========================================================================
   Amenities
   ========================================================================== */

.amenity-grid {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 260px, 1fr ) );
	gap: clamp( 1.5rem, 4vw, 3rem );
	margin-top: clamp( 2rem, 4vw, 3rem );
}

.amenity h3 { margin-bottom: 0.75rem; }
.amenity p { color: var(--ink-60); }
.amenity-kicker { margin-bottom: 0.6rem; }

.amenity-list { list-style: none; margin-top: 1rem; padding: 0; }

.amenity-list li {
	position: relative;
	padding-left: 1.25rem;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
	color: var(--ink-60);
}

.amenity-list li::before {
	content: "";
	position: absolute;
	left: 0; top: 0.55em;
	width: 6px; height: 6px;
	background: var(--ink);
}

/* ==========================================================================
   FAQ — native disclosure, no JS.
   ========================================================================== */

.faq { margin-top: clamp( 2rem, 4vw, 3rem ); max-width: 60rem; }

.faq details { border-bottom: 1px solid var(--ink-12); }
.faq details:first-of-type { border-top: 1px solid var(--ink-12); }

.faq summary {
	cursor: pointer;
	list-style: none;
	padding: 1.25rem 2.5rem 1.25rem 0;
	font-weight: 600;
	font-size: clamp( 1rem, 1.6vw, 1.1rem );
	position: relative;
}

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

/* Plus that becomes a minus. Two bars, the vertical one rotated away. */
.faq summary::after,
.faq summary::before {
	content: "";
	position: absolute;
	right: 0.35rem;
	top: 50%;
	width: 14px; height: 2px;
	background: var(--ink);
	transition: transform 0.2s ease;
}

.faq summary::before { transform: translateY( -50% ); }
.faq summary::after { transform: translateY( -50% ) rotate( 90deg ); }
.faq details[open] summary::after { transform: translateY( -50% ) rotate( 0deg ); }

.faq details > p { padding: 0 2.5rem 1.5rem 0; color: var(--ink-60); max-width: var(--measure); }

/* ==========================================================================
   Waitlist
   ========================================================================== */

.waitlist { background: var(--tan); }

.waitlist-inner {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 280px, 1fr ) );
	gap: clamp( 2rem, 5vw, 4rem );
	align-items: start;
}

.waitlist-form { display: grid; gap: 1rem; }

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

.field label {
	font-family: var(--mono);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--ink-60);
}

.field input,
.field select {
	background: var(--bg);
	border: 1px solid var(--ink-12);
	border-radius: 0;
	padding: 0.75rem 0.9rem;
	font-size: 1rem;
	width: 100%;
}

.field input:focus,
.field select:focus { border-color: var(--ink); }

/* Honeypot. Off-screen rather than display:none — some bots skip hidden
   inputs but will happily fill one that is merely positioned away. */
.field-hp {
	position: absolute !important;
	left: -9999px;
	width: 1px; height: 1px;
	overflow: hidden;
}

.waitlist-form .btn { justify-content: center; }

.form-note { font-size: 0.85rem; color: var(--ink-60); }

.form-message {
	padding: 0.9rem 1.1rem;
	border: 1px solid var(--ink);
	background: var(--bg);
	font-size: 0.95rem;
}

.form-message.is-error { border-color: var(--accent); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { border-top: 1px solid var(--ink-12); padding-block: clamp( 3rem, 6vw, 5rem ); }

.footer-grid {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 200px, 1fr ) );
	gap: clamp( 1.5rem, 4vw, 3rem );
}

.footer-logo { width: clamp( 120px, 16vw, 170px ); }
.footer-heading { margin-bottom: 0.75rem; }
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 0.4rem; font-size: 0.95rem; color: var(--ink-60); }
.footer-list a { color: var(--ink-60); text-decoration: none; }
.footer-list a:hover { color: var(--ink); }

.footer-bottom {
	margin-top: clamp( 2rem, 4vw, 3rem );
	padding-top: 1.5rem;
	border-top: 1px solid var(--ink-12);
	font-size: 0.85rem;
	color: var(--ink-60);
}

/* ==========================================================================
   Breakpoint — the theme has exactly one, at 760px. Keep it that way.
   ========================================================================== */

@media ( max-width: 760px ) {
	.nav-links { display: none; }
	.nav-links.is-open {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
		position: absolute;
		inset: var(--nav-h) 0 auto 0;
		background: var(--bg);
		border-bottom: 1px solid var(--ink-12);
		padding: 1.5rem var(--gutter);
	}

	.menu-toggle { display: flex; }

	/*
	 * Keep the three marks on one line: at the desktop 9.5vw they would wrap to
	 * 2 + 1 on a phone, which reads as two partners and an afterthought. Three
	 * marks plus two gaps come to ~72vw here, inside the container's padding.
	 */
	.hero-marks { gap: clamp( 0.75rem, 4vw, 1.5rem ); }
	.hero-mark img { width: clamp( 72px, 20vw, 110px ); }

	.pricing-card--payg { flex-direction: column; align-items: flex-start; }
	.pricing-card--payg .pricing-features { flex-direction: column; gap: 0.35rem; }
}
