/* =============================================================
   SW18 Freehold — main stylesheet
   Editorial / luxury real-estate aesthetic.
   Palette drawn from the interior renders: cream paper, warm ink,
   eucalyptus sage, terracotta clay, taupe.
   ============================================================= */

:root {
	--ink:        #211d1a;
	--ink-soft:   #534b43;
	--ink-faint:  #8a8077;
	--paper:      #f5efe5;
	--paper-2:    #efe6d8;
	--white:      #fcf9f4;
	--sage:       #7d8c73;
	--sage-deep:  #5e6c56;
	--sage-tint:  #e7ebe2;
	--clay:       #bd7b51;
	--clay-deep:  #a5683f;
	--taupe:      #cdb6a6;
	--line:       rgba(33, 29, 26, 0.14);
	--line-light: rgba(252, 249, 244, 0.20);

	--font-display: "Fraunces", Georgia, "Times New Roman", serif;
	--font-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--shell:   1180px;
	--gutter:  clamp(20px, 5vw, 64px);
	--radius:  2px;

	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--ink);
	background: var(--paper);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.sw18-skip {
	position: absolute; left: -9999px; top: 0; z-index: 1000;
	background: var(--ink); color: var(--white); padding: 12px 18px;
}
.sw18-skip:focus { left: 12px; top: 12px; }

.sw18-shell {
	width: 100%;
	max-width: var(--shell);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

/* The hero and header span the full viewport so the hero fills wide screens.
   Text-heavy sections keep the narrower --shell width for comfortable reading. */
.sw18-header__inner,
.sw18-hero__content {
	max-width: none;
}

/* ---------- Typography ---------- */
.sw18-kicker {
	font-size: 0.72rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--sage-deep);
	margin: 0 0 1.1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.7em;
}
.sw18-kicker--light { color: var(--taupe); }

/* Hero kicker: brighter and more legible over the photographic background */
.sw18-hero__content .sw18-kicker--light {
	color: var(--white);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.26em;
	text-shadow: 0 1px 14px rgba(20, 17, 15, 0.6);
}

.sw18-h2 {
	font-family: var(--font-display);
	font-weight: 400;
	font-optical-sizing: auto;
	font-size: clamp(1.9rem, 4.2vw, 3.1rem);
	line-height: 1.08;
	letter-spacing: -0.01em;
	margin: 0 0 1.2rem;
	color: var(--ink);
}
.sw18-h2 em { font-style: italic; color: var(--clay-deep); }
.sw18-h2--center { text-align: center; }
.sw18-h2--light { color: var(--white); }
.sw18-h2--light em { color: var(--taupe); }

.sw18-h3 {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
	line-height: 1.2;
	margin: 0 0 0.7rem;
}

.sw18-prose {
	font-size: 1.05rem;
	color: var(--ink-soft);
	margin: 0 0 1.2rem;
	max-width: 56ch;
}
.sw18-prose--center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.sw18-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6em;
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.04em;
	padding: 0.85em 1.6em;
	border-radius: var(--radius);
	border: 1px solid transparent;
	transition: background .35s var(--ease), color .35s var(--ease),
	            border-color .35s var(--ease), transform .25s var(--ease);
	text-transform: uppercase;
	line-height: 1;
}
.sw18-btn:hover { transform: translateY(-2px); }
.sw18-btn:active { transform: translateY(0); }

.sw18-btn--accent { background: var(--clay); color: var(--white); }
.sw18-btn--accent:hover { background: var(--clay-deep); }

.sw18-btn--line { border-color: rgba(252, 249, 244, 0.65); color: var(--white); }
.sw18-btn--line:hover { background: rgba(252,249,244,0.10); }

.sw18-btn--ghost { border-color: var(--line); color: var(--ink); }
.sw18-btn--ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.sw18-btn--lg { padding: 1.05em 2em; font-size: 0.95rem; }
.sw18-btn--block { width: 100%; }

/* ---------- Header ---------- */
.sw18-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	padding: 0.6rem 0;
	transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.sw18-header__inner {
	display: flex;
	align-items: center;
	gap: 2rem;
}
.sw18-brand { display: flex; flex-direction: column; line-height: 1; }
.sw18-brand__mark {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.4rem;
	letter-spacing: 0.04em;
	color: var(--white);
	transition: color .4s var(--ease);
}
.sw18-brand__sub {
	font-size: 0.62rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(252,249,244,0.75);
	margin-top: 4px;
	transition: color .4s var(--ease);
}
.sw18-nav {
	margin-left: auto;
	display: flex;
	gap: 2rem;
}
.sw18-nav a {
	font-size: 0.82rem;
	letter-spacing: 0.05em;
	font-weight: 500;
	color: rgba(252,249,244,0.85);
	position: relative;
	transition: color .3s var(--ease);
}
.sw18-nav a::after {
	content: ""; position: absolute; left: 0; bottom: -6px;
	width: 0; height: 1px; background: currentColor;
	transition: width .3s var(--ease);
}
.sw18-nav a:hover { color: var(--white); }
.sw18-nav a:hover::after { width: 100%; }
.sw18-header__cta { margin-left: 0.5rem; }

/* Scrolled state -> paper background, dark text */
.sw18-header.is-scrolled {
	background: rgba(245, 239, 229, 0.92);
	backdrop-filter: blur(10px);
	box-shadow: 0 1px 0 var(--line);
	padding: 0.35rem 0;
}
.sw18-header.is-scrolled .sw18-brand__mark { color: var(--ink); }
.sw18-header.is-scrolled .sw18-brand__sub { color: var(--ink-faint); }
.sw18-header.is-scrolled .sw18-nav a { color: var(--ink-soft); }
.sw18-header.is-scrolled .sw18-nav a:hover { color: var(--ink); }

/* ---------- Hero ---------- */
.sw18-hero {
	position: relative;
	min-height: clamp(620px, 100vh, 1000px);
	display: flex;
	align-items: flex-end;
	color: var(--white);
	overflow: hidden;
}
.sw18-hero__media { position: absolute; inset: 0; z-index: 0; }
.sw18-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.sw18-hero__scrim {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(20,17,15,0.42) 0%, rgba(20,17,15,0.10) 28%, rgba(20,17,15,0.18) 60%, rgba(20,17,15,0.82) 100%),
		linear-gradient(90deg, rgba(20,17,15,0.55) 0%, rgba(20,17,15,0.30) 30%, rgba(20,17,15,0.08) 55%, rgba(20,17,15,0) 70%);
}
.sw18-hero__content {
	position: relative;
	z-index: 1;
	padding-block: clamp(3rem, 12vh, 7rem) clamp(3rem, 9vh, 6rem);
	width: 100%;
}
.sw18-hero__title {
	font-family: var(--font-display);
	font-weight: 300;
	font-optical-sizing: auto;
	font-size: clamp(3rem, 9vw, 6.6rem);
	line-height: 0.96;
	letter-spacing: -0.02em;
	margin: 0 0 1.3rem;
}
.sw18-hero__title span { display: block; }
.sw18-hero__title-em { font-style: italic; font-weight: 400; }
.sw18-hero__lede {
	font-size: clamp(1.05rem, 1.8vw, 1.4rem);
	max-width: 44ch;
	color: rgba(252,249,244,0.92);
	margin: 0 0 2rem;
	line-height: 1.45;
}
.sw18-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

/* Rent to Own flag — a feature badge, deliberately NOT styled like the clay CTA buttons.
   Sage green + checkmark + tag shape so it reads as "included feature", not "click me". */
.sw18-hero__flag {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	background: var(--sage-deep);
	color: var(--white);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 0.55rem 1.1rem;
	border-radius: 4px;
	margin: 0 0 1.9rem;
	border: 1px solid rgba(252, 249, 244, 0.22);
	box-shadow: 0 4px 16px -6px rgba(33, 29, 26, 0.45);
}
.sw18-hero__flag::before {
	content: "";
	width: 10px;
	height: 6px;
	border-left: 2px solid var(--white);
	border-bottom: 2px solid var(--white);
	transform: rotate(-45deg) translateY(-1px);
	flex: none;
}
.sw18-hero__facts {
	display: flex;
	gap: clamp(1.5rem, 5vw, 4rem);
	border-top: 1px solid var(--line-light);
	padding-top: 1.5rem;
	max-width: 640px;
}
.sw18-hero__facts li { display: flex; flex-direction: column; gap: 0.2rem; }
.sw18-hero__facts strong {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	line-height: 1;
}
.sw18-hero__facts span {
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(252,249,244,0.7);
}

/* ---------- Sections base ---------- */
.sw18-section { padding-block: clamp(4rem, 10vw, 8rem); }
.sw18-section__head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.sw18-section__head .sw18-kicker { justify-content: center; }

/* ---------- Opportunity ---------- */
.sw18-opportunity { background: var(--white); }
.sw18-opportunity__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(2.5rem, 6vw, 5.5rem);
	align-items: center;
}
.sw18-opportunity__intro .sw18-h2 { max-width: 16ch; }

.sw18-benefits {
	display: grid;
	gap: 0;
	border-top: 1px solid var(--line);
}
.sw18-benefits li {
	display: flex;
	align-items: baseline;
	gap: 1.2rem;
	padding: 1.4rem 0;
	border-bottom: 1px solid var(--line);
}
.sw18-benefits__no {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.9rem;
	line-height: 1;
	color: var(--ink-faint);
	min-width: 2.4ch;
}
.sw18-benefits--yes .sw18-benefits__no { color: var(--sage-deep); }
.sw18-benefits__txt {
	font-size: 1.15rem;
	font-weight: 500;
	color: var(--ink);
}
.sw18-benefits--yes .sw18-benefits__txt { color: var(--sage-deep); }

/* ---------- Design feature rows ---------- */
.sw18-design { background: var(--paper); }
.sw18-feature {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(2rem, 6vw, 5rem);
	align-items: center;
	margin-top: clamp(2.5rem, 6vw, 5rem);
}
.sw18-feature--reverse .sw18-feature__media { order: 2; }
.sw18-feature__media {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: 0 30px 60px -30px rgba(33,29,26,0.4);
}
.sw18-feature__media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform 1.2s var(--ease);
}
.sw18-feature__media:hover img { transform: scale(1.04); }

.sw18-ticks { display: grid; gap: 0.7rem; margin-top: 1.3rem; }
.sw18-ticks li {
	position: relative;
	padding-left: 2rem;
	font-size: 1.02rem;
	color: var(--ink-soft);
}
.sw18-ticks li::before {
	content: "";
	position: absolute;
	left: 0; top: 0.55em;
	width: 11px; height: 6px;
	border-left: 1.5px solid var(--clay);
	border-bottom: 1.5px solid var(--clay);
	transform: rotate(-45deg);
}
.sw18-ticks--light li { color: rgba(252,249,244,0.9); }
.sw18-ticks--light li::before { border-color: var(--taupe); }

/* ---------- Gallery ---------- */
.sw18-gallery { background: var(--white); }
.sw18-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: clamp(170px, 17.5vw, 260px);
	grid-auto-flow: row dense;
	gap: clamp(0.6rem, 1.1vw, 1rem);
}
.sw18-grid__item {
	margin: 0;
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
}
.sw18-grid__item--feature { grid-column: span 2; grid-row: span 2; }
.sw18-grid__item img {
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	object-fit: cover;
	transition: transform 1.1s var(--ease);
}
.sw18-grid__item:hover img { transform: scale(1.05); }
.sw18-grid__item figcaption {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 1.8rem 1.2rem 1rem;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	color: var(--white);
	background: linear-gradient(180deg, transparent, rgba(20,17,15,0.7));
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.sw18-grid__item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- Scarcity band ---------- */
.sw18-scarcity {
	background: var(--sage-deep);
	color: var(--white);
	text-align: center;
}
.sw18-scarcity__inner { max-width: 860px; margin-inline: auto; }
.sw18-scarcity__inner .sw18-kicker { justify-content: center; }
.sw18-scarcity__quote {
	font-family: var(--font-display);
	font-weight: 300;
	font-size: clamp(1.6rem, 3.6vw, 2.7rem);
	line-height: 1.22;
	letter-spacing: -0.01em;
	margin: 0 0 1.5rem;
}
.sw18-scarcity__note {
	color: rgba(252,249,244,0.82);
	font-size: 1.05rem;
	margin: 0 0 2.2rem;
}

/* ---------- Location ---------- */
.sw18-location { background: var(--paper); }
.sw18-location__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
}
.sw18-location__text .sw18-h2 { max-width: 14ch; }
.sw18-location__list { border-top: 1px solid var(--line); }
.sw18-location__list li {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--line);
	font-size: 1.2rem;
	font-weight: 500;
}
.sw18-location__list span {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1rem;
	color: var(--clay);
	min-width: 2ch;
}

/* ---------- Register ---------- */
.sw18-register { background: var(--ink); color: var(--white); }
.sw18-register__grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: start;
}
.sw18-register__intro { color: rgba(252,249,244,0.85); margin: 1.5rem 0 1rem; font-weight: 600; letter-spacing: 0.02em; }
.sw18-register__limited {
	margin-top: 2rem;
	display: inline-block;
	background: rgba(189, 123, 81, 0.16);
	border: 1px solid var(--clay);
	color: var(--white);
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.2rem;
	padding: 0.7rem 1.25rem;
	border-radius: 999px;
}

/* ---------- Form ---------- */
.sw18-register__formwrap {
	background: var(--white);
	color: var(--ink);
	border-radius: var(--radius);
	padding: clamp(1.6rem, 3.5vw, 2.8rem);
	box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6);
}
.sw18-form__row { margin-bottom: 1.1rem; }
.sw18-form__row--two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.sw18-field { display: block; }
.sw18-field__label {
	display: block;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--ink-soft);
	margin-bottom: 0.5rem;
}
.sw18-field__label em { color: var(--clay); font-style: normal; }
.sw18-field input,
.sw18-field textarea,
.sw18-select select {
	width: 100%;
	font-family: inherit;
	font-size: 1rem;
	color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 0.85rem 1rem;
	transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.sw18-field input:focus,
.sw18-field textarea:focus,
.sw18-select select:focus {
	outline: none;
	border-color: var(--clay);
	background: var(--white);
	box-shadow: 0 0 0 3px rgba(189,123,81,0.16);
}
.sw18-field textarea { resize: vertical; min-height: 84px; }

.sw18-select { position: relative; display: block; }
.sw18-select select { appearance: none; padding-right: 2.6rem; }
.sw18-select::after {
	content: "";
	position: absolute;
	right: 1.1rem; top: 50%;
	width: 8px; height: 8px;
	border-right: 1.5px solid var(--ink-soft);
	border-bottom: 1.5px solid var(--ink-soft);
	transform: translateY(-65%) rotate(45deg);
	pointer-events: none;
}

.sw18-consent {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	margin: 1.2rem 0 1.6rem;
	font-size: 0.88rem;
	color: var(--ink-soft);
	line-height: 1.45;
}
.sw18-consent input {
	margin-top: 0.2rem;
	width: 18px; height: 18px;
	accent-color: var(--clay);
	flex: 0 0 auto;
}

/* Honeypot — visually hidden but not display:none (so bots fill it) */
.sw18-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px; overflow: hidden;
}

/* Button spinner */
.sw18-btn__spinner {
	width: 16px; height: 16px;
	border: 2px solid rgba(252,249,244,0.4);
	border-top-color: var(--white);
	border-radius: 50%;
	display: none;
	animation: sw18-spin .7s linear infinite;
}
.sw18-form.is-loading .sw18-btn__spinner { display: inline-block; }
.sw18-form.is-loading .sw18-btn__label { opacity: 0.7; }
@keyframes sw18-spin { to { transform: rotate(360deg); } }

.sw18-form__status {
	margin: 1rem 0 0;
	font-size: 0.9rem;
	min-height: 1.2em;
}
.sw18-form__status.is-error { color: #b5462f; font-weight: 600; }
.sw18-form__status.is-success { color: var(--sage-deep); font-weight: 600; }
.sw18-form__status.is-pending { color: var(--ink-faint); }

/* Thank-you panel (injected by JS) */
.sw18-thanks { text-align: center; padding: 1.5rem 0 1rem; }
.sw18-thanks__tick {
	width: 64px; height: 64px;
	border-radius: 50%;
	background: var(--sage-tint);
	color: var(--sage-deep);
	display: grid; place-items: center;
	font-size: 1.8rem;
	margin: 0 auto 1.2rem;
}
.sw18-thanks p { color: var(--ink-soft); max-width: 36ch; margin-inline: auto; }

/* ---------- Footer ---------- */
.sw18-footer { background: var(--ink); color: rgba(252,249,244,0.7); padding-block: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line-light); }
.sw18-footer__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
	align-items: flex-end;
}
.sw18-footer__brand .sw18-brand__mark { color: var(--white); font-size: 1.6rem; display: block; margin-bottom: 0.6rem; }
.sw18-footer__brand p { margin: 0; max-width: 36ch; font-size: 0.95rem; }
.sw18-footer__meta { text-align: right; max-width: 420px; }
.sw18-footer__small { font-size: 0.74rem; line-height: 1.5; color: rgba(252,249,244,0.45); margin: 1.2rem 0 0; }

/* ---------- Reveal animation ---------- */
[data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1; transform: none; transition: none; }
	.sw18-feature__media img, .sw18-grid__item img { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.sw18-grid { grid-auto-rows: clamp(150px, 20vw, 240px); }
}

@media (max-width: 900px) {
	.sw18-nav { display: none; }
	.sw18-opportunity__grid,
	.sw18-feature,
	.sw18-location__grid,
	.sw18-register__grid {
		grid-template-columns: 1fr;
	}
	/* When the nav is hidden, keep the CTA pushed to the right edge */
	.sw18-header__cta { margin-left: auto; }
	.sw18-feature--reverse .sw18-feature__media { order: 0; }
	.sw18-register__formwrap { order: -1; }
	.sw18-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(150px, 30vw, 240px); }
	.sw18-grid__item--feature { grid-column: auto; grid-row: auto; }
	/* Captions can't rely on hover on touch devices — show them always */
	.sw18-grid__item figcaption { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
	:root { --gutter: 22px; }
	/* Use small-viewport height so mobile browser chrome doesn't clip the hero */
	.sw18-hero { min-height: 100svh; }
	.sw18-section { padding-block: clamp(3rem, 12vw, 4.5rem); }
	.sw18-header__cta { padding: 0.6rem 1rem; font-size: 0.76rem; }

	/* Stacked, full-width hero buttons */
	.sw18-hero__actions { flex-direction: column; }
	.sw18-hero__actions .sw18-btn { width: 100%; justify-content: center; }
	.sw18-hero__facts { gap: 1.2rem 2.5rem; }

	/* Forms stack to a single column */
	.sw18-form__row--two { grid-template-columns: 1fr; }

	/* Gallery becomes a single readable column */
	.sw18-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
	.sw18-grid__item--feature { grid-column: auto; grid-row: auto; }
	.sw18-grid__item img { aspect-ratio: 3 / 2; height: auto; }

	.sw18-footer__inner { flex-direction: column; align-items: flex-start; }
	.sw18-footer__meta { text-align: left; }

	/* Tighten dense lists */
	.sw18-location__list li { gap: 1rem; font-size: 1.05rem; padding: 1.2rem 0; }
	.sw18-benefits li { gap: 1rem; padding: 1.2rem 0; }
	.sw18-benefits__no { font-size: 1.6rem; }
	.sw18-benefits__txt { font-size: 1.05rem; }

	/* Comfortable tap targets (>=48px) */
	.sw18-field input, .sw18-select select, .sw18-btn { min-height: 48px; }
}

@media (max-width: 420px) {
	/* Free up header space on the smallest phones — hero CTA still covers it */
	.sw18-header__cta { display: none; }
	.sw18-hero__title { font-size: 2.6rem; }
	.sw18-hero__facts { gap: 1rem 1.6rem; }
	.sw18-hero__flag { font-size: 0.68rem; letter-spacing: 0.12em; padding: 0.55rem 0.95rem; }
	.sw18-section__head { text-align: left; }
	.sw18-section__head .sw18-kicker { justify-content: flex-start; }
}