:root {
  --bg: #f6efe8;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #fffaf5;
  --ink: #1f1a17;
  --muted: #62574e;
  --line: rgba(99, 78, 58, 0.14);
  --primary: #bf3f28;
  --primary-deep: #8e2717;
  --accent: #f4c57b;
  --success: #198754;
  --shadow: 0 24px 60px rgba(73, 38, 23, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI Variable", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(244, 197, 123, 0.45), transparent 30%),
    linear-gradient(180deg, #fdf8f1 0%, var(--bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 20;
  backdrop-filter: blur(22px);
}

.header-shell {
  display: grid;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.26rem;
  border: 1px solid rgba(99, 78, 58, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 14px 28px rgba(73, 38, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.78rem 0.9rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 245, 0.84));
  border: 1px solid rgba(99, 78, 58, 0.1);
  box-shadow:
    0 18px 38px rgba(73, 38, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 290px;
  flex: 0 0 auto;
  padding: 0.1rem 0.2rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  min-width: 0;
  width: 185px;
}

.brand strong,
.hero-copy h1,
.section-heading h2,
.hero-card h2,
.contact-copy h2 {
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

.brand strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.02;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  display: block;
  line-height: 1.05;
  font-size: 0.61rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--primary) 0%, #df6c34 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 14px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(255, 250, 245, 0.82));
  border: 1px solid rgba(99, 78, 58, 0.08);
  box-shadow:
    0 12px 28px rgba(73, 38, 23, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 0.1rem;
  padding: 0.18rem 0.22rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 250, 245, 0.4));
  border: 1px solid rgba(99, 78, 58, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding: 0.46rem 0.5rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
  white-space: nowrap;
}

.nav-links a:hover,
.footer-link:hover {
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 8px 16px rgba(73, 38, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.nav-links a + a::before {
  content: "";
  position: absolute;
  left: -0.08rem;
  top: 50%;
  width: 1px;
  height: 1rem;
  background: rgba(99, 78, 58, 0.12);
  transform: translateY(-50%);
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before {
  opacity: 0;
}

.nav-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-call {
  gap: 0.65rem;
  padding: 0.74rem 0.95rem;
  color: #fff;
  background: linear-gradient(145deg, #b73623 0%, #e15d2b 100%);
  flex: 0 0 auto;
  white-space: nowrap;
  box-shadow:
    0 16px 30px rgba(191, 63, 40, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nav-call-number {
  padding-left: 0.65rem;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.88rem;
}

.header-utility-row {
  display: flex;
  justify-content: center;
}

.header-utility-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.mobile-nav-panel {
  display: none;
}

.mobile-nav-links {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 241, 0.88));
  border: 1px solid rgba(99, 78, 58, 0.1);
  box-shadow: 0 22px 38px rgba(73, 38, 23, 0.1);
}

.mobile-nav-links a {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(99, 78, 58, 0.08);
  font-weight: 700;
  color: var(--ink);
}

.header-utility-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.58);
  border: 1px solid rgba(99, 78, 58, 0.08);
  box-shadow: 0 10px 22px rgba(73, 38, 23, 0.04);
}

.header-utility-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.55rem;
  min-height: 2.15rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(99, 78, 58, 0.08);
  box-shadow:
    0 8px 16px rgba(73, 38, 23, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.header-utility-nav a:hover {
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 22px rgba(73, 38, 23, 0.1);
  transform: translateY(-1px);
}

.header-utility-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.header-action-link,
.header-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.header-action-link {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(99, 78, 58, 0.1);
  box-shadow:
    0 8px 16px rgba(73, 38, 23, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.header-action-button {
  color: #fff;
  background: linear-gradient(145deg, #b73623 0%, #e15d2b 100%);
  box-shadow:
    0 12px 24px rgba(191, 63, 40, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.header-action-link:hover,
.header-action-button:hover {
  transform: translateY(-1px);
}

.button {
  padding: 0.95rem 1.4rem;
  border: 0;
  cursor: pointer;
}

.button:hover,
.nav-call:hover,
.floating-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--primary) 0%, #da5722 100%);
  box-shadow: 0 14px 30px rgba(191, 63, 40, 0.24);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(99, 78, 58, 0.12);
}

.whatsapp-button {
  color: #fff;
  background: linear-gradient(145deg, #25d366 0%, #128c4a 100%);
  border: 1px solid rgba(18, 140, 74, 0.28);
  box-shadow: 0 14px 30px rgba(18, 140, 74, 0.24);
}

.button-full {
  width: 100%;
}

.hero-section {
  position: relative;
  padding: 5rem 0 3rem;
}

.home-page .hero-section {
  overflow: hidden;
}

.home-page .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(253, 248, 241, 0.94) 0%, rgba(246, 231, 214, 0.84) 32%, rgba(194, 93, 55, 0.36) 58%, rgba(15, 24, 41, 0.34) 100%),
    radial-gradient(circle at top left, rgba(255, 226, 179, 0.4), transparent 34%),
    url("assets/ambulance-night-background.jpeg") center center / cover no-repeat;
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
}

.home-page .hero-grid {
  position: relative;
  z-index: 1;
}

.home-page .hero-copy {
  padding: 2rem;
  border-radius: 30px;
  background: rgba(255, 250, 244, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 28px 56px rgba(73, 38, 23, 0.16);
  backdrop-filter: blur(10px);
}

.home-page .hero-copy .eyebrow,
.home-page .hero-copy h1,
.home-page .hero-copy .hero-text,
.home-page .hero-copy .trust-list {
  color: var(--ink);
}

.hero-grid,
.coverage-grid,
.contact-grid,
.body-freezer-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 5rem);
  line-height: 1.02;
  max-width: 12ch;
}

.hero-text,
.section-heading p,
.service-card p,
.coverage-grid p,
.process-card p,
.contact-copy p,
.contact-form label,
.faq-list p,
.testimonial-note,
.footer-row p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.6rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--ink);
  font-weight: 600;
}

.hero-panel {
  position: relative;
}

.hero-image-frame,
.story-image-frame {
  margin: 0 0 1rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-image-frame img,
.story-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-frame {
  aspect-ratio: 16 / 11;
}

.status-card,
.hero-card,
.service-card,
.coverage-card,
.process-card,
.testimonial-card,
.contact-form,
.highlights-grid article,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.status-card {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-weight: 700;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 8px rgba(25, 135, 84, 0.13);
}

.hero-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.card-label {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  color: var(--primary-deep);
  background: rgba(244, 197, 123, 0.28);
  font-weight: 700;
}

.hero-card h2,
.section-heading h2,
.coverage-grid h2,
.contact-copy h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.response-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.response-grid div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.response-grid dt {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.response-grid dd {
  margin: 0;
  font-weight: 700;
}

.highlights-section,
.proof-section,
.seo-section,
.emergency-contacts-section,
.pricing-section,
.services-section,
.service-detail-section,
.body-freezer-section,
.coverage-section,
.process-section,
.testimonial-section,
.reviews-section,
.partners-section,
.map-section,
.first-aid-section,
.articles-section,
.faq-section,
.contact-section {
  padding: 2rem 0 4rem;
}

.highlights-grid,
.services-grid,
.pricing-grid,
.service-detail-grid,
.proof-grid,
.first-aid-grid,
.articles-preview-grid,
.reviews-grid,
.process-grid {
  display: grid;
  gap: 1.2rem;
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-card,
.review-card,
.partners-card,
.article-preview-card,
.seo-points div {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.proof-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.proof-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.5rem;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  color: var(--primary-deep);
}

.proof-card span {
  color: var(--muted);
  line-height: 1.6;
}

.highlights-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlights-grid article,
.pricing-card,
.article-preview-card,
.service-card,
.process-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.articles-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-kicker {
  margin: 0 0 0.6rem;
  color: var(--primary-deep);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-preview-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.article-preview-card p:last-of-type {
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.text-link:hover {
  color: var(--primary);
}

.section-heading {
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  max-width: 14ch;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-card {
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-detail-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.service-detail-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.seo-layout,
.emergency-contacts-layout,
.partners-layout,
.map-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
  align-items: start;
}

.seo-copy h2,
.partners-layout h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3vw, 3rem);
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

.seo-copy p,
.partners-layout p {
  color: var(--muted);
  line-height: 1.7;
}

.seo-points {
  display: grid;
  gap: 1rem;
}

.seo-points div,
.partners-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.emergency-contacts-copy h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3vw, 3rem);
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

.emergency-contacts-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.emergency-contacts-card {
  padding: 1.55rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.emergency-contact-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.98), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(99, 78, 58, 0.12);
}

.emergency-contact-row h3,
.emergency-contact-grid h3 {
  margin: 0 0 0.35rem;
}

.emergency-contact-row p,
.emergency-contact-grid p {
  margin: 0;
}

.emergency-contact-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.emergency-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.emergency-contact-grid article {
  padding: 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(99, 78, 58, 0.1);
}

.emergency-contact-grid a {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.emergency-contact-grid span,
.emergency-contact-row p,
.emergency-contacts-note {
  color: var(--muted);
  line-height: 1.6;
}

.emergency-contacts-note {
  margin: 1rem 0 0;
  font-weight: 600;
}

.ads-ready-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
  align-items: stretch;
}

.ads-ready-copy h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3vw, 3rem);
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

.ads-ready-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.ads-ready-card {
  padding: 1.55rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(255, 255, 255, 0.92)),
    var(--surface);
  border: 1px solid rgba(99, 78, 58, 0.12);
  box-shadow: var(--shadow);
}

.ads-ready-label {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(207, 75, 39, 0.1);
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ads-ready-card h3 {
  margin: 0 0 0.7rem;
}

.ads-ready-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.ads-ready-box {
  min-height: 190px;
  border-radius: 24px;
  border: 1px dashed rgba(207, 75, 39, 0.35);
  background:
    radial-gradient(circle at top left, rgba(248, 207, 130, 0.28), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 238, 0.88));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.2rem;
}

.ads-ready-box span {
  color: var(--primary-deep);
  font-weight: 800;
}

.articles-page-hero .section-heading h1,
.article-page-hero .section-heading h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.4rem;
  align-items: start;
}

.article-content,
.article-sidebar,
.article-index-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.article-content {
  padding: 1.7rem;
}

.article-content h2 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

.article-content p,
.article-content li,
.article-sidebar p,
.article-index-card p {
  color: var(--muted);
  line-height: 1.75;
}

.article-content ul,
.article-content ol {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.article-block + .article-block {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(99, 78, 58, 0.1);
}

.article-sidebar {
  padding: 1.4rem;
  position: sticky;
  top: 7rem;
}

.article-sidebar h3,
.article-index-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.article-sidebar ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink);
  font-weight: 600;
}

.article-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.article-index-card {
  padding: 1.5rem;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pricing-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.pricing-card p,
.pricing-note p {
  color: var(--muted);
  line-height: 1.7;
}

.pricing-note {
  margin-top: 1.2rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.96), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(99, 78, 58, 0.1);
  box-shadow: 0 18px 34px rgba(73, 38, 23, 0.08);
}

.map-copy h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3vw, 3rem);
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

.map-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.map-points {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink);
  font-weight: 600;
}

.map-frame-wrap {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 420px;
}

.location-map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.seo-points h3,
.review-card strong {
  margin-top: 0;
}

.seo-points p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.body-freezer-layout {
  grid-template-columns: 1.05fr 0.95fr;
}

.body-freezer-image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.body-freezer-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.body-freezer-copy {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.body-freezer-copy h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3vw, 3rem);
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

.body-freezer-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.body-freezer-list {
  display: grid;
  gap: 0.9rem;
  padding-left: 1.2rem;
  margin: 1.4rem 0 0;
  color: var(--ink);
  font-weight: 600;
}

.body-freezer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.service-card h3,
.highlights-grid h3,
.process-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.service-link,
.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.service-link {
  margin-top: 0.8rem;
}

.service-link:hover,
.breadcrumb-link:hover {
  color: var(--primary);
}

.coverage-card {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
}

.coverage-card span {
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.coverage-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
  padding-left: 1.2rem;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card span {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.testimonial-card {
  padding: 2.2rem;
  border-radius: var(--radius-xl);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.4rem;
  align-items: stretch;
}

.story-image-frame {
  aspect-ratio: 4 / 5;
  margin: 0;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.45;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.first-aid-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.first-aid-preview-action {
  margin-top: 1.4rem;
}

.first-aid-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.first-aid-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.first-aid-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.first-aid-page-hero .section-heading h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

.service-page-hero .section-heading {
  max-width: 860px;
}

.breadcrumb-link {
  margin-bottom: 1rem;
}

.first-aid-guide-section {
  padding: 0 0 4rem;
}

.first-aid-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-page-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-page-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.service-page-card p,
.service-page-card li {
  color: var(--muted);
  line-height: 1.7;
}

.service-page-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.review-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.review-card p {
  color: var(--muted);
  line-height: 1.7;
}

.review-stars {
  margin-bottom: 0.8rem;
  color: #d79a19;
  letter-spacing: 0.18em;
  font-size: 1rem;
}

.area-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.area-strip span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(191, 63, 40, 0.08);
  border: 1px solid rgba(191, 63, 40, 0.14);
  color: var(--primary-deep);
  font-weight: 700;
}

.local-seo-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
}

.local-seo-card {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 240, 229, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.local-seo-card h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.local-seo-card ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 600;
}

.partners-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-bottom: 0;
}

.contact-form {
  padding: 1.7rem;
  border-radius: var(--radius-xl);
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(99, 78, 58, 0.15);
  background: rgba(255, 255, 255, 0.88);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(191, 63, 40, 0.18);
  border-color: rgba(191, 63, 40, 0.42);
}

.form-status {
  min-height: 1.2rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--primary-deep);
}

.booking-confirmation {
  margin-top: 1rem;
  padding: 1rem 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 248, 241, 0.96), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(99, 78, 58, 0.12);
  box-shadow: 0 16px 34px rgba(73, 38, 23, 0.08);
}

.booking-confirmation h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.booking-confirmation p {
  margin: 0;
  color: var(--muted);
}

.booking-confirmation-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(99, 78, 58, 0.12);
}

.footer-link {
  font-weight: 800;
}

.footer-contact-line {
  margin-top: 0.35rem;
  margin-bottom: 0;
}

.footer-contact-line a {
  font-weight: 700;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(145deg, #1f9b62 0%, #167749 100%);
  box-shadow: 0 18px 30px rgba(22, 119, 73, 0.25);
}

@media (max-width: 980px) {
  .header-shell {
    gap: 0;
  }

  .nav-bar {
    gap: 1rem;
    padding: 0.85rem 0.9rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
  }

  .header-utility-row {
    display: none;
  }

  .mobile-nav-panel:not([hidden]) {
    display: block;
    margin-top: 0.75rem;
  }

  .hero-grid,
  .coverage-grid,
  .contact-grid,
  .body-freezer-layout,
  .seo-layout,
  .ads-ready-layout,
  .emergency-contacts-layout,
  .partners-layout,
  .map-layout,
  .article-layout,
  .local-seo-layout,
  .services-grid,
  .pricing-grid,
  .article-index-grid,
  .articles-preview-grid,
  .service-detail-grid,
  .proof-grid,
  .first-aid-grid,
  .first-aid-guide-grid,
  .service-page-grid,
  .highlights-grid,
  .reviews-grid,
  .process-grid,
  .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .coverage-card ul,
  .response-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 0.45rem;
    backdrop-filter: blur(12px);
  }

  .header-shell {
    gap: 0.45rem;
  }

  .hero-section {
    padding-top: 3.15rem;
  }

  .nav-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0.72rem 0.78rem;
    border-radius: 20px;
  }

  .nav-toggle {
    width: 2.8rem;
    height: 2.8rem;
    margin-left: 0;
  }

  .nav-call {
    width: auto;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.72rem 0.82rem;
    font-size: 0.88rem;
    min-height: 2.8rem;
  }

  .nav-call-number {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 0.45rem;
    font-size: 0.92rem;
    font-weight: 800;
  }

  .brand {
    width: auto;
    min-width: 0;
    gap: 0.65rem;
    align-items: center;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .brand-copy {
    gap: 0.05rem;
    width: auto;
  }

  .mobile-nav-panel:not([hidden]) {
    margin-top: 0.35rem;
  }

  .button,
  .hero-actions a,
  .contact-actions a,
  .body-freezer-actions a {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 2.15rem;
    line-height: 0.98;
  }

  .hero-card,
  .body-freezer-copy,
  .contact-form,
  .testimonial-card {
    padding: 1.3rem;
  }

  .home-page .hero-copy {
    padding: 1.35rem;
    border-radius: 24px;
  }

  .mobile-nav-links {
    padding: 0.85rem;
    border-radius: 20px;
  }

  .mobile-nav-links a {
    padding: 0.82rem 0.9rem;
  }

  .booking-confirmation-actions {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .emergency-contact-row,
  .emergency-contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .emergency-contact-grid {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    left: 1rem;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .nav-bar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-call {
    grid-column: 1 / -1;
    width: 100%;
  }
}
