/* =============================================================
   HeliAmbulance Nepal, theme styles
   Palette and type are drawn from the brand logo:
   navy + rescue red + white, condensed italic display type,
   and the EKG lifeline as the recurring signature element.
   ============================================================= */

:root {
	--navy-950: #0A142E;
	--navy-900: #0D1B3E;
	--navy-700: #17306B;
	--navy-600: #1E3D85;
	--red-600: #D42B2B;
	--red-700: #B01F1F;
	--red-050: #FCECEC;
	--ink: #10203F;
	--slate: #51608A;
	--line: #DCE3F2;
	--mist: #F1F4FA;
	--paper: #FFFFFF;
	--wa: #1DA851;

	--font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
	--font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;

	--radius: 12px;
	--radius-sm: 8px;
	--shadow-sm: 0 1px 2px rgba(13, 27, 62, 0.08), 0 4px 14px rgba(13, 27, 62, 0.06);
	--shadow-md: 0 6px 24px rgba(13, 27, 62, 0.12);
	--container: 1180px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--red-600); }
ul, ol { padding-left: 1.2em; }
table { border-collapse: collapse; width: 100%; }

.sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
	position: absolute; left: 8px; top: -48px; z-index: 200;
	background: var(--navy-900); color: #fff; padding: 10px 16px;
	border-radius: 0 0 8px 8px; transition: top .2s ease;
}
.skip-link:focus { top: 0; color: #fff; }

:focus-visible { outline: 3px solid var(--red-600); outline-offset: 2px; border-radius: 2px; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 860px; }
.section { padding: 88px 0; }
.section-mist { background: var(--mist); }
.section-navy { background: var(--navy-900); color: #DCE4F5; }
.section-navy a:not(.btn) { color: #fff; }
.center { text-align: center; }

/* ---------- Type ---------- */
.kicker {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: .95rem;
	color: var(--red-600);
	margin: 0 0 10px;
}
.kicker-light { color: #F08A8A; }

.h-display {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 700;
	text-transform: uppercase;
	line-height: .96;
	letter-spacing: .005em;
	font-size: clamp(2.7rem, 6.2vw, 4.6rem);
	color: var(--navy-900);
	margin: 0 0 18px;
}
.h-light { color: #fff; }
.tx-red { color: var(--red-600); }
.tx-red-light { color: #FF6B5E; }

.h2 {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	font-size: clamp(1.9rem, 3.6vw, 2.8rem);
	color: var(--navy-900);
	margin: 0 0 16px;
}
.h2-light { color: #fff; }

/* The signature: an EKG lifeline drawn under section headings */
.ekg-after {
	padding-bottom: 22px;
	background: url("../img/ekg.svg") no-repeat left bottom;
	background-size: 200px 22px;
	margin-bottom: 26px;
}

h3 {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .02em;
	font-size: 1.3rem;
	line-height: 1.1;
	color: var(--navy-900);
	margin: 0 0 10px;
}
.section-navy h3 { color: #fff; }

.lede { font-size: 1.2rem; line-height: 1.6; color: var(--slate); max-width: 56ch; margin: 0 0 26px; }
.lede-sm { font-size: 1.1rem; color: var(--slate); max-width: 62ch; margin: 0 0 30px; }
.lede-light, .section-navy .lede-sm { color: #B9C6E4; }
.fineprint { font-size: .92rem; color: var(--slate); }
.section-navy .fineprint { color: #9FB0D6; }
p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	font-size: 1.05rem;
	line-height: 1;
	padding: 14px 22px 15px;
	border-radius: var(--radius-sm);
	border: 2px solid transparent;
	text-decoration: none;
	cursor: pointer;
	transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { font-size: 1.18rem; padding: 17px 28px 18px; }
.btn-red { background: var(--red-600); color: #fff; }
.btn-red:hover { background: var(--red-700); color: #fff; }
.btn-navy { background: var(--navy-900); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; }
.btn-white { background: #fff; color: var(--navy-900); }
.btn-white:hover { background: var(--mist); color: var(--navy-900); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn-ghost:hover { border-color: #fff; color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .6); }
.btn-outline-white:hover { border-color: #fff; color: #fff; }

.ic { width: 18px; height: 18px; flex: none; }
.ic-lg { width: 30px; height: 30px; flex: none; color: var(--red-600); }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy-950); color: #C7D2EC; font-size: .9rem; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 8px; padding-bottom: 8px; }
.topbar-note { margin: 0; display: flex; align-items: center; gap: 9px; font-weight: 500; }
.topbar-links { display: flex; gap: 22px; }
.topbar a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #F08A8A; }
.pulse-dot {
	width: 9px; height: 9px; border-radius: 50%;
	background: var(--red-600);
	box-shadow: 0 0 0 0 rgba(212, 43, 43, .6);
	animation: han-pulse 1.8s infinite;
}
@keyframes han-pulse {
	0% { box-shadow: 0 0 0 0 rgba(212, 43, 43, .55); }
	70% { box-shadow: 0 0 0 9px rgba(212, 43, 43, 0); }
	100% { box-shadow: 0 0 0 0 rgba(212, 43, 43, 0); }
}

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.admin-bar .site-header { top: 32px; }
.header-in { display: flex; align-items: center; gap: 28px; padding-top: 12px; padding-bottom: 12px; }
.brand { margin-right: auto; display: inline-flex; }
.brand img { width: auto; height: 62px; }

.site-nav { display: flex; align-items: center; gap: 26px; }
.nav-list { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.nav-list a {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05em;
	font-size: 1.08rem;
	color: var(--navy-900);
	text-decoration: none;
	padding: 6px 2px;
	background: linear-gradient(var(--red-600), var(--red-600)) no-repeat left bottom / 0 3px;
	transition: background-size .2s ease, color .2s ease;
}
.nav-list a:hover,
.nav-list .current-menu-item > a,
.nav-list .current_page_item > a { color: var(--red-600); background-size: 100% 3px; }
.nav-cta { display: none; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
	background: var(--mist) url("../img/ridge.svg") no-repeat bottom center / 1600px auto;
	padding: 84px 0 96px;
	border-bottom: 1px solid var(--line);
}
.hero-in { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 56px; align-items: start; }
.hero-copy .h-display { max-width: 13ch; }
.ekg-hero { width: min(420px, 90%); height: auto; margin: 4px 0 18px; }
.ekg-path { stroke-dasharray: 900; stroke-dashoffset: 900; animation: han-draw 1.6s ease-out .2s forwards; }
@keyframes han-draw { to { stroke-dashoffset: 0; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero-note { font-size: .95rem; color: var(--slate); max-width: 48ch; }

.hero-card {
	background: var(--navy-900);
	color: #DCE4F5;
	border-radius: var(--radius);
	padding: 30px 30px 26px;
	box-shadow: var(--shadow-md);
	border-top: 5px solid var(--red-600);
}
.card-kicker {
	font-family: var(--font-display); font-style: italic; font-weight: 700;
	text-transform: uppercase; letter-spacing: .12em; font-size: .95rem;
	color: #F08A8A; margin: 0 0 8px;
}
.hotline {
	font-family: var(--font-display); font-style: italic; font-weight: 700;
	font-size: clamp(1.9rem, 3.4vw, 2.5rem); letter-spacing: .02em;
	color: #fff; text-decoration: none; display: inline-block; line-height: 1.05;
	margin-bottom: 6px;
}
.hotline:hover { color: #FF8A7E; }
.card-sub { font-size: .98rem; color: #B9C6E4; margin: 0 0 16px; }
.ready-list { margin: 0 0 16px; padding-left: 1.3em; }
.ready-list li { margin-bottom: 11px; }
.ready-list li::marker { color: var(--red-600); font-weight: 700; }
.ready-list strong { color: #fff; }
.card-foot {
	margin: 0; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .16);
	font-size: .95rem; color: #B9C6E4;
}

/* ---------- Trust strip ---------- */
.trust { background: var(--navy-950); }
.trust-in {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
	padding-top: 26px; padding-bottom: 26px;
}
.trust-item { display: flex; align-items: center; gap: 14px; color: #C7D2EC; }
.trust-item p { margin: 0; line-height: 1.35; font-size: .95rem; display: flex; flex-direction: column; }
.trust-item strong {
	color: #fff; font-family: var(--font-display); font-style: italic;
	font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 1.08rem;
}

/* ---------- Service cards (home) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.svc-card {
	display: flex; flex-direction: column; gap: 4px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px 24px 22px;
	text-decoration: none;
	color: var(--ink);
	position: relative;
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc-card::before {
	content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px;
	background: var(--red-600); transform: scaleX(0); transform-origin: left;
	transition: transform .22s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; color: var(--ink); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card p { color: var(--slate); font-size: .98rem; margin: 0 0 14px; }
.svc-more {
	margin-top: auto;
	font-family: var(--font-display); font-style: italic; font-weight: 700;
	text-transform: uppercase; letter-spacing: .08em; font-size: .95rem;
	color: var(--red-600); text-decoration: none;
}
.svc-card:hover .svc-more::after { transform: translateX(4px); }
.svc-more::after { content: "\2192"; display: inline-block; margin-left: 6px; transition: transform .18s ease; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 34px; }
.step { position: relative; padding-top: 14px; }
.step::before {
	content: ""; position: absolute; top: 0; left: 0; right: -26px; height: 0;
	border-top: 2px dashed #B9C6E4;
}
.step:last-child::before { right: 0; }
.step-num {
	display: inline-block;
	font-family: var(--font-display); font-style: italic; font-weight: 700;
	font-size: 2.4rem; line-height: 1; color: var(--red-600);
	background: var(--mist);
	position: relative; z-index: 1; padding-right: 12px; margin-bottom: 8px;
	margin-top: -34px;
}
.step p { color: var(--slate); font-size: .98rem; }

/* ---------- Region chips ---------- */
.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
.region-chip {
	display: flex; flex-direction: column; gap: 3px;
	border: 1px solid var(--line); border-left: 4px solid var(--red-600);
	border-radius: var(--radius-sm);
	background: var(--paper);
	padding: 16px 18px;
	text-decoration: none; color: var(--ink);
	transition: transform .16s ease, box-shadow .16s ease;
}
.region-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); color: var(--ink); }
.region-chip strong {
	font-family: var(--font-display); font-style: italic; font-weight: 700;
	text-transform: uppercase; letter-spacing: .03em; font-size: 1.12rem; color: var(--navy-900);
}
.region-chip span { font-size: .9rem; color: var(--slate); }

/* ---------- Insurance band ---------- */
.band-insurance { position: relative; }
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 10px; }
.split-cell {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--radius);
	padding: 26px 26px 22px;
}
.split-cell p { color: #C3CFEA; }
.band-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ---------- FAQ ---------- */
.faq { margin-top: 30px; margin-bottom: 30px; }
.faq details {
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--paper);
	margin-bottom: 12px;
	overflow: hidden;
}
.faq summary {
	list-style: none;
	cursor: pointer;
	padding: 18px 52px 18px 20px;
	font-family: var(--font-display); font-style: italic; font-weight: 700;
	text-transform: uppercase; letter-spacing: .02em; font-size: 1.15rem;
	color: var(--navy-900);
	position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: "+"; position: absolute; right: 20px; top: 50%;
	transform: translateY(-52%);
	font-size: 1.5rem; color: var(--red-600); font-style: normal;
	transition: transform .18s ease;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] summary { border-bottom: 1px dashed var(--line); }
.faq details p { padding: 16px 20px 20px; margin: 0; color: var(--slate); }
.faq details p a { color: var(--red-600); }
.faq summary:hover { color: var(--red-600); }

/* ---------- Final CTA ---------- */
.cta-final {
	background: linear-gradient(135deg, var(--red-700), var(--red-600));
	color: #fff;
	padding: 72px 0;
}
.cta-in { text-align: center; }
.cta-final p { color: #FBD9D9; max-width: 54ch; margin: 0 auto 26px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
	background: var(--navy-900);
	padding: 76px 0 64px;
	position: relative;
	overflow: hidden;
}
.page-hero::after {
	content: ""; position: absolute; inset: auto 0 0 0; height: 200px;
	background: url("../img/ridge.svg") no-repeat bottom center / 1600px auto;
	opacity: .25; pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .h-display { max-width: 22ch; }
.page-hero .lede { color: #B9C6E4; margin-bottom: 0; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: start; }
.photo-stack { display: grid; gap: 22px; }
.photo-frame {
	margin: 0; border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow-md); background: var(--navy-900);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; }
.photo-offset { margin-left: 40px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.role-card {
	background: var(--paper); border: 1px solid var(--line);
	border-radius: var(--radius); padding: 26px 24px;
	border-top: 4px solid var(--red-600);
}
.role-card p { color: var(--slate); font-size: .98rem; }
.value-grid { margin-top: 30px; }
.value-item { border-left: 4px solid var(--red-600); padding-left: 20px; }
.value-item p { color: var(--slate); }
.record-grid { margin-top: 10px; }
.record-item {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--radius); padding: 22px;
}
.record-item p { color: #C3CFEA; margin: 0; font-size: .98rem; }

/* ---------- Service detail rows ---------- */
.svc-detail {
	display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.svc-flip .svc-text { order: 2; }
.svc-flip .svc-photo { order: 1; }
.svc-photo img { aspect-ratio: 4 / 3; }
.check-list { list-style: none; padding: 0; margin: 20px 0; }
.check-list li {
	padding-left: 32px; position: relative; margin-bottom: 11px;
}
.check-list li::before {
	content: ""; position: absolute; left: 0; top: 4px;
	width: 18px; height: 18px; border-radius: 50%;
	background: var(--red-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 9.6-9.6-1.4-1.4z' fill='%23D42B2B'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---------- Coverage ---------- */
.cov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.cov-card {
	border: 1px solid var(--line); border-radius: var(--radius);
	overflow: hidden; background: var(--paper);
	display: flex; flex-direction: column;
	transition: box-shadow .18s ease;
}
.cov-card:hover { box-shadow: var(--shadow-md); }
.cov-photo { margin: 0; }
.cov-photo img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.cov-body { padding: 24px 26px 26px; }
.cov-body h2 {
	font-family: var(--font-display); font-style: italic; font-weight: 700;
	text-transform: uppercase; font-size: 1.5rem; color: var(--navy-900); margin: 0 0 6px;
}
.cov-meta {
	font-size: .92rem; font-weight: 600; color: var(--red-600);
	margin: 0 0 12px; letter-spacing: .01em;
}
.cov-body p:last-child { color: var(--slate); font-size: .98rem; }
.note-box {
	margin-top: 34px;
	background: var(--navy-900); color: #C3CFEA;
	border-radius: var(--radius);
	padding: 30px 32px;
	border-left: 6px solid var(--red-600);
}
.note-box h2 {
	font-family: var(--font-display); font-style: italic; font-weight: 700;
	text-transform: uppercase; color: #fff; font-size: 1.5rem; margin: 0 0 8px;
}
.note-box p { margin: 0; }
.limit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 30px; }
.limit-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.limit-item p { color: var(--slate); font-size: .98rem; margin: 0; }

/* ---------- Rules / numbered list ---------- */
.rule-list { display: grid; gap: 22px; margin-top: 30px; }
.rule {
	display: flex; gap: 20px; align-items: flex-start;
	background: var(--paper); border: 1px solid var(--line);
	border-radius: var(--radius); padding: 22px 24px;
}
.section-mist .rule { border-color: transparent; box-shadow: var(--shadow-sm); }
.rule-num {
	font-family: var(--font-display); font-style: italic; font-weight: 700;
	font-size: 2rem; line-height: 1; color: var(--red-600); flex: none; padding-top: 2px;
}
.rule p { color: var(--slate); margin: 0; font-size: .98rem; }

/* ---------- Insurance page ---------- */
.table-wrap { overflow-x: auto; margin: 26px 0 14px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th {
	background: var(--navy-900); color: #fff;
	font-family: var(--font-display); font-style: italic; font-weight: 700;
	text-transform: uppercase; letter-spacing: .05em; font-size: 1rem;
}
.price-table tbody tr:nth-child(even) { background: var(--mist); }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table td:last-child { font-weight: 600; color: var(--navy-900); white-space: nowrap; }
.doc-grid { margin-top: 26px; }
.doc-item {
	background: rgba(255, 255, 255, .06);
	border: 1px dashed rgba(255, 255, 255, .3);
	border-radius: var(--radius-sm);
	padding: 16px;
	text-align: center;
	font-family: var(--font-display); font-style: italic; font-weight: 700;
	text-transform: uppercase; letter-spacing: .05em; color: #fff;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; align-items: start; }
.contact-card {
	background: var(--paper); border: 1px solid var(--line);
	border-radius: var(--radius); padding: 28px;
}
.contact-card h2 {
	font-family: var(--font-display); font-style: italic; font-weight: 700;
	text-transform: uppercase; font-size: 1.4rem; color: var(--navy-900); margin: 0 0 14px;
}
.contact-emergency { background: var(--navy-900); border: 0; border-top: 6px solid var(--red-600); color: #DCE4F5; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0 22px; }
.ready-compact li { margin-bottom: 7px; font-size: .98rem; }
.contact-side { display: grid; gap: 22px; }
.office-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.office-list li { display: grid; gap: 2px; }
.office-list strong {
	font-family: var(--font-display); font-style: italic; font-weight: 700;
	text-transform: uppercase; letter-spacing: .04em; font-size: 1rem; color: var(--navy-900);
}
.office-list a { color: var(--red-600); text-decoration: none; }
.office-list a:hover { text-decoration: underline; }

.inquiry-form { display: grid; gap: 18px; margin-top: 26px; }
.form-row { display: grid; gap: 7px; }
.form-row label {
	font-family: var(--font-display); font-style: italic; font-weight: 700;
	text-transform: uppercase; letter-spacing: .05em; font-size: 1rem; color: var(--navy-900);
}
.form-row input, .form-row select, .form-row textarea {
	font-family: var(--font-body); font-size: 1rem; color: var(--ink);
	padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
	background: var(--paper); width: 100%;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
	outline: 3px solid rgba(212, 43, 43, .35); border-color: var(--red-600);
}
.inquiry-form .btn { justify-self: start; }

/* ---------- Blog ---------- */
.post-list { display: grid; gap: 26px; }
.post-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: var(--paper); }
.post-meta { color: var(--slate); font-size: .9rem; margin: 0 0 6px; }
.post-title { margin: 0 0 10px; font-family: var(--font-display); font-style: italic; font-weight: 700; text-transform: uppercase; font-size: 1.6rem; line-height: 1.05; }
.post-title a { color: var(--navy-900); text-decoration: none; }
.post-title a:hover { color: var(--red-600); }
.post-excerpt { color: var(--slate); }
.pagination { margin-top: 30px; }
.entry h2, .entry h3 { margin-top: 1.4em; }
.entry img { border-radius: var(--radius); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #B9C6E4; }
.f-grid {
	display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px;
	padding-top: 64px; padding-bottom: 48px;
}
.f-brandcard {
	background: #fff; border-radius: var(--radius-sm);
	padding: 12px 16px; display: inline-block; margin-bottom: 18px;
}
.f-about p { font-size: .95rem; margin: 0; }
.f-title {
	font-family: var(--font-display); font-style: italic; font-weight: 700;
	text-transform: uppercase; letter-spacing: .06em; font-size: 1.1rem;
	color: #fff; margin: 4px 0 16px;
}
.f-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: .96rem; }
.f-links a { color: #B9C6E4; text-decoration: none; }
.f-links a:hover { color: #fff; text-decoration: underline; }
.f-contact li { line-height: 1.45; }
.f-contact a { color: #fff; }
.f-bottom { border-top: 1px solid rgba(255, 255, 255, .12); }
.f-bottom-in {
	display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
	padding-top: 18px; padding-bottom: 18px; font-size: .85rem; color: #8B9BC4;
}
.f-bottom p { margin: 0; }

/* ---------- Mobile emergency bar ---------- */
.m-emergency {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
	display: none;
	grid-template-columns: 1.2fr 1fr;
	box-shadow: 0 -4px 18px rgba(13, 27, 62, .25);
}
.m-emergency a {
	display: flex; align-items: center; justify-content: center; gap: 9px;
	font-family: var(--font-display); font-style: italic; font-weight: 700;
	text-transform: uppercase; letter-spacing: .05em; font-size: 1.1rem;
	color: #fff; text-decoration: none; padding: 15px 10px;
}
.m-call { background: var(--red-600); }
.m-call:hover { background: var(--red-700); color: #fff; }
.m-wa { background: var(--wa); }
.m-wa:hover { color: #fff; filter: brightness(.95); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
	.svc-grid { grid-template-columns: repeat(2, 1fr); }
	.region-grid { grid-template-columns: repeat(3, 1fr); }
	.trust-in { grid-template-columns: repeat(2, 1fr); }
	.steps { grid-template-columns: repeat(2, 1fr); }
	.step::before { right: 0; }
	.f-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
	.section { padding: 64px 0; }
	.hero { padding: 56px 0 72px; }
	.hero-in, .about-grid, .svc-detail, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
	.svc-flip .svc-text { order: 1; }
	.svc-flip .svc-photo { order: 2; }
	.cov-grid { grid-template-columns: 1fr; }
	.split-2 { grid-template-columns: 1fr; }
	.grid-3, .limit-grid { grid-template-columns: 1fr; }
	.grid-2 { grid-template-columns: 1fr; }
	.grid-4 { grid-template-columns: repeat(2, 1fr); }
	.photo-offset { margin-left: 0; }

	/* Nav collapses */
	.topbar-note { display: none; }
	.topbar-in { justify-content: center; }
	.header-cta { display: none; }
	.nav-toggle {
		display: inline-flex; flex-direction: column; gap: 5px;
		background: none; border: 0; padding: 10px; cursor: pointer;
	}
	.nav-toggle .bar { width: 26px; height: 3px; background: var(--navy-900); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
	.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
	.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
	.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

	.site-nav {
		position: absolute; left: 0; right: 0; top: 100%;
		background: var(--paper);
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow-md);
		flex-direction: column; align-items: stretch; gap: 0;
		padding: 10px 22px 22px;
		display: none;
	}
	.site-nav.is-open { display: flex; }
	.nav-list { flex-direction: column; gap: 0; }
	.nav-list a { display: block; padding: 13px 2px; font-size: 1.3rem; border-bottom: 1px solid var(--line); background: none; }
	.nav-cta { display: inline-flex; margin-top: 16px; justify-content: center; }

	.m-emergency { display: grid; }
	body { padding-bottom: 56px; }
	.brand img { height: 50px; }
}

@media (max-width: 560px) {
	.svc-grid, .region-grid, .steps, .trust-in, .grid-4 { grid-template-columns: 1fr; }
	.step::before { display: none; }
	.step-num { margin-top: 0; background: none; padding-right: 0; }
	.section-mist .step-num { background: none; }
	.hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
	.hero-card { padding: 24px 20px 20px; }
	.rule { flex-direction: column; gap: 8px; }
	.f-grid { grid-template-columns: 1fr; gap: 30px; }
	.f-bottom-in { flex-direction: column; gap: 6px; }
	.topbar-links { flex-direction: column; gap: 4px; align-items: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
	.ekg-path { stroke-dashoffset: 0; }
}

/* ============ v1.1: booking form, region pages, cost table ============ */
.booking-wrap { max-width: 760px; margin: 0 auto; }
.booking-emergency {
	background: var(--red-050); border-left: 4px solid var(--red-600);
	padding: 14px 18px; border-radius: 8px; margin: 18px 0 22px; color: var(--ink);
}
.booking-emergency a { color: var(--red-700); font-weight: 700; }
.booking-form { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
.booking-form .form-row { margin-bottom: 14px; }
.booking-form label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.booking-form input, .booking-form select, .booking-form textarea {
	width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px;
	font: inherit; color: var(--ink); background: #fff;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
	outline: 2px solid var(--navy-600); outline-offset: 1px; border-color: var(--navy-600);
}
.booking-form .req { color: var(--red-600); }
.form-privacy { color: var(--slate); font-size: .9rem; margin-top: 10px; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; overflow: hidden; }
.form-notice { border-radius: 10px; padding: 14px 18px; margin: 0 0 18px; font-weight: 600; }
.form-notice-ok { background: #EAF7EE; border: 1px solid #9CD6AD; color: #1E5A31; }
.form-notice-err { background: var(--red-050); border: 1px solid #E7A6A6; color: var(--red-700); }

.chip-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 18px 0; }
.chip-list li {
	background: var(--mist); border: 1px solid var(--line); border-radius: 999px;
	padding: 8px 16px; font-weight: 600; color: var(--ink); font-size: .95rem;
}

.split-media { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.split-figure { margin: 0; }
.img-rounded { width: 100%; height: auto; border-radius: 16px; display: block; box-shadow: 0 18px 40px rgba(13, 27, 62, .18); }

.table-wrap { overflow-x: auto; }
.cost-table { width: 100%; border-collapse: collapse; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.cost-table th { background: var(--navy-900); color: #fff; text-align: left; padding: 14px 16px; font-weight: 700; }
.cost-table td { padding: 13px 16px; border-top: 1px solid var(--line); color: var(--ink); }
.cost-table tbody tr:nth-child(even) { background: var(--mist); }
.cost-table a { color: var(--navy-700); font-weight: 600; }
.table-note { color: var(--slate); font-size: .95rem; margin-top: 12px; }
.cov-more a { font-weight: 700; color: var(--red-700); }
.svc-page-link { margin-top: 8px; }

@media (max-width: 860px) {
	.split-media { grid-template-columns: 1fr; gap: 24px; }
	.form-grid { grid-template-columns: 1fr; }
	.booking-form { padding: 20px; }
}
