:root {
  color-scheme: light;
  --ink: #222222;
  --ink-soft: #6a6a6a;
  --brand: #0a4a78;
  --brand-dark: #083656;
  --light: #ffffff;
  --line: #e2e2e2;
  --radius: 18px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  --topbar-height: 40px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #f4f4f4;
  line-height: 1.7;
  font-size: 16.5px;
  padding-top: var(--topbar-height);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
}

.top-bar {
  background: #2f2f2f;
  color: #fff;
  font-size: 0.85rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.top-bar-item:hover {
  text-decoration: underline;
}

.top-bar-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.top-bar-note {
  margin-left: auto;
  opacity: 0.75;
}

.site-header {
  position: sticky;
  top: var(--topbar-height);
  z-index: 50;
  background: var(--light);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-home .site-header.is-overlay {
  position: absolute;
  top: var(--topbar-height);
  width: 100%;
  background: transparent;
  border-bottom: none;
}

.page-home .site-header.is-overlay.is-sticky {
  position: fixed;
  top: var(--topbar-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(28, 31, 34, 0.2);
  backdrop-filter: blur(6px);
}

.nav-shell {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.page-home .nav-shell {
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.logo-light {
  display: none;
}

.page-home .site-header.is-overlay .logo-dark {
  display: none;
}

.page-home .site-header.is-overlay .logo-light {
  display: block;
}

.page-home .site-header.is-overlay.is-sticky .logo-dark {
  display: block;
}

.page-home .site-header.is-overlay.is-sticky .logo-light {
  display: none;
}

.site-nav {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  align-items: center;
}

.site-nav a,
.site-nav button {
  border: none;
  background: transparent;
  font: inherit;
  color: var(--ink);
  padding: 6px 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.page-home .site-header.is-overlay .site-nav a,
.page-home .site-header.is-overlay .site-nav button {
  color: #fff;
}

.page-home .site-header.is-overlay.is-sticky .site-nav a,
.page-home .site-header.is-overlay.is-sticky .site-nav button {
  color: var(--ink);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 8px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -8px;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 12px 16px;
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 90;
}

.dropdown a {
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0.02em;
  color: #2b2b2b;
}

.page-home .site-header.is-overlay .dropdown a {
  color: #2b2b2b;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  display: flex;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px 16px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 18px 24px 32px;
  background: var(--light);
  border-bottom: 1px solid var(--line);
}

.nav-drawer.is-open {
  display: flex;
}

.drawer-toggle {
  background: transparent;
  border: none;
  font: inherit;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-submenu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 12px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}

.drawer-submenu.is-open {
  opacity: 1;
}

.drawer-submenu a {
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.drawer-cta {
  margin-top: 10px;
  width: 180px;
  justify-content: center;
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 130px 8vw 120px;
  color: #fff;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 32, 66, 0.75),
    rgba(12, 32, 66, 0.35) 45%,
    rgba(12, 32, 66, 0.2)
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-lede {
  font-size: 1.1rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.feature-grid {
  max-width: 1200px;
  width: min(1200px, calc(100% - 48px));
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 18px;
  padding: 0 24px;
}

@media (min-width: 900px) and (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
}

.feature-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: 50% 0%;
  display: block;
}

.feature-card div {
  padding: 20px 24px;
}

.feature-card h3 {
  margin: 0 0 8px;
}

.intro-card {
  max-width: 1200px;
  width: min(1200px, calc(100% - 48px));
  margin: -40px auto 0;
  background: #fff;
  padding: 44px 60px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-banner {
  height: 180px;
  background-image: var(--banner-image);
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 32, 66, 0.35);
}

.content-card {
  max-width: 1200px;
  width: min(1200px, calc(100% - 48px));
  margin: -40px auto 60px;
  background: #fff;
  padding: 50px 60px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-card h1 {
  margin-top: 0;
  font-size: 2.2rem;
  color: #2f3a4a;
}

.content-card h2 {
  margin-top: 40px;
  font-size: 1.4rem;
  color: #2f3a4a;
}

.muted {
  color: var(--ink-soft);
  margin-top: 0;
}

.bullet {
  padding-left: 40px;
}


.info-panel {
  margin: 30px 0;
  padding: 24px;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.info-panel:hover,
.info-panel:focus-visible {
  background: #0b5a94;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
  outline: none;
}

.info-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 700;
}

.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.accordion {
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  margin-bottom: 18px;
  overflow: hidden;
  background: #fff;
}

.accordion-header {
  width: 100%;
  border: none;
  background: #f6f8fb;
  padding: 12px 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s ease, color 0.25s ease;
}

.accordion-header.is-active {
  background: var(--brand);
  color: #fff;
}

.accordion-header.is-active .accordion-icon {
  color: #fff;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-body.is-open {
  padding: 16px 16px 32px;
}

.accordion-icon {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand);
}

.price {
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 32px 0;
}

.media-section {
  display: grid;
  gap: 24px;
}

.media-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.media-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.media-grid.one {
  grid-template-columns: 1fr;
}

.media-card {
  background: #e5e5e5;
  height: 110px;
  border-radius: 8px;
}

.media-card.round {
  height: 180px;
  border-radius: 50%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.testimonials .quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  color: var(--ink-soft);
}

.testimonials .quote p {
  font-style: italic;
  margin-bottom: 12px;
}

.section {
  padding: 80px 8vw;
}

section.howwehelp{
	padding-left: 20%;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1.2;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  align-items: start;
}

.split h2 {
  margin-top: 0;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  font-weight: 600;
  color: var(--brand-dark);
}

.contact-section {
  position: relative;
  background-image: var(--contact-image);
  background-size: cover;
  background-position: center;
  padding: 80px 8vw;
  color: #fff;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 24, 0.6);
  z-index: 0;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-details h2 {
  margin-top: 0;
  font-size: 2rem;
}

.contact-block {
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.contact-icon svg {
  width: 30px;
  height: 30px;
}

.contact-details a {
  color: #fff;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form-panel {
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.contact-form-panel h3 {
  margin-top: 0;
  background: var(--brand);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-family: inherit;
}

.contact-note {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 12px;
}

.services-card .media-section {
  gap: 16px;
}

.services-card .media-grid {
  gap: 12px;
}

.services-card .media-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.services-card .coffins-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.services-card .coffins-grid img {
  aspect-ratio: 4 / 3;
}

.services-card .cars-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.services-card .cars-grid img {
  aspect-ratio: 16 / 9;
}

.services-card .chapel-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.services-card .chapel-grid img {
  aspect-ratio: 4 / 3;
}

.services-card .floral-grid {
  display: grid;
  place-items: center;
  padding: 12px 18px;
}

.services-card .floral-grid img {
  border-radius: 999px;
  aspect-ratio: 1 / 1;
  width: 240px;
  height: 240px;
  object-fit: cover;
}

.services-card .media-split {
  grid-template-columns: minmax(240px, 1fr) minmax(260px, 1.1fr);
  gap: 32px;
  align-items: start;
}

.services-card .media-text {
  max-width: 520px;
}

.services-card .media-visual {
  width: 100%;
}

.services-card .media-visual .media-grid {
  width: 100%;
}
.services-card .coffins-grid img:nth-child(1),
.services-card .coffins-grid img:nth-child(2) {
  object-fit: contain;
  background: #f5f5f5;
  padding: 6px;
}

.services-card .floral-grid {
  display: grid;
  place-items: center;
  padding: 12px 18px;
}

.services-card .floral-grid img {
  border-radius: 999px;
  aspect-ratio: 1 / 1;
  width: 240px;
  height: 240px;
  object-fit: cover;
}

.services-card .floral-section h2 {
  margin-top: 0;
}

.services-card .floral-columns {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(260px, 1.1fr);
  gap: 24px;
  align-items: start;
}

.services-card .floral-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.services-card .floral-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card .gallery-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.gallery-card .gallery-video {
  margin: 20px 0 28px;
  width: 100%;
  overflow: hidden;
}

.gallery-card .gallery-video video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.content-footer-link {
  text-align: right;
  margin-top: 16px;
  font-size: 1.05rem;
}

.content-footer-link a {
  color: var(--brand);
  font-weight: 600;
}

.service-includes {
  font-weight: 700;
  text-align: center;
}

.accordion-body p:first-of-type {
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-nav svg {
  width: 22px;
  height: 22px;
}
.intro-strong {
  font-weight: 600;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-nav svg {
  width: 22px;
  height: 22px;
}
.nav-drawer > a {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-drawer .drawer-toggle {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-drawer .drawer-submenu a {
  text-transform: none;
  letter-spacing: 0.02em;
}
.site-footer {
  padding: 16px 8vw 18px;
  display: grid;
  gap: 10px;
  border-top: 1px solid #3a3a3a;
  background: #2f2f2f;
  color: #fff;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  opacity: 0.9;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.gallery-card .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.gallery-card .gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}
@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .top-bar-note {
    display: none;
  }

  .hero {
    padding: 140px 6vw 100px;
  }

  .section {
    padding: 60px 6vw;
  }

  .intro-card,
  .content-card {
    margin: -40px 6vw 0;
    padding: 30px;
    max-width: 100%;
    margin-left: 4vw;
    margin-right: 4vw;
  }

  .feature-grid {
    max-width: 100%;
    padding: 0 4vw;
  }

  .feature-card {
    width: 100%;
  }
}



@media (max-width: 600px) {
  .feature-grid {
    max-width: 100%;
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .feature-card {
    width: 100%;
    max-width: 100%;
  }

  .feature-card img {
    width: 100%;
  }
}


@media (max-width: 900px) {
  .nav-toggle {
    background: #f7f7f7;
    color: #1f1f1f;
    border-color: #d7d7d7;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  }

  .nav-drawer {
    display: flex;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    overflow: hidden;
    padding: 0 24px;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      transform 0.25s ease,
      padding 0.2s ease;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }

  .nav-drawer.is-open {
    max-height: 75vh;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 18px 24px 32px;
  }
}





@media (max-width: 900px) {
  .site-header .nav-toggle,
  .page-home .site-header.is-overlay .nav-toggle {
    background: #f7f7f7;
    color: #1f1f1f;
    border-color: #d7d7d7;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  }

  .nav-drawer {
    background: #fff;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
    position: relative;
    z-index: 120;
  }
}

@media (max-width: 900px) {
  .nav-drawer.is-open {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
}

@media (max-width: 900px) {
  .nav-drawer {
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 96px);
    max-height: none;
    overflow-y: auto;
    display: flex;
    visibility: hidden;
  }

  .nav-drawer.is-open {
    visibility: visible;
  }
}

@media (max-width: 900px) {
  .nav-drawer {
    top: 120px;
    height: calc(100vh - 120px);
  }
}

@media (max-width: 900px) {
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }

  .top-bar-item {
    justify-content: center;
  }

  .nav-drawer {
    box-shadow:
      0 24px 50px rgba(0, 0, 0, 0.32),
      0 -10px 22px rgba(0, 0, 0, 0.22);
  }
}

.drawer-toggle span {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid currentColor;
  margin-left: 6px;
  font-size: 0;
  line-height: 0;
}

@media (max-width: 900px) {
  .nav-drawer > a,
  .nav-drawer .drawer-toggle {
    border-radius: 10px;
    padding: 10px 14px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .nav-drawer > a:hover,
  .nav-drawer > a:focus-visible,
  .nav-drawer .drawer-toggle:hover,
  .nav-drawer .drawer-toggle:focus-visible {
    background: #0a4a78;
    color: #fff;
    transform: translateY(-1px);
  }

  .nav-drawer > a:hover span,
  .nav-drawer > a:focus-visible span,
  .nav-drawer .drawer-toggle:hover span,
  .nav-drawer .drawer-toggle:focus-visible span {
    border-top-color: #fff;
  }
}

@media (max-width: 900px) {
  .drawer-toggle.is-open {
    background: #0a4a78;
    color: #fff;
  }

  .drawer-toggle.is-open span {
    border-top-color: #fff;
  }

  .nav-drawer .drawer-submenu a {
    padding: 8px 12px;
    border-radius: 8px;
    transition: color 0.2s ease;
  }

  .nav-drawer .drawer-submenu a:hover,
  .nav-drawer .drawer-submenu a:focus-visible {
    background: transparent;
    color: #0a4a78;
  }
}

.site-nav .nav-item button span {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid currentColor;
  margin-left: 6px;
  font-size: 0;
  line-height: 0;
}




@media (min-width: 901px) {
  .content-card,
  .intro-card,
  .feature-grid {
    margin-left: auto;
    margin-right: auto;
  }

  .content-card {
    padding: 60px 72px;
  }
}

@media (max-width: 600px) {
  .feature-grid {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    margin: 0 auto;
  }

  .feature-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}

html,
body {
  overflow-x: hidden;
}

@media (max-width: 600px) {
  .feature-grid,
  .intro-card,
  .content-card {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .feature-card,
  .feature-card img,
  .content-card img,
  .intro-card img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .nav-shell {
    padding: 12px 16px;
    gap: 12px;
  }

  .logo-img {
    height: 40px;
    max-width: 170px;
    object-fit: contain;
  }

  .nav-toggle {
    padding: 6px 12px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 600px) {
  .top-bar {
    font-size: 0.75rem;
  }

  .top-bar-inner {
    justify-content: center;
    gap: 10px;
  }

  .top-bar-note {
    display: none;
  }
}

@media (max-width: 600px) {
  .top-bar {
    font-size: 0.72rem;
  }

  .feature-grid,
  .intro-card,
  .content-card {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 0;
  }
}

@media (max-width: 600px) {
  .top-bar {
    font-size: 0.68rem;
  }

  .top-bar-inner {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    padding: 0 10px;
  }

  .top-bar-item {
    white-space: nowrap;
  }

  .top-bar-icon {
    width: 14px;
    height: 14px;
  }

  .section {
    padding-left: 0;
    padding-right: 0;
  }

  .intro-card,
  .content-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 0;
    padding: 24px 16px;
  }

  .feature-grid {
    width: 100% !important;
    max-width: 100% !important;
    margin: 24px 0 0;
    padding: 0 !important;
  }

  .feature-card {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }

  .feature-card img {
    border-radius: 0;
  }
}

.page-inner .nav-shell {
  padding-top: 10px;
  padding-bottom: 10px;
}

.page-inner .page-banner {
  margin-top: -6px;
}

.page-inner .site-header {
  margin-top: calc(-1 * var(--topbar-height));
}


.page-inner {
  padding-top: 0;
}

.page-inner .site-header {
  margin-top: calc(-1 * var(--topbar-height));
}

.page-inner main {
  padding-top: var(--topbar-height);
}

@media (max-width: 600px) {
  .feature-grid {
    padding: 0 12px !important;
  }

  .feature-card {
    border-radius: 12px;
    overflow: hidden;
  }
}

@media (max-width: 900px) {
  .nav-drawer {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    max-height: calc(100vh - var(--topbar-height));
    height: auto;
    overflow-y: auto;
  }
}

@media (max-width: 600px) {
  .feature-grid {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    margin: 24px auto 0;
    padding: 0 !important;
    box-sizing: border-box;
  }

  .feature-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .feature-grid {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 12px !important;
    box-sizing: border-box;
  }

  .feature-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  .logo-img {
    height: 46px;
    max-width: 190px;
  }
}

@media (max-width: 600px) {
  h2 {
    margin-top: 28px;
    margin-bottom: 16px;
    line-height: 1.25;
  }
}

@media (max-width: 600px) {
  .content-card h1,
  .intro-card h1,
  .content-card h2,
  .intro-card h2 {
    line-height: 1.2;
  }

  .content-card h1,
  .intro-card h1 {
    margin-top: 4px;
    margin-bottom: 16px;
  }
}

@media (max-width: 600px) {
  .content-card,
  .intro-card {
    padding-top: 32px;
  }

  .content-card h1,
  .intro-card h1 {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .content-card h1,
  .intro-card h1 {
    margin-top: 15px;
  }
}

@media (max-width: 600px) {
  .logo-img {
    height: 52px;
    max-width: 60vw;
  }
}

@media (max-width: 900px) {
  .services-card .media-split,
  .services-card .floral-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-drawer {
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    z-index: 90;
  }

  body {
    padding-top: calc(var(--topbar-height) + 64px);
  }
}

@media (max-width: 900px) {
  .page-home .site-header.is-overlay {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
  }

  .page-home .site-header.is-overlay .logo-dark {
    display: block;
  }

  .page-home .site-header.is-overlay .logo-light {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-drawer {
    top: calc(100% - 1px);
  }
}

.top-bar {
  z-index: 100;
}

.page-inner .site-header {
  margin-top: 0;
}

.page-inner main {
  padding-top: 0;
}

@media (max-width: 600px) {
  .info-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }

  .info-icon {
    justify-self: center;
    align-self: center;
  }

  .info-panel h3,
  .info-panel p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .info-panel {
    text-align: center;
  }
}

.contact-inner {
  gap: 20px;
}

.contact-details {
  gap: 12px;
}

.contact-details p {
  margin-bottom: 8px;
}

.contact-block {
  margin-top: 16px;
  gap: 10px;
}

.contact-form-panel {
  padding: 18px;
}

.contact-form-panel h3 {
  padding: 10px 14px;
}

.contact-form {
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 8px 10px;
}

.form-status {
  margin: 6px 0 0;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
}

.form-status.is-success {
  color: #0b6b3a;
}

.form-status.is-error {
  color: #a0181a;
}


@media (max-width: 900px) {
  .contact-inner {
    gap: 16px;
  }

  .contact-details p {
    margin-bottom: 6px;
  }

  .contact-block {
    margin-top: 12px;
  }
}

.contact-form-panel {
  padding: 10px;
}

.contact-form-panel h3 {
  padding: 8px 12px;
}

.contact-form {
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  padding: 7px 9px;
}

.contact-section p {
  line-height: 1.55;
}

.contact-details {
  padding-right: 12px;
}

#contact-form {
  scroll-margin-top: calc(var(--topbar-height) + 120px);
}

.contact-form-toggle {
  display: block;
  text-decoration: none;
}

@media (max-width: 900px) {
  .contact-form-toggle h3 {
    cursor: pointer;
    border-radius: 8px;
  }
}

.page-inner .site-header {
  position: absolute;
  top: var(--topbar-height);
  width: 100%;
  background: transparent;
  border-bottom: none;
}

.page-inner .site-header .logo-dark {
  display: none;
}

.page-inner .site-header .logo-light {
  display: block;
}

.page-inner .site-header .site-nav a,
.page-inner .site-header .site-nav button {
  color: #fff;
}

.page-inner .site-header.is-sticky {
  position: fixed;
  top: var(--topbar-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(28, 31, 34, 0.2);
  backdrop-filter: blur(6px);
}

.page-inner .site-header.is-sticky .logo-dark {
  display: block;
}

.page-inner .site-header.is-sticky .logo-light {
  display: none;
}

.page-inner .site-header.is-sticky .site-nav a,
.page-inner .site-header.is-sticky .site-nav button {
  color: var(--ink);
}

.page-banner-overlay {
  background: linear-gradient(
    180deg,
    rgba(12, 32, 66, 0.6) 0%,
    rgba(12, 32, 66, 0) 70%
  );
}

.hero::after {
  background: linear-gradient(
    180deg,
    rgba(12, 32, 66, 0.6) 0%,
    rgba(12, 32, 66, 0) 70%
  );
}

.page-inner .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
}

.page-inner .site-header .logo-dark {
  display: block;
}

.page-inner .site-header .logo-light {
  display: none;
}

.page-inner .site-header .site-nav a,
.page-inner .site-header .site-nav button {
  color: var(--ink);
}

.page-banner-overlay {
  background: linear-gradient(
    180deg,
    rgba(12, 32, 66, 0.72) 0%,
    rgba(12, 32, 66, 0.4) 45%,
    rgba(12, 32, 66, 0) 100%
  );
}

.hero::after {
  background: linear-gradient(
    180deg,
    rgba(12, 32, 66, 0.72) 0%,
    rgba(12, 32, 66, 0.4) 45%,
    rgba(12, 32, 66, 0) 100%
  );
}

.page-inner main {
  min-height: calc(100vh - 320px);
}

@media (min-width: 901px) {
  .site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 70;
  }

  body {
    padding-bottom: 80px;
  }

  main {
    padding-bottom: 80px;
  }
}

@media (min-width: 901px) {
  .site-footer {
    padding: 10px 6vw 12px;
  }

  body {
    padding-bottom: 56px;
  }

  main {
    padding-bottom: 56px;
  }
}

@media (min-width: 901px) {
  body {
    padding-bottom: 0;
  }

  main {
    padding-bottom: 0;
  }
}

@media (max-width: 900px) {
  .nav-drawer {
    box-shadow:
      0 16px 30px rgba(0, 0, 0, 0.18),
      0 -6px 14px rgba(0, 0, 0, 0.12);
  }
}

@media (min-width: 901px) {
  .contact-form-toggle {
    display: none;
  }
}

@media (min-width: 901px) {
  .contact-form-panel {
    margin-top: 20px;
  }
}

@media (min-width: 901px) {
  .contact-form-panel {
    margin-top: 80px;
  }
}

.accordion-icon {
  font-size: 0;
  width: 16px;
  height: 16px;
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 50%;
  height: 2px;
  background: currentColor;
  transform-origin: center;
}

.accordion-icon::before {
  transform: translateY(-50%) rotate(45deg);
}

.accordion-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}

.accordion-header.is-active .accordion-icon::before {
  transform: translateY(-50%) rotate(-45deg);
}

.accordion-header.is-active .accordion-icon::after {
  transform: translateY(-50%) rotate(45deg);
}

.accordion-icon {
  width: 12px;
  height: 12px;
  font-size: 0;
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: none;
}

.accordion-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.accordion-header.is-active .accordion-icon::before {
  transform: rotate(-135deg);
}

.accordion-icon {
  width: 12px;
  height: 12px;
  font-size: 0;
  position: relative;
  border: none;
}

.accordion-icon::before,
.accordion-icon::after {
  content: none;
}

.accordion-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 1px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.accordion-header.is-active .accordion-icon::after {
  transform: rotate(-135deg);
}

.accordion-icon {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid currentColor;
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: none;
}

.accordion-header.is-active .accordion-icon {
  border-top: none;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 7px solid currentColor;
}

.accordion-header {
  scroll-margin-top: calc(var(--topbar-height) + 120px);
}

@media (max-width: 900px) {
  .accordion-header {
    scroll-margin-top: calc(var(--topbar-height) + 120px);
  }
}

@media (min-width: 901px) {
  .accordion-header {
    scroll-margin-top: calc(var(--topbar-height) + 120px);
  }
}


@media (max-width: 900px) {
  .accordion-body ul,
  .accordion-body ol {
    padding-left: 20px;
  }
}

@media (max-width: 600px) {
  .content-card,
  .intro-card {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.accordion-body.is-open {
  padding-bottom: 32px;
}

.accordion-body.is-open > :last-child {
  margin-bottom: 16px;
}


@media (max-width: 900px) {
  section.howwehelp {
    padding-left: 20px;
    padding-right: 20px;
  }
}












