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

:root {
	--gold: #c9a96e;
	--gold-light: #e8c98a;
	--gold-dark: #8a6e42;
	--brown-deep: #5c4420;
	--brown-mid: #6b5b45;
	--brown-light: #7a6245;
	--brown-pale: #b08a50;
	--cream: #fdf9f4;
	--cream-warm: #fdf6ec;
	--cream-alt: #fffaf3;
	--sand: #f7edd8;
	--border: #e8d9c0;
	--dark: #3a2c1a;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Jost', sans-serif;
	background: var(--cream);
	color: var(--brown-deep);
	overflow-x: hidden;
}

/* ── NAV ── */
nav {
	position: sticky;
	top: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.1rem 3rem;
	background: rgba(253, 249, 244, 0.96);
	backdrop-filter: blur(8px);
	border-bottom: 0.5px solid var(--border);
}

.logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 22px;
	font-weight: 300;
	letter-spacing: 0.2em;
	color: var(--gold-dark);
	text-transform: uppercase;
	text-decoration: none;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
	align-items: center;
}

.nav-links a {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--brown-mid);
	text-decoration: none;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--gold);
}

.nav-book {
	background: var(--gold) !important;
	color: #fff !important;
	padding: 0.45rem 1.2rem;
	border-radius: 20px;
	cursor: pointer;
}

.nav-book:hover {
	background: var(--gold-dark) !important;
}

/* ── HERO ── */
.hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	max-height: 900px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	background: var(--cream-warm);
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.hero-geo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.05;
	pointer-events: none;
	width: 600px;
	height: 600px;
}

.hero-left {
	position: relative;
	z-index: 2;
	padding: 0 3rem 0 5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-right {
	position: relative;
	z-index: 2;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	margin-right: -1px;
}

.eyebrow {
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 1rem;
	display: block;
}

.hero h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 54px;
	font-weight: 300;
	line-height: 1.1;
	color: var(--brown-deep);
	margin-bottom: 1.2rem;
	letter-spacing: 0.02em;
}

.hero-sub {
	font-family: 'Cormorant Garamond', serif;
	font-size: 18px;
	font-style: italic;
	color: var(--brown-pale);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.divline {
	width: 40px;
	height: 0.5px;
	background: var(--gold);
	margin: 1.2rem 0;
}

.divline-center {
	margin: 1.2rem auto;
}

.checks {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 2.2rem;
}

.checks li {
	font-size: 14.5px;
	color: var(--brown-light);
	font-weight: 300;
	display: flex;
	align-items: baseline;
	gap: 0.6rem;
}

.checks li::before {
	content: '✦';
	color: var(--gold);
	font-size: 9px;
	flex-shrink: 0;
}

.cta-row {
	display: flex;
	gap: 0.9rem;
	flex-wrap: wrap;
}

.btn-primary {
	background: var(--gold);
	color: #fff;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 0.85rem 2rem;
	border-radius: 28px;
	text-decoration: none;
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	cursor: pointer;
	border: none;
	transition: background 0.2s;
	display: inline-block;
}

.btn-primary:hover {
	background: var(--gold-dark);
}

.btn-ghost {
	border: 0.5px solid var(--gold);
	color: var(--gold);
	font-size: 10.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 0.85rem 2rem;
	border-radius: 28px;
	text-decoration: none;
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	background: transparent;
	transition: all 0.2s;
	display: inline-block;
	cursor: pointer;
}

.btn-ghost:hover {
	background: var(--gold);
	color: #fff;
}

/* photo placeholders */
.photo-slot {
	background: #f0e8d8;
	border: 1px dashed var(--gold);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	color: var(--brown-pale);
	font-size: 10.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 300;
}

.photo-slot svg {
	opacity: 0.4;
}

.photo-icon-svg {
	width: 28px;
	height: 28px;
}

.hero-photo-main {
	width: 100%;
	height: 100%;
	aspect-ratio: unset;
	border-radius: 0;
	object-fit: cover;
}

.hero-photo-small {
	width: 100%;
	aspect-ratio: 4/3;
	border-radius: 10px;
}

.hero-photo-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.8rem;
}

/* ── MARQUEE ── */
.marquee-wrap {
	background: var(--gold);
	padding: 0.7rem 0;
	overflow: hidden;
}

.marquee {
	display: flex;
	gap: 2.5rem;
	white-space: nowrap;
	animation: mq 14s linear infinite;
}

.marquee span {
	font-size: 9.5px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: #fff;
}

@keyframes mq {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* ── SECTIONS ── */
section {
	padding: 5rem 3rem;
}

.sec-alt {
	background: var(--cream-alt);
}

.sec-sand {
	background: var(--sand);
}

.sec-dark {
	background: var(--dark);
}

.sec-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.sec-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 36px;
	font-weight: 300;
	color: var(--brown-deep);
	line-height: 1.2;
	margin-bottom: 0.4rem;
}

.sec-sub {
	font-size: 15px;
	color: var(--brown-light);
	max-width: 480px;
	margin: 0 auto;
	line-height: 1.85;
	font-weight: 300;
}

/* ── PROBLEM ── */
.problem-inner {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}

.problem-inner p {
	font-size: 14px;
	color: var(--brown-mid);
	line-height: 1.9;
	font-weight: 300;
	margin-bottom: 1.2rem;
}

.tension-list {
	list-style: none;
	margin: 1.5rem 0 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.tension-list li {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: 19px;
	color: var(--brown-deep);
	letter-spacing: 0.02em;
}

.tension-list li::before {
	content: '— ';
	color: var(--gold);
}

.duo-photos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	max-width: 540px;
	margin: 2.5rem auto 0;
}

.tall-photo {
	aspect-ratio: 3/4;
}

/* ── IS THIS YOU ── */
.ifu-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.8rem;
	margin-bottom: 2.5rem;
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}

.ifu-item {
	background: #fff;
	border: 0.5px solid var(--border);
	border-radius: 10px;
	padding: 0.9rem 1rem 0.9rem 0.85rem;
	font-size: 15px;
	color: var(--brown-mid);
	line-height: 1.6;
	font-weight: 300;
	display: flex;
	gap: 0.5rem;
	align-items: baseline;
}

.ifu-item::before {
	content: '✦';
	color: var(--gold);
	font-size: 9px;
	flex-shrink: 0;
}

/* ── WHY DIFFERENT ── */
.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	max-width: 720px;
	margin: 0 auto;
}

.why-text p {
	font-size: 15px;
	color: var(--brown-mid);
	line-height: 1.9;
	font-weight: 300;
	margin-bottom: 1rem;
}

.why-result {
	background: #fff;
	border: 0.5px solid var(--border);
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
	margin-top: 1.5rem;
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: 17px;
	color: var(--gold-dark);
	line-height: 1.7;
}

/* ── TREATMENTS ── */
.treatments-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.tc {
	background: #fff;
	border: 0.5px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.tc-photo {
	width: 100%;
	height: auto;
	min-height: 260px;
	max-width: 100%;
	border-bottom: 0.5px solid var(--border);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.tc-bg-1 {
	background: #fdf3e3;
}

.tc-bg-2 {
	background: #eef8f2;
}

.tc-bg-3 {
	background: #f5eefa;
}

.tc-body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.tc-dur {
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--brown-pale);
	margin-bottom: 0.35rem;
}

.tc-name {
	font-family: 'Cormorant Garamond', serif;
	font-size: 30px;
	font-weight: 400;
	color: var(--brown-deep);
	margin-bottom: 0.4rem;
}

.tc-tag {
	font-family: 'Cormorant Garamond', serif;
	font-style: italic;
	font-size: 17px;
	color: #9a7a50;
	margin-bottom: 0.85rem;
}

.tc-desc {
	font-size: 14px;
	color: var(--brown-light);
	line-height: 1.8;
	margin-bottom: 0.75rem;
	font-weight: 300;
	flex: 1;
}

.tc-best {
	font-size: 13px;
	color: var(--brown-pale);
	font-style: italic;
	margin-bottom: 1.2rem;
	line-height: 1.6;
}

.tc-btn {
	display: inline-block;
	background: var(--gold);
	color: #fff;
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	padding: 0.65rem 1.2rem;
	border-radius: 20px;
	text-align: center;
	cursor: pointer;
	border: none;
	font-family: 'Jost', sans-serif;
	transition: background 0.2s;
	align-self: flex-start;
}

.tc-btn:hover {
	background: var(--gold-dark);
}

/* ── RESULTS ── */
.results-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	max-width: 640px;
	margin: 0 auto 2.5rem;
}

.results-col h4 {
	font-size: 10px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--brown-pale);
	margin-bottom: 1rem;
}

.results-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.results-list li {
	font-size: 15px;
	color: var(--brown-mid);
	line-height: 1.7;
	font-weight: 300;
	padding-left: 1rem;
	position: relative;
}

.results-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gold);
	opacity: 0.5;
}

.results-list.after li::before {
	opacity: 1;
}

.trio-photos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	max-width: 640px;
	margin: 2rem auto 0;
}

.sq-photo {
	aspect-ratio: 1/1;
}

/* ── QUOTE ── */
.quote-sec {
	background: var(--sand);
	padding: 3.5rem 3rem;
	text-align: center;
}

.quote-text {
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	font-style: italic;
	font-weight: 300;
	color: #6b4e2a;
	max-width: 560px;
	margin: 0 auto 1rem;
	line-height: 1.75;
}

.quote-attr {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--brown-pale);
}

/* ── ABOUT ── */
.about-grid {
	display: grid;
	grid-template-columns: 1.2fr 2fr;
	gap: 3.5rem;
	align-items: start;
	max-width: 840px;
	margin: 0 auto;
}

.about-photo {
	aspect-ratio: 3/4;
	border-radius: 12px;
}

.about-location {
	font-size: 10.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--brown-pale);
	text-align: center;
	margin-top: 0.8rem;
}

.about-body p {
	font-size: 15px;
	color: var(--brown-mid);
	line-height: 1.9;
	font-weight: 300;
	margin-bottom: 1rem;
}

/* screenshot review slot */
.review-slot {
	background: #f0e8d8;
	border: 1px dashed var(--gold);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	color: var(--brown-pale);
	font-size: 10.5px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 300;
	padding: 1.5rem;
	text-align: center;
}

.review-slot svg {
	opacity: 0.35;
}

.review-row {
	display: grid;
	gap: 1rem;
	margin-top: 2rem;
}

.review-row-1 {
	grid-template-columns: 1fr;
	max-width: 360px;
	margin-left: auto;
	margin-right: auto;
}

.review-row-3 {
	grid-template-columns: repeat(3, 1fr);
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.review-slot-sq {
	aspect-ratio: 9/16;
}

.review-slot-land {
	aspect-ratio: 4/3;
}

/* ── FAQ ── */
.faq-list {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-item {
	background: #fff;
	border: 0.5px solid var(--border);
	border-radius: 10px;
	padding: 1.25rem 1.4rem;
}

.faq-q {
	font-family: 'Cormorant Garamond', serif;
	font-size: 17px;
	color: var(--brown-deep);
	margin-bottom: 0.5rem;
	font-weight: 400;
}

.faq-a {
	font-size: 14px;
	color: var(--brown-light);
	line-height: 1.8;
	font-weight: 300;
}

/* ── FINAL CTA ── */
.final-cta {
	text-align: center;
	background: var(--cream-warm);
	padding: 6rem 3rem;
}

.final-cta h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 40px;
	font-weight: 300;
	color: var(--brown-deep);
	margin-bottom: 0.75rem;
	line-height: 1.25;
}

.final-cta p {
	font-size: 15px;
	color: var(--brown-light);
	line-height: 1.9;
	max-width: 420px;
	margin: 0 auto 2.5rem;
	font-weight: 300;
}

/* ── FOOTER ── */
footer {
	background: var(--dark);
	padding: 3rem 3rem 1.5rem;
}

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 2.5rem;
	margin-bottom: 2rem;
}

.footer-brand {
	font-family: 'Cormorant Garamond', serif;
	font-size: 20px;
	letter-spacing: 0.2em;
	color: var(--gold-light);
	text-transform: uppercase;
	font-weight: 300;
	margin-bottom: 0.7rem;
	display: block;
}

.footer-tagline {
	font-size: 13px;
	color: #b0956e;
	line-height: 1.7;
	font-weight: 300;
}

.footer-h {
	font-size: 9.5px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gold-light);
	margin-bottom: 1rem;
	display: block;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-links a {
	font-size: 13px;
	color: #b0956e;
	text-decoration: none;
	font-weight: 300;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--gold-light);
}

.footer-bottom {
	border-top: 0.5px solid #5c4420;
	padding-top: 1.2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-copy {
	font-size: 13px;
	color: #7a6245;
	font-weight: 300;
}

.problem-h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 52px;
	font-weight: 300 !important;
	line-height: 1.1;
	color: var(--brown-deep);
	margin-bottom: 0.3rem;
}

.problem-sub {
	font-family: 'Cormorant Garamond', serif;
	font-size: 36px;
	font-weight: 300 !important;
	font-style: italic;
	color: var(--gold);
	line-height: 1.2;
	margin-bottom: 1.8rem;
}

/* Hero image switching */
.hero-img-mobile {
	display: none;
}

.hero-img-desktop {
	display: block;
}

/* photo slot icon helper */
.cam {
	width: 28px;
	height: 28px;
}

.cam-lg {
	width: 36px;
	height: 36px;
}

/* ═══════════════════════════════════════════════
   HAMBURGER MENU
═══════════════════════════════════════════════ */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	z-index: 201;
}

.hamburger span {
	display: block;
	width: 22px;
	height: 1.5px;
	background: var(--gold-dark);
	transition: transform 0.3s, opacity 0.3s;
	transform-origin: center;
}

.hamburger.open span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
	opacity: 0;
}

.hamburger.open span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

.nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(58, 44, 26, 0.35);
	z-index: 150;
	backdrop-filter: blur(2px);
}

.nav-overlay.visible {
	display: block;
}

#beehiiv-subscribe-form {
	padding: 32px !important;
}

/* ═══════════════════════════════════════════════
   TABLET — 1024px
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
	nav {
		padding: 1rem 2rem;
	}

	html, body {
		overflow-x: hidden;
	}

	.hero {
		grid-template-columns: 1fr 1fr;
		min-height: 560px;
		max-height: 800px;
	}

	.hero-left {
		padding: 0 2rem 0 3rem;
	}

	.hero h1 {
		font-size: 44px;
	}

	.problem-inner {
		padding: 0 1rem;
	}

	section {
		padding: 4rem 2rem;
	}

	.treatments-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}

	.about-grid {
		gap: 2.5rem;
	}

	footer {
		padding: 2.5rem 2rem 1.2rem;
	}

	.footer-top {
		gap: 1.5rem;
	}
}

/* ═══════════════════════════════════════════════
   TABLET PORTRAIT — 768px
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
	/* Nav */
	nav {
		padding: 1rem 1.5rem;
	}

	.hamburger {
		display: flex;
	}

	.nav-links {
		position: fixed;
		top: 0;
		right: -100%;
		width: min(300px, 80vw);
		height: 100dvh;
		background: rgba(253, 249, 244, 0.98);
		backdrop-filter: blur(12px);
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 5.5rem 2rem 2rem;
		z-index: 200;
		transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
		border-left: 0.5px solid var(--border);
		box-shadow: -8px 0 32px rgba(58, 44, 26, 0.10);
	}

	.nav-links.open {
		right: 0;
	}

	.nav-links li {
		width: 100%;
		border-bottom: 0.5px solid var(--border);
	}

	.nav-links a {
		display: block;
		padding: 1rem 0;
		font-size: 12px;
		letter-spacing: 0.18em;
	}

	.nav-links .nav-book {
		margin-top: 1.5rem;
		display: block;
		text-align: center;
		padding: 0.8rem 1.5rem !important;
	}

	/* Hero — stack vertically */
	.hero {
		grid-template-columns: 1fr;
		height: auto;
		min-height: auto;
		max-height: none;
	}

	.hero-img-mobile {
		display: block;
		position: relative;
		width: 100%;
		height: 55vw;
		min-height: 260px;
		max-height: 380px;
		overflow: hidden;
		margin: 1rem 0;
		border-radius: 4px;
	}

	.hero-img-desktop {
		display: none !important;
	}

	.hero-right {
		order: 2;
		height: 55vw;
		min-height: 280px;
		max-height: 420px;
		margin-right: 0;
	}

	.hero-left {
		padding: 2rem 1.5rem 2rem;
		order: 1;
	}

	.hero h1 {
		font-size: 44px;
		line-height: 1.15;
	}

	.sec-title {
		font-size: 34px;
	}

	.hero-sub {
		font-size: 19px;
	}

	.checks li {
		font-size: 15px;
	}

	blockquote p {
		font-size: 17px !important;
	}

	.cta-row {
		flex-direction: column;
		gap: 0.75rem;
	}

	.cta-row .btn-primary,
	.cta-row .btn-ghost {
		display: block;
		text-align: center;
		width: 100%;
	}

	/* Nav links mobile */
	.nav-links a {
		font-size: 12px;
	}

	/* Eyebrow */
	.eyebrow {
		font-size: 11px;
	}

	/* Marquee review */
	div[style*="padding: 1.5rem 3rem"] {
		padding: 1.2rem 1.5rem 1.5rem !important;
	}

	/* Problem section */
	section.sec-alt div[style*="grid-template-columns: 1fr 1fr"] {
		grid-template-columns: 1fr !important;
		gap: 2.5rem !important;
	}

	.problem-h2 {
		font-size: 48px !important;
		line-height: 1.1 !important;
	}

	.problem-sub {
		font-size: 34px !important;
		margin-bottom: 1.2rem !important;
	}

	/* Sections */
	section {
		padding: 3.5rem 1.5rem;
	}

	/* Body text */
	.why-text p,
	.about-body p,
	.problem-inner p,
	.sec-sub {
		font-size: 14px;
	}

	/* Is This You grid */
	.ifu-grid {
		grid-template-columns: 1fr 1fr;
	}

	.ifu-item {
		font-size: 14px;
	}

	/* Why Different */
	.why-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.why-grid .photo-slot {
		aspect-ratio: 3/4 !important;
		max-width: 100%;
		margin: 0 1.5rem;
		border: none !important;
	}

	/* Treatments */
	.treatments-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}

	.tc-name {
		font-size: 34px;
	}

	.tc-tag {
		font-size: 17px;
	}

	.tc-desc {
		font-size: 14px;
	}

	.tc-btn {
		width: 100%;
		text-align: center;
		font-size: 10px;
	}

	/* Results */
	.results-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.results-list li {
		font-size: 14px;
	}

	.results-col h4 {
		font-size: 11px;
	}

	.trio-photos {
		grid-template-columns: 1fr 1fr 1fr;
	}

	/* BA sliders */
	.ba-wrap {
		grid-template-columns: 1fr !important;
		max-width: 400px !important;
	}

	.ba-handle {
		width: 52px !important;
		height: 52px !important;
	}

	/* Quote */
	.quote-sec {
		padding: 2.5rem 1.5rem;
	}

	.quote-text {
		font-size: 19px;
	}

	/* About */
	.about-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		max-width: 400px;
	}

	.about-photo {
		aspect-ratio: 3/4;
		max-width: 240px;
		margin: 0 auto;
	}

	/* Reviews */
	div[style*="grid-template-columns:repeat(3,1fr)"] {
		grid-template-columns: 1fr !important;
	}

	/* FAQ */
	.faq-q {
		font-size: 16px;
	}

	.faq-a {
		font-size: 13px;
	}

	/* Final CTA */
	.final-cta {
		padding: 4rem 1.5rem;
	}

	.final-cta h2 {
		font-size: 32px;
	}

	.final-cta p {
		font-size: 14px;
	}

	.final-cta .btn-primary {
		display: block;
		width: 100%;
		text-align: center;
	}

	/* Buttons */
	.btn-primary, .btn-ghost {
		font-size: 10px;
	}

	/* Footer */
	footer {
		padding: 2.5rem 1.5rem 1.2rem;
	}

	.footer-top {
		grid-template-columns: 1fr !important;
		gap: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
	}

	/* Sec titles */
	.sec-title {
		font-size: 24px;
	}
}

/* ═══════════════════════════════════════════════
   MOBILE — 430px
═══════════════════════════════════════════════ */
@media (max-width: 430px) {
	nav {
		padding: 0.9rem 1.2rem;
	}

	.logo {
		font-size: 19px;
	}

	.hero-left {
		padding: 2.8rem 1.2rem 1.8rem;
	}

	.hero h1 {
		font-size: 44px;
	}

	.sec-title {
		font-size: 34px;
	}

	.checks li {
		font-size: 15px;
	}

	.hero-right {
		height: 60vw;
		min-height: 240px;
	}

	section {
		padding: 3rem 1.2rem;
	}

	.ifu-grid {
		grid-template-columns: 1fr;
	}

	.ifu-item {
		font-size: 14px;
	}

	.eyebrow {
		font-size: 11px;
	}

	.quote-text {
		font-size: 19px;
	}

	.final-cta h2 {
		font-size: 28px;
	}

	.final-cta p {
		font-size: 14px;
	}

	/* Treatments */
	.tc-name {
		font-size: 34px;
	}

	.tc-tag {
		font-size: 17px;
	}

	.tc-desc {
		font-size: 14px;
	}

	.tc-btn {
		font-size: 10px;
		padding: 0.7rem 1rem;
	}

	/* FAQ */
	.faq-q {
		font-size: 16px;
	}

	.faq-a {
		font-size: 13px;
	}

	/* Reviews */
	.review-text {
		font-size: 14px;
	}

	/* Problem inline styles override */
	.problem-h2 {
		font-size: 48px !important;
		line-height: 1.1 !important;
	}

	.problem-sub {
		font-size: 34px !important;
	}

	div[style*="font-size:20px"] {
		font-size: 17px !important;
	}

	blockquote p {
		font-size: 17px !important;
	}

	/* Video section — 16:9 je že responsiven */
	/* Reviews — keep single column */
	div[style*="grid-template-columns:repeat(3,1fr)"] {
		grid-template-columns: 1fr !important;
	}

	.btn-primary, .btn-ghost {
		font-size: 10px;
		padding: 0.8rem 1.5rem;
	}
}

/* ═══════════════════════════════════════════════
   MOBILE SMALL — 390px
═══════════════════════════════════════════════ */
@media (max-width: 390px) {
	.hero h1 {
		font-size: 44px;
	}

	.sec-title {
		font-size: 34px;
	}

	footer {
		padding: 2rem 1rem 1rem;
	}
}

@media (max-width: 768px) {
	.problem-two-col {
		grid-template-columns: 1fr !important;
		gap: 2.5rem !important;
	}

	.reviews-masonry {
		grid-template-columns: 1fr !important;
	}

	.reviews-title {
		font-size: 34px !important;
	}
}

/* ═══════════════════════════════════════════════
   GLOBAL MOBILE SAFETY
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
	/* Prevent any inline-style overrides from causing overflow */
	* {
		max-width: 100%;
	}

	img {
		max-width: 100%;
		height: auto;
	}

	/* Inline-styled sections that have fixed paddings */
	section[style*="padding:5rem 3rem"],
	section[style*="padding: 5rem 3rem"] {
		padding: 3.5rem 1.5rem !important;
	}

	div[style*="padding: 1.5rem 3rem"],
	div[style*="padding:1.5rem 3rem"] {
		padding: 1.2rem 1.5rem !important;
	}

	/* Reviews section inline grid */
	div[style*="display:grid; grid-template-columns:repeat(3,1fr)"],
	div[style*="display:grid;grid-template-columns:repeat(3,1fr)"] {
		display: flex !important;
		flex-direction: column !important;
	}

	/* Inline review card columns become single column */
	div[style*="display:flex; flex-direction:column; gap:1.2rem"] {
		width: 100%;
	}

	/* Recenzije section */
	section[style*="padding:5rem 3rem; background:#fdf6ec"],
	section[style*="padding: 5rem 3rem; background: #fdf6ec"] {
		padding: 3.5rem 1.5rem !important;
	}

	/* Max-width containers: let them be full width on mobile */
	.why-grid, .faq-list, .results-grid, .about-grid, .problem-inner {
		max-width: 100% !important;
	}

	/* Duo photos */
	.duo-photos {
		max-width: 100%;
	}

	/* Hero geo decoration — hide on small screens */
	.hero-geo {
		display: none;
	}
}