/* ==============================================================
   NEW CHAPTER AMERICA — "WARM HORIZON" DESIGN SYSTEM
   Shared stylesheet for every page mockup in this folder.

   Palette : cream paper, a warmed brand coral, sage counterpoint,
             amber for the third accent, near-black ink for text.
   Type    : Nunito Sans (800/900 headings) with Lora italic
             reserved for pull quotes and accent phrases.
   Shape   : generous radii, soft shadows, organic photo masks.
   ============================================================== */

/* ---------------------------------------------------------------
   1. TOKENS
   --------------------------------------------------------------- */
:root {
	/* surfaces */
	--cream:      #fdfaf5;
	--cream-2:    #f7f0e5;
	--cream-3:    #f0e6d7;
	--white:      #ffffff;

	/* brand */
	--coral:      #e2554a;
	--coral-deep: #c03a30;
	--coral-soft: #fceceb;
	--sage:       #6f8f77;
	--sage-deep:  #4c6b54;
	--sage-soft:  #e8f0ea;
	--amber:      #dc9a3c;
	--amber-deep: #b57619;
	--amber-soft: #fbf0dd;

	/* text */
	--ink:        #2f2c27;
	--ink-deep:   #1f1d19;
	--body:       #5c574e;
	--muted:      #948d7d;

	/* lines + status */
	--line:       #ece2d2;
	--line-soft:  #f3ebdd;
	--star:       #eda92e;
	--whatsapp:   #25d366;
	--whatsapp-deep: #128c7e;

	/* type */
	--sans:  "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--serif: "Lora", Georgia, serif;
	--mono:  ui-monospace, SFMono-Regular, Menlo, monospace;
	--hand:  "Kalam", "Bradley Hand", "Segoe Script", cursive;

	/* shape */
	--r:     22px;
	--r-lg:  30px;
	--r-sm:  14px;
	--shadow-sm: 0 1px 3px rgba(80,60,30,.05);
	--shadow-md: 0 2px 6px rgba(80,60,30,.05), 0 16px 40px rgba(80,60,30,.09);
	--shadow-lg: 0 6px 16px rgba(80,60,30,.07), 0 34px 70px rgba(80,60,30,.14);

	/* layout */
	--gut:  28px;
	--maxw: 1180px;
	--maxw-narrow: 780px;
}

/* ---------------------------------------------------------------
   2. RESET + BASE
   --------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	background: var(--cream);
	color: var(--body);
	font-family: var(--sans);
	font-size: 16.5px;
	line-height: 1.72;
	-webkit-font-smoothing: antialiased;
}
a { color: var(--coral-deep); text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

h1, h2, h3, h4, h5 {
	color: var(--ink); line-height: 1.16;
	font-weight: 800; letter-spacing: -0.5px;
}
em.script {
	font-family: var(--serif); font-style: italic; font-weight: 500;
	color: var(--coral); letter-spacing: -0.2px;
}
em.script.sage { color: var(--sage-deep); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.container.narrow { max-width: var(--maxw-narrow); }

.section { padding: 96px 0; }
.section.tight { padding: 66px 0; }
.section.cream2 { background: var(--cream-2); }
.section.cream3 { background: var(--cream-3); }
.sr_only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------------------------------------------------------------
   3. SHARED ATOMS
   --------------------------------------------------------------- */
.icon { width: 22px; height: 22px; flex: none; stroke-width: 1.7; }

.pill {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--coral-soft); color: var(--coral-deep);
	border-radius: 999px; padding: 7px 16px 7px 13px;
	font-size: 12.5px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); flex: none; }
.pill.sage  { background: var(--sage-soft);  color: var(--sage-deep); }
.pill.sage .dot  { background: var(--sage); }
.pill.amber { background: var(--amber-soft); color: var(--amber-deep); }
.pill.amber .dot { background: var(--amber); }
.pill.light { background: rgba(253,250,245,.14); color: #f7ded9; }
.pill.light .dot { background: #f0938a; }

.btn {
	font-family: var(--sans); font-weight: 800; font-size: 15.5px;
	border-radius: 999px; padding: 15px 32px;
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	cursor: pointer; border: 2px solid transparent; text-align: center; white-space: nowrap;
	transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn_wa    { background: var(--whatsapp); color: #08321c; border-color: var(--whatsapp); box-shadow: 0 10px 24px rgba(37,211,102,.30); }
.btn_wa:hover { background: #1fbb5a; border-color: #1fbb5a; box-shadow: 0 12px 30px rgba(37,211,102,.4); }
.btn_coral { background: var(--coral); color: #fff; border-color: var(--coral); box-shadow: 0 10px 24px rgba(226,85,74,.28); }
.btn_coral:hover { background: var(--coral-deep); border-color: var(--coral-deep); box-shadow: 0 12px 30px rgba(226,85,74,.36); }
.btn_ink   { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn_ink:hover { background: var(--ink-deep); border-color: var(--ink-deep); }
.btn_line  { border-color: #ded2be; color: var(--ink); background: transparent; }
.btn_line:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.btn_cream { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn_cream:hover { background: #fff; border-color: #fff; }
.btn_line_light { border-color: rgba(253,250,245,.32); color: var(--cream); }
.btn_line_light:hover { border-color: var(--cream); background: rgba(253,250,245,.1); }
.btn_sm { padding: 11px 22px; font-size: 14.5px; }
.btn_block { width: 100%; }

.link_arrow {
	display: inline-flex; align-items: center; gap: 9px;
	font-weight: 800; font-size: 15.5px; color: var(--coral-deep);
	transition: gap .18s;
}
.link_arrow:hover { gap: 14px; }
.link_arrow.chip {
	background: var(--coral-soft); border-radius: 999px; padding: 12px 24px;
	transition: gap .18s, background .18s, color .18s;
}
.link_arrow.chip:hover { background: var(--coral); color: #fff; }

.stars { color: var(--star); font-size: 16px; letter-spacing: 2.5px; }

.google_chip {
	display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700;
	color: var(--muted); border: 1px solid var(--line); border-radius: 999px;
	padding: 4px 12px 4px 9px; background: var(--cream); white-space: nowrap;
}
.google_chip svg { width: 13px; height: 13px; }

/* section headings ------------------------------------------------ */
.section_head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: end; margin-bottom: 50px; }
.section_head h2 { font-size: clamp(32px, 4.2vw, 50px); margin-top: 18px; }
.section_head .sub { color: var(--muted); max-width: 33em; font-size: 16px; }
.section_head.center { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.section_head.center .sub { max-width: 40em; }
.section_head.stack { grid-template-columns: 1fr; gap: 14px; align-items: start; }

/* ---------------------------------------------------------------
   4. HEADER (injected by site.js)
   --------------------------------------------------------------- */
header.site {
	position: sticky; top: 0; z-index: 60;
	background: rgba(253,250,245,.9);
	backdrop-filter: saturate(160%) blur(12px);
	-webkit-backdrop-filter: saturate(160%) blur(12px);
	border-bottom: 1px solid var(--line);
}
.nav_row { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { height: 36px; width: auto; flex: none; }
.brand_word { font-weight: 900; font-size: 19.5px; color: var(--ink); line-height: 1.12; letter-spacing: -0.4px; }
.brand_word span { color: var(--coral); }
.brand_word em {
	display: block; font-style: normal; font-size: 8.5px; letter-spacing: 2.6px;
	text-transform: uppercase; color: var(--muted); font-weight: 800; margin-top: 3px;
	white-space: nowrap;
}
nav.main ul { display: flex; gap: 1px; list-style: none; align-items: center; }
nav.main a {
	font-size: 14.5px; font-weight: 700; color: var(--body); white-space: nowrap;
	padding: 9px 13px; border-radius: 999px; transition: background .15s, color .15s;
}
nav.main a:hover { background: var(--cream-2); color: var(--ink); }
nav.main a.active { background: var(--coral-soft); color: var(--coral-deep); }
.nav_end { display: flex; align-items: center; gap: 10px; }
.lang_pick {
	display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800;
	color: var(--body); border: 1.5px solid var(--line); border-radius: 999px; padding: 7px 13px;
	transition: border-color .15s, color .15s;
}
.lang_pick:hover { border-color: var(--ink); color: var(--ink); }
.lang_pick img { width: 17px; height: 12px; border-radius: 2px; }
.hamburger { display: none; background: none; border: 2px solid var(--line); border-radius: 12px; padding: 8px 10px; cursor: pointer; color: var(--ink); }

/* announcement strip above header */
.topbar {
	background: var(--ink); color: #cfc7ba; font-size: 13.2px;
	text-align: center; padding: 9px 16px; font-weight: 600;
}
.topbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.topbar strong { color: #fff; font-weight: 800; }

/* mockup label strip */
.mock_bar {
	background: var(--ink-deep); color: var(--cream); font-size: 12.5px;
	letter-spacing: 1.4px; text-transform: uppercase; text-align: center;
	padding: 9px 16px; font-weight: 600;
}
.mock_bar strong { color: #f6b0aa; font-weight: 800; }
.mock_bar a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; opacity: .72; }
.mock_bar a:hover { opacity: 1; }

/* ---------------------------------------------------------------
   5. PAGE HERO (interior pages)
   --------------------------------------------------------------- */
.page_hero {
	position: relative; overflow: hidden; padding: 68px 0 62px;
	background:
		radial-gradient(700px 400px at 88% 0%, rgba(226,85,74,.09), transparent 62%),
		radial-gradient(560px 380px at 2% 90%, rgba(111,143,119,.11), transparent 62%),
		var(--cream);
	border-bottom: 1px solid var(--line);
}
.page_hero.sage_wash {
	background:
		radial-gradient(700px 400px at 88% 0%, rgba(111,143,119,.14), transparent 62%),
		radial-gradient(560px 380px at 2% 90%, rgba(220,154,60,.10), transparent 62%),
		var(--cream);
}
.page_hero_inner { position: relative; z-index: 2; }
.page_hero h1 { font-size: clamp(34px, 5vw, 58px); letter-spacing: -1.4px; max-width: 15em; margin: 16px 0 0; }
.page_hero .lead { font-size: 18.5px; max-width: 34em; margin-top: 18px; }
.page_hero_actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.page_hero_grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.page_hero_art img { width: 100%; border-radius: var(--r); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }

.crumbs { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; color: var(--muted); flex-wrap: wrap; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--coral-deep); }
.crumbs .sep { opacity: .5; }
.crumbs .cur { color: var(--ink); }

/* ---------------------------------------------------------------
   6. CARDS + GRIDS
   --------------------------------------------------------------- */
.card {
	background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
	padding: 32px 32px 34px; box-shadow: var(--shadow-sm);
	transition: transform .22s ease, box-shadow .22s ease;
}
.card.hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card.flat { box-shadow: none; }

.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.wide_left  { grid-template-columns: 1.25fr .75fr; }
.split.wide_right { grid-template-columns: .75fr 1.25fr; }

/* icon chips (colour-coded per service) */
.icon_chip {
	width: 60px; height: 60px; border-radius: 19px; flex: none;
	display: flex; align-items: center; justify-content: center;
	background: var(--coral-soft); color: var(--coral-deep);
}
.icon_chip .icon { width: 28px; height: 28px; }
.icon_chip.sage  { background: var(--sage-soft);  color: var(--sage-deep); }
.icon_chip.amber { background: var(--amber-soft); color: var(--amber-deep); }
.icon_chip.sm { width: 46px; height: 46px; border-radius: 14px; }
.icon_chip.sm .icon { width: 22px; height: 22px; }

/* step / service card with accent top rule */
.step_card {
	background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
	padding: 34px 32px 36px; box-shadow: var(--shadow-sm);
	display: flex; flex-direction: column; position: relative; overflow: hidden;
	transition: transform .22s ease, box-shadow .22s ease;
	color: inherit;
}
.step_card::before {
	content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px;
	background: var(--coral); opacity: 0; transition: opacity .22s ease;
}
.step_card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step_card:hover::before { opacity: 1; }
.step_card.accent_sage::before  { background: var(--sage); }
.step_card.accent_amber::before { background: var(--amber); }
.step_card_top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.step_num {
	width: 34px; height: 34px; border-radius: 50%; flex: none;
	border: 2px solid var(--line); color: var(--muted);
	display: flex; align-items: center; justify-content: center;
	font-size: 13px; font-weight: 900;
}
.step_card h3 { font-size: 24px; margin-bottom: 11px; }
.step_card > p { font-size: 15.5px; }

/* tick lists */
.ticks { list-style: none; }
.ticks li { display: flex; align-items: flex-start; gap: 11px; padding: 7px 0; font-size: 15px; }
.ticks li .icon { width: 18px; height: 18px; color: var(--sage); margin-top: 4px; stroke-width: 2.6; }
.ticks.coral li .icon { color: var(--coral); }
.ticks.divided { border-top: 1px solid var(--line); margin-top: 22px; padding-top: 18px; }
.ticks.lined li { border-bottom: 1px solid var(--line-soft); padding: 11px 0; }
.ticks.lined li:last-child { border-bottom: none; }

/* cross list (things we don't do) */
.crosses { list-style: none; }
.crosses li { display: flex; align-items: flex-start; gap: 11px; padding: 7px 0; font-size: 15px; color: var(--muted); }
.crosses li .icon { width: 18px; height: 18px; color: #c9c1b1; margin-top: 4px; stroke-width: 2.6; }

/* stat strip */
.stat_strip {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
	background: var(--white); border: 1px solid var(--line);
	border-radius: var(--r); padding: 10px; box-shadow: var(--shadow-md);
}
.stat { padding: 22px 24px; border-radius: var(--r-sm); text-align: center; transition: background .2s ease; }
.stat:hover { background: var(--cream-2); }
.stat b { display: block; font-size: clamp(26px, 3.2vw, 38px); color: var(--ink); font-weight: 900; line-height: 1; letter-spacing: -1.4px; }
.stat b .unit { color: var(--coral); }
.stat > span { display: block; margin-top: 10px; font-size: 12px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); }

/* callout / note boxes */
.callout {
	border-radius: var(--r); padding: 26px 30px; border: 1px solid var(--line);
	background: var(--cream-2); display: flex; gap: 16px; align-items: flex-start;
}
.callout .icon { width: 22px; height: 22px; margin-top: 4px; color: var(--coral); }
.callout h4 { font-size: 17px; margin-bottom: 6px; }
.callout p { font-size: 15.3px; }
.callout.sage  { background: var(--sage-soft);  border-color: #d6e3d9; }
.callout.sage .icon  { color: var(--sage-deep); }
.callout.amber { background: var(--amber-soft); border-color: #eeddbb; }
.callout.amber .icon { color: var(--amber-deep); }
.callout.warn  { background: var(--coral-soft); border-color: #f6d8d5; }

/* ---------------------------------------------------------------
   7. TIMELINE (how it works / about story)
   --------------------------------------------------------------- */
.timeline { position: relative; }
.timeline::before {
	content: ""; position: absolute; left: 27px; top: 14px; bottom: 14px; width: 2px;
	background: linear-gradient(to bottom, var(--coral), var(--amber) 45%, var(--sage));
	opacity: .35;
}
.tl_item { position: relative; padding-left: 82px; padding-bottom: 46px; }
.tl_item:last-child { padding-bottom: 0; }
.tl_dot {
	position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 50%;
	background: var(--white); border: 2px solid var(--line);
	display: flex; align-items: center; justify-content: center;
	color: var(--coral-deep); font-weight: 900; font-size: 15px; z-index: 2;
	box-shadow: var(--shadow-sm);
}
.tl_dot .icon { width: 24px; height: 24px; }
.tl_when { font-size: 11.5px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); }
.tl_item h3 { font-size: 23px; margin: 8px 0 10px; }
.tl_item p { font-size: 15.8px; max-width: 40em; }
.tl_meta {
	display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
	background: var(--cream-2); border-radius: 999px; padding: 6px 14px;
	font-size: 12.5px; font-weight: 800; color: var(--body);
}
.tl_meta .icon { width: 15px; height: 15px; color: var(--sage); }

/* ---------------------------------------------------------------
   7b. POLAROIDS
   Carried over from the original about page: white frame, soft
   drop shadow, a slight tilt, and a left-aligned handwritten note.
   Requires the "Kalam" font to be loaded on the page.

   Note: these are deliberately NOT stacked with negative margins.
   Overlapping frames hide the caption of the photo underneath,
   which is what went wrong in the earlier option_b2 attempt.
   --------------------------------------------------------------- */
figure.polaroid {
	margin: 0; background: #fff; padding: 12px 12px 13px; border-radius: 3px;
	box-shadow: 0 2px 5px rgba(60,50,30,.14), 0 18px 38px rgba(60,50,30,.16);
	transition: transform .28s ease, box-shadow .28s ease;
}
figure.polaroid img {
	width: 100%; display: block; border-radius: 1px;
	aspect-ratio: 4/4.7; object-fit: cover;
}
figure.polaroid.landscape img { aspect-ratio: 4/3; }
figure.polaroid.square img    { aspect-ratio: 1/1; }
figure.polaroid figcaption {
	font-family: var(--hand); font-size: 16px; line-height: 1.34;
	color: #6e675c; text-align: left; padding: 10px 3px 0 5px;
}
figure.polaroid.tilt_a { transform: rotate(2.2deg); }
figure.polaroid.tilt_b { transform: rotate(-2.4deg); }
figure.polaroid.tilt_c { transform: rotate(1.3deg); }
figure.polaroid.tilt_d { transform: rotate(-1.5deg); }
figure.polaroid:hover {
	transform: rotate(0deg) translateY(-5px); z-index: 4; position: relative;
	box-shadow: 0 3px 8px rgba(60,50,30,.16), 0 28px 56px rgba(60,50,30,.22);
}

/* a scattered row of them, e.g. a photo band */
.polaroid_row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: start; }
.polaroid_row > figure.polaroid:nth-child(even) { margin-top: 34px; }

/*
 * Timeline with a decoupled photo rail.
 * Journey text owns its own vertical rhythm; polaroids live in a
 * parallel column and just distribute along the section height —
 * so a tall photo (or a text-only entry) never shoves the other side.
 */
.timeline.with_photos {
	display: grid; grid-template-columns: minmax(0, 1fr) 244px; gap: 52px; align-items: stretch;
}
.timeline.with_photos::before { display: none; }
.tl_track { position: relative; min-width: 0; }
.tl_track::before {
	content: ""; position: absolute; left: 27px; top: 14px; bottom: 14px; width: 2px;
	background: linear-gradient(to bottom, var(--coral), var(--amber) 45%, var(--sage));
	opacity: .35;
}
.tl_photos {
	display: flex; flex-direction: column; justify-content: space-around;
	gap: 36px; padding-top: 4px;
}
.tl_photos figure.polaroid { width: 100%; flex-shrink: 0; }

/* ---------------------------------------------------------------
   8. ACCORDION (FAQ)
   --------------------------------------------------------------- */
.faq_list { border-top: 1px solid var(--line); }
details.faq {
	border-bottom: 1px solid var(--line); background: transparent;
	transition: background .2s ease;
}
details.faq[open] { background: var(--white); }
details.faq summary {
	list-style: none; cursor: pointer; padding: 22px 56px 22px 22px;
	position: relative; font-weight: 800; font-size: 17.5px; color: var(--ink);
	line-height: 1.4;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
	content: ""; position: absolute; right: 22px; top: 50%; width: 12px; height: 12px;
	border-right: 2.4px solid var(--coral); border-bottom: 2.4px solid var(--coral);
	transform: translateY(-70%) rotate(45deg); transition: transform .22s ease;
}
details.faq[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
details.faq summary:hover { color: var(--coral-deep); }
.faq_body { padding: 0 60px 26px 22px; font-size: 16px; }
.faq_body p + p { margin-top: 14px; }
.faq_body ul { margin: 12px 0 0 20px; }
.faq_body li { padding: 4px 0; }

/* ---------------------------------------------------------------
   9. ARTICLE PROSE (blog post)
   --------------------------------------------------------------- */
.prose { font-size: 17.5px; line-height: 1.78; color: var(--body); }
.prose > * + * { margin-top: 24px; }
.prose h2 { font-size: 29px; margin-top: 46px; letter-spacing: -0.7px; }
.prose h3 { font-size: 22px; margin-top: 36px; }
.prose p > strong { color: var(--ink); font-weight: 800; }
.prose a { text-decoration: underline; text-underline-offset: 3px; font-weight: 700; }
.prose ul, .prose ol { margin-left: 22px; }
.prose li { padding: 5px 0; }
.prose li::marker { color: var(--coral); font-weight: 800; }
.prose img, .prose figure img { border-radius: var(--r); box-shadow: var(--shadow-md); }
.prose figcaption { font-size: 13.5px; color: var(--muted); margin-top: 12px; text-align: center; font-weight: 600; }
.prose blockquote {
	font-family: var(--serif); font-style: italic; font-weight: 500;
	font-size: 23px; line-height: 1.5; color: var(--ink);
	border-left: 4px solid var(--coral); padding: 4px 0 4px 26px; margin: 36px 0;
}
.prose hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
.prose .lead_para { font-size: 20px; color: var(--ink); font-weight: 600; line-height: 1.6; }

.toc {
	background: var(--cream-2); border: 1px solid var(--line);
	border-radius: var(--r); padding: 24px 28px; margin: 34px 0;
}
.toc h4 { font-size: 12px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.toc ol { list-style: none; counter-reset: toc; }
.toc li { counter-increment: toc; padding: 6px 0; font-size: 15.5px; display: flex; gap: 12px; }
.toc li::before { content: counter(toc, decimal-leading-zero); color: var(--coral); font-weight: 900; font-size: 13px; padding-top: 3px; }
.toc a { color: var(--ink); font-weight: 700; }
.toc a:hover { color: var(--coral-deep); }

.author_card {
	display: flex; gap: 20px; align-items: center; background: var(--white);
	border: 1px solid var(--line); border-radius: var(--r); padding: 26px 30px;
	box-shadow: var(--shadow-sm); margin-top: 46px;
}
.author_card img { width: 74px; height: 74px; border-radius: 50%; object-fit: cover; flex: none; }
.author_card b { display: block; font-size: 18px; color: var(--ink); font-weight: 800; }
.author_card .role { font-size: 11.5px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; display: block; }
.author_card p { font-size: 15px; }

/* ---------------------------------------------------------------
   10. BLOG CARDS
   --------------------------------------------------------------- */
a.post_card {
	display: flex; flex-direction: column; color: inherit;
	background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
	overflow: hidden; box-shadow: var(--shadow-sm);
	transition: transform .22s ease, box-shadow .22s ease;
}
a.post_card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
a.post_card.wide { flex-direction: row; align-items: stretch; }
a.post_card.wide .thumb { width: 48%; flex: none; }
a.post_card.wide .thumb img { height: 100%; min-height: 320px; aspect-ratio: auto; }
a.post_card.wide .post_body { padding: 44px 46px; display: flex; flex-direction: column; justify-content: center; }
a.post_card.wide h3 { font-size: clamp(25px, 3vw, 36px); }
.thumb { position: relative; overflow: hidden; background: var(--cream-3); }
.thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .5s ease; }
a.post_card:hover .thumb img { transform: scale(1.05); }
.tag {
	position: absolute; left: 16px; top: 16px; z-index: 2;
	background: rgba(253,250,245,.95); color: var(--ink); border-radius: 999px;
	font-size: 10.5px; font-weight: 900; letter-spacing: 1.8px;
	text-transform: uppercase; padding: 6px 14px;
}
.post_body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.post_meta { font-size: 11.5px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); font-weight: 800; }
a.post_card h3 { font-size: 21px; line-height: 1.22; margin: 12px 0 10px; transition: color .18s; }
a.post_card:hover h3 { color: var(--coral-deep); }
a.post_card p { font-size: 15.2px; margin-bottom: 18px; }
.read_link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 15px; color: var(--coral-deep); margin-top: auto; transition: gap .18s; }
a.post_card:hover .read_link { gap: 13px; }

/* category filter chips */
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
	border: 1.5px solid var(--line); background: var(--white); color: var(--body);
	border-radius: 999px; padding: 9px 18px; font-size: 14px; font-weight: 800;
	transition: all .16s ease; cursor: pointer;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.on { background: var(--ink); border-color: var(--ink); color: var(--cream); }

/* ---------------------------------------------------------------
   11. REVIEWS
   --------------------------------------------------------------- */
.rev_summary {
	display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
	background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
	padding: 20px 28px; box-shadow: var(--shadow-sm);
}
.rev_summary .score { font-size: 42px; font-weight: 900; color: var(--ink); line-height: 1; letter-spacing: -1.6px; }
.rev_summary .meta { font-size: 14px; color: var(--muted); font-weight: 600; }
.rev_summary .gwrap { display: flex; align-items: center; gap: 9px; margin-left: auto; font-size: 14px; font-weight: 700; color: var(--body); }
.rev_summary .gwrap svg { width: 20px; height: 20px; }

.rev_card {
	background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
	padding: 30px 30px 26px; display: flex; flex-direction: column; gap: 16px;
	box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.rev_card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.rev_top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rev_card q { font-family: var(--serif); font-size: 17.5px; line-height: 1.55; color: var(--ink); quotes: "\201C" "\201D"; flex: 1; }
.rev_card q a { font-family: var(--sans); font-size: 13.5px; font-weight: 800; color: var(--coral-deep); white-space: nowrap; }
.rev_who { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.avatar {
	width: 44px; height: 44px; border-radius: 50%; flex: none;
	background: var(--coral); color: #fff; display: flex; align-items: center;
	justify-content: center; font-size: 18px; font-weight: 800;
}
.avatar.v2 { background: var(--sage); }
.avatar.v3 { background: var(--amber); }
.avatar.lg { width: 62px; height: 62px; font-size: 24px; }
.rev_who b { display: block; color: var(--ink); font-size: 15px; font-weight: 800; }
.rev_who span { font-size: 12.5px; color: var(--muted); }

/* ---------------------------------------------------------------
   12. FORMS
   --------------------------------------------------------------- */
.field { margin-bottom: 18px; }
.field label {
	display: block; font-size: 13px; font-weight: 800; color: var(--ink);
	margin-bottom: 8px; letter-spacing: .2px;
}
.field .hint { font-weight: 600; color: var(--muted); font-size: 12.5px; letter-spacing: 0; }
.field input, .field textarea, .field select {
	width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink);
	background: var(--cream); border: 1.5px solid var(--line); border-radius: 14px;
	padding: 14px 16px; transition: border-color .16s, background .16s, box-shadow .16s;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: #b6ad9b; }
.field input:focus, .field textarea:focus, .field select:focus {
	outline: none; border-color: var(--coral); background: var(--white);
	box-shadow: 0 0 0 4px var(--coral-soft);
}
.form_note { font-size: 13.2px; color: var(--muted); margin-top: 14px; display: flex; gap: 9px; align-items: flex-start; }
.form_note .icon { width: 15px; height: 15px; margin-top: 4px; color: var(--sage); }

/* segmented radio (contact preference) */
.seg { display: flex; gap: 8px; flex-wrap: wrap; }
.seg label {
	flex: 1 1 auto; min-width: 120px; margin: 0; cursor: pointer;
	border: 1.5px solid var(--line); border-radius: 14px; padding: 12px 14px;
	display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14.5px;
	color: var(--body); background: var(--cream); transition: all .16s;
}
.seg label .icon { width: 18px; height: 18px; }
/* visually hidden, but must also escape the width:100% set by .field input */
.seg input {
	position: absolute; opacity: 0; pointer-events: none;
	width: 1px; height: 1px; padding: 0; margin: 0; border: 0;
}
.seg input:checked + label,
.seg label:has(input:checked) { border-color: var(--coral); background: var(--coral-soft); color: var(--coral-deep); }
.seg label:hover { border-color: #d8ccb8; }

/* ---------------------------------------------------------------
   13. WHATSAPP PANEL
   --------------------------------------------------------------- */
.wa_panel {
	background: linear-gradient(150deg, #0f2f22, #123f2c 55%, #0d2a1e);
	color: #cbe8d7; border-radius: var(--r-lg); padding: 40px 42px;
	position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.wa_panel::before {
	content: ""; position: absolute; right: -120px; top: -140px;
	width: 400px; height: 400px; border-radius: 50%;
	background: radial-gradient(circle, rgba(37,211,102,.32), transparent 68%);
}
.wa_panel > * { position: relative; z-index: 2; }
.wa_panel h3 { color: #fff; font-size: 27px; margin-bottom: 12px; }
.wa_panel p { font-size: 16px; max-width: 34em; }
.wa_badge {
	display: inline-flex; align-items: center; gap: 9px; background: rgba(37,211,102,.16);
	color: #7ce8a6; border-radius: 999px; padding: 6px 15px 6px 12px;
	font-size: 12px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase;
	margin-bottom: 18px;
}
.wa_badge .icon { width: 15px; height: 15px; }
.wa_meta { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 22px; font-size: 13.5px; color: #9dc4ac; }
.wa_meta span { display: flex; align-items: center; gap: 8px; }
.wa_meta .icon { width: 16px; height: 16px; color: #7ce8a6; }

/* small inline whatsapp row used on cards */
.wa_inline {
	display: inline-flex; align-items: center; gap: 10px; font-weight: 800;
	color: var(--whatsapp-deep); font-size: 15px;
}
.wa_inline .icon { width: 19px; height: 19px; }

/* ---------------------------------------------------------------
   14. FOOTER (injected by site.js)
   --------------------------------------------------------------- */
footer.site { background: var(--cream-2); padding: 90px 0 40px; }
.foot_shell {
	background: var(--ink); color: #b9b2a6; border-radius: var(--r-lg);
	padding: 56px 58px 40px; box-shadow: var(--shadow-lg);
	position: relative; overflow: hidden;
}
.foot_shell::before {
	content: ""; position: absolute; right: -140px; top: -160px;
	width: 460px; height: 460px; border-radius: 50%;
	background: radial-gradient(circle, rgba(226,85,74,.30), transparent 68%);
	pointer-events: none;
}
.cta_row {
	display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center;
	padding-bottom: 44px; margin-bottom: 44px; border-bottom: 1px solid rgba(253,250,245,.13);
	position: relative;
}
.cta_row h2 { color: var(--cream); font-size: clamp(28px, 3.6vw, 44px); line-height: 1.14; }
.cta_row h2 em { font-family: var(--serif); font-style: italic; font-weight: 500; color: #f6b0aa; }
.cta_row p { margin-top: 15px; max-width: 32em; font-size: 16.5px; }
.cta_actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.cta_note { font-size: 13.5px; color: #8d867a; text-align: center; }

.foot_grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: 44px; margin-bottom: 42px; position: relative; }
.foot_brand svg { height: 36px; margin-bottom: 16px; }
.foot_brand p { font-size: 15px; max-width: 24em; }
.foot_badges { margin-top: 20px; }
.foot_badges img { height: 60px; width: auto; }
footer.site h4 { color: var(--cream); font-size: 12px; font-weight: 900; letter-spacing: 2.2px; text-transform: uppercase; margin-bottom: 18px; opacity: .55; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 11px; font-size: 15px; }
footer.site li a { color: #b9b2a6; transition: color .15s; }
footer.site li a:hover { color: #f6b0aa; }
.contact_li { display: flex; align-items: flex-start; gap: 11px; }
.contact_li .icon { width: 17px; height: 17px; color: #f0938a; margin-top: 4px; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
	width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(253,250,245,.16);
	display: flex; align-items: center; justify-content: center; color: #b9b2a6; transition: all .18s;
}
.socials a:hover { background: var(--coral); border-color: var(--coral); color: #fff; }
.legal {
	border-top: 1px solid rgba(253,250,245,.13); padding-top: 24px;
	display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
	font-size: 13.5px; color: #8d867a; position: relative;
}
.legal a { color: #8d867a; }
.legal a:hover { color: #f6b0aa; }

/* ---------------------------------------------------------------
   15. RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 1120px) {
	nav.main { display: none; }
	.hamburger { display: block; }
}
@media (max-width: 1080px) {
	.grid4 { grid-template-columns: repeat(2, 1fr); }
	.split, .split.wide_left, .split.wide_right, .page_hero_grid { grid-template-columns: 1fr; gap: 40px; }
	a.post_card.wide { flex-direction: column; }
	a.post_card.wide .thumb { width: 100%; }
	a.post_card.wide .thumb img { min-height: 0; aspect-ratio: 16/9; }
	a.post_card.wide .post_body { padding: 30px 32px 34px; }
	.foot_grid { grid-template-columns: 1fr 1fr; gap: 38px; }
}
@media (max-width: 900px) {
	:root { --gut: 20px; }
	nav.main { display: none; }
	.hamburger { display: block; }
	.brand_word em { font-size: 7.5px; letter-spacing: 1.6px; white-space: normal; }
	.brand_word { font-size: 17px; }
	.brand { gap: 9px; }
	.brand svg { height: 30px; }
	.nav_row { height: 68px; gap: 12px; }
	.lang_pick { display: none; }
	.section { padding: 70px 0; }
	.section_head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 38px; align-items: start; }
	.grid2, .grid3 { grid-template-columns: 1fr; }
	.stat_strip { grid-template-columns: 1fr 1fr; }
	.page_hero { padding: 48px 0 46px; }
	.timeline::before { left: 21px; }
	.tl_item { padding-left: 64px; padding-bottom: 38px; }
	.timeline.with_photos { grid-template-columns: 1fr; gap: 40px; }
	.tl_track::before { left: 21px; }
	.tl_photos {
		display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
		justify-content: start; max-width: 560px;
	}
	.tl_photos figure.polaroid { max-width: 270px; }
	.polaroid_row { grid-template-columns: 1fr 1fr; gap: 24px; }
	.polaroid_row > figure.polaroid:nth-child(even) { margin-top: 0; }
	.tl_dot { width: 44px; height: 44px; font-size: 13px; }
	.tl_dot .icon { width: 20px; height: 20px; }
	.foot_shell { padding: 40px 28px 34px; border-radius: 24px; }
	.cta_row { grid-template-columns: 1fr; gap: 28px; padding-bottom: 34px; margin-bottom: 34px; }
	.foot_grid { grid-template-columns: 1fr; gap: 32px; }
	footer.site { padding-top: 64px; }
	.wa_panel { padding: 32px 26px; }
	.prose { font-size: 17px; }
	.faq_body { padding-right: 22px; }
}
@media (max-width: 600px) {
	.grid4 { grid-template-columns: 1fr; }
	/* icon-only WhatsApp button so the header always fits */
	.nav_end .btn_wa .wa_label { display: none; }
	.nav_end .btn_wa { padding: 11px 13px; }
	.brand_word { font-size: 15.5px; }
	.brand_word em { font-size: 7px; letter-spacing: 1.1px; }
	.brand svg { height: 26px; }
}
@media (max-width: 520px) {
	.stat_strip { grid-template-columns: 1fr; gap: 4px; }
	.card, .step_card { padding: 26px 22px 30px; }
	.btn { padding: 14px 26px; font-size: 15px; }
	.rev_card { padding: 24px 22px; }
	details.faq summary { font-size: 16.5px; padding: 20px 48px 20px 16px; }
	.faq_body { padding-left: 16px; }
	.author_card { flex-direction: column; align-items: flex-start; }
}

/* ---------------------------------------------------------------
   16. MOBILE NAV DRAWER (live site — mockup had hamburger only)
   --------------------------------------------------------------- */
.mobile_nav {
	display: none;
	position: fixed; inset: 0; z-index: 80;
	background: rgba(31,29,25,.46);
}
.mobile_nav.open { display: block; }
.mobile_nav_panel {
	position: absolute; top: 0; right: 0; bottom: 0; width: min(320px, 88vw);
	background: var(--cream); padding: 28px 22px; box-shadow: var(--shadow-lg);
	display: flex; flex-direction: column; gap: 18px;
	transform: translateX(0);
}
.mobile_nav_panel .close_nav {
	align-self: flex-end; background: none; border: 2px solid var(--line);
	border-radius: 12px; padding: 8px 10px; cursor: pointer; color: var(--ink);
}
.mobile_nav_panel ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile_nav_panel a {
	display: block; padding: 14px 16px; border-radius: 14px;
	font-weight: 800; font-size: 16px; color: var(--ink);
}
.mobile_nav_panel a.active { background: var(--coral-soft); color: var(--coral-deep); }
.mobile_nav_panel .mobile_langs {
	display: flex; flex-wrap: wrap; gap: 8px; padding-top: 8px;
	border-top: 1px solid var(--line);
}
body.nav_open { overflow: hidden; }

/* Manual review badge (equal weight to Google chip) */
.manual_chip {
	display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700;
	color: var(--sage-deep); border: 1px solid #c5d6c9; border-radius: 999px;
	padding: 4px 12px 4px 9px; background: var(--sage-soft); white-space: nowrap;
}
