:root {
  --epm-background: #f7f8f7;
  --epm-foreground: #1b322a;
  --epm-card: #eef1ee;
  --epm-primary: #2e6b57;
  --epm-primary-foreground: #f7f8f7;
  --epm-secondary: #e2e9e2;
  --epm-muted: #e9ece9;
  --epm-muted-foreground: #658177;
  --epm-accent: #ddb43c;
  --epm-accent-foreground: #1b322a;
  --epm-border: #dbe1db;
  --epm-nav-footer-bg: #19253e;
  --epm-overlay-top: #000000;
  --epm-overlay-middle: #000000;
  --epm-overlay-bottom: #000000;
  --epm-overlay-side: #000000;
  --epm-overlay-top-rgb: 0, 0, 0;
  --epm-overlay-middle-rgb: 0, 0, 0;
  --epm-overlay-bottom-rgb: 0, 0, 0;
  --epm-overlay-side-rgb: 0, 0, 0;
  --epm-container: 72rem;
  --epm-radius-sm: 0.5rem;
  --epm-radius-md: 0.75rem;
  --epm-radius-lg: 1rem;
  --epm-nav-height: 4rem;
  --epm-transition: 0.3s ease;
  --epm-shadow-sm: 0 1px 2px rgba(27, 50, 42, 0.06);
  --epm-shadow-md: 0 20px 40px -12px rgba(46, 107, 87, 0.15);
  --epm-shadow-testimonial: 0 20px 40px -12px rgba(25, 37, 62, 0.25);
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--epm-foreground);
  background: var(--epm-background);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}

p {
  margin: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.epm-customize-multiline {
  white-space: pre-line;
}

.epm-site-shell,
.epm-page {
  min-height: 100vh;
  background: var(--epm-background);
}

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

.epm-container--narrow {
  max-width: 48rem;
}

.epm-container--contact {
  max-width: 56rem;
}

.epm-section__eyebrow,
.epm-eyebrow {
  margin-bottom: 0.75rem;
  color: var(--epm-primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.epm-section__title,
.epm-section-title {
  margin-bottom: 1.5rem;
  color: var(--epm-foreground);
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.epm-section__text,
.epm-section-copy {
  color: var(--epm-muted-foreground);
  font-size: 1.125rem;
  line-height: 1.75;
}

.epm-section-intro {
  display: flex;
  flex-direction: column;
}

.epm-section__intro--center,
.epm-section-intro--center {
  text-align: center;
  margin-bottom: 4rem;
}
.epm-section-intro--center .epm-section-copy {
  max-width: 42rem;
  margin-inline: auto;
}

#pricing .epm-section-intro--center,
#contact .epm-section-intro--center {
  margin-bottom: 3rem;
}

.epm-section__text--wide {
  max-width: 42rem;
  margin-inline: auto;
}

.epm-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color var(--epm-transition), border-color var(--epm-transition), box-shadow var(--epm-transition), transform 0.5s ease-out;
}

.epm-nav.is-scrolled {
  border-color: rgba(219, 225, 219, 0.65);
  box-shadow: var(--epm-shadow-sm);
  backdrop-filter: blur(6px);
  background: rgba(25, 37, 62, 0.97);
}

.epm-nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--epm-nav-height);
}

.epm-nav__desktop {
  display: none;
  flex: 1 1 0;
  gap: 0.25rem;
}

.epm-nav__group--left {
  justify-content: flex-end;
}

.epm-nav__group--right {
  justify-content: flex-start;
}

.epm-nav__link,
.epm-nav__mobile-link {
  position: relative;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 600;
  transition: color var(--epm-transition);
  opacity: 1;
}

.epm-nav.is-scrolled .epm-nav__link,
.epm-nav.is-scrolled .epm-nav__toggle,
.epm-nav.is-scrolled .epm-nav__mobile-link {
  color: rgba(247, 248, 247, 0.8);
}

.epm-nav__link:hover,
.epm-nav__mobile-link:hover,
.epm-nav__toggle:hover,
.epm-nav.is-scrolled .epm-nav__link:hover,
.epm-nav.is-scrolled .epm-nav__mobile-link:hover {
  color: #ffffff;
}

.epm-nav__logo-link {
  flex: 0 0 auto;
  margin-inline: 1.5rem;
  transition: transform var(--epm-transition);
}

.epm-logo-link {
  flex: 0 0 auto;
  margin-inline: 1.5rem;
  transition: transform var(--epm-transition);
}

.epm-nav__logo-link:hover {
  transform: scale(1.03);
}

.epm-logo-link:hover {
  transform: scale(1.03);
}

.epm-nav__logo,
.epm-footer__logo {
  width: auto;
  height: 3.5rem;
  transition: height var(--epm-transition), width var(--epm-transition);
}

.epm-logo,
.epm-logo-image,
.epm-footer-logo {
  width: auto;
  height: 3.5rem;
  transition: height var(--epm-transition), width var(--epm-transition);
}

.epm-nav.is-scrolled .epm-nav__logo {
  height: 2.5rem;
}

.epm-site-header.is-scrolled .epm-logo,
.epm-site-header.is-scrolled .epm-logo-image {
  height: 2.5rem;
}

.epm-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: color var(--epm-transition);
}

.epm-mobile-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: color var(--epm-transition);
}

.epm-nav__toggle-icon {
  position: absolute;
  display: inline-flex;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.epm-mobile-toggle__menu,
.epm-mobile-toggle__close {
  position: absolute;
  display: inline-flex;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.epm-nav__toggle-icon--close {
  opacity: 0;
  transform: rotate(-90deg);
}

.epm-mobile-toggle__close {
  opacity: 0;
  transform: rotate(-90deg);
}

.epm-nav.is-open .epm-nav__toggle-icon--menu {
  opacity: 0;
  transform: rotate(90deg);
}

.epm-site-header.is-open .epm-mobile-toggle__menu {
  opacity: 0;
  transform: rotate(90deg);
}

.epm-nav.is-open .epm-nav__toggle-icon--close {
  opacity: 1;
  transform: rotate(0deg);
}

.epm-site-header.is-open .epm-mobile-toggle__close {
  opacity: 1;
  transform: rotate(0deg);
}

.epm-nav__toggle svg,
.epm-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.epm-mobile-toggle svg,
.epm-icon-card__icon svg,
.epm-service-icon svg,
.epm-credential-icon svg,
.epm-check-list__icon svg,
.epm-testimonial-quote svg,
.epm-faq-chevron svg,
.epm-badge svg {
  width: 1.25rem;
  height: 1.25rem;
}

.epm-nav__mobile {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid rgba(219, 225, 219, 0.65);
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.epm-mobile-menu {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid rgba(219, 225, 219, 0.65);
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.epm-nav.is-open .epm-nav__mobile {
  max-height: 24rem;
  opacity: 1;
}

.epm-site-header.is-open .epm-mobile-menu,
.epm-mobile-menu.is-open {
  max-height: 24rem;
  opacity: 1;
}

.epm-nav__mobile-inner {
  padding-block: 0.25rem 0.75rem;
}

.epm-nav__mobile-link {
  display: block;
  padding: 0.75rem 0;
}

.epm-main-content {
  position: relative;
}

.epm-container-narrow {
  max-width: 48rem;
}

.epm-container-medium {
  max-width: 56rem;
}

.epm-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color var(--epm-transition), border-color var(--epm-transition), box-shadow var(--epm-transition), transform 0.5s ease-out;
}

.epm-site-header.is-scrolled {
  border-color: rgba(219, 225, 219, 0.65);
  box-shadow: var(--epm-shadow-sm);
  backdrop-filter: blur(6px);
  background: rgba(25, 37, 62, 0.97);
}

.epm-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--epm-nav-height);
}

.epm-nav-group {
  display: none;
  flex: 1 1 0;
  gap: 0.25rem;
}

.epm-nav-group--left {
  justify-content: flex-end;
}

.epm-nav-group--right {
  justify-content: flex-start;
}

.epm-nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 600;
  transition: color var(--epm-transition);
}

.epm-site-header.is-scrolled .epm-nav-link,
.epm-site-header.is-scrolled .epm-mobile-toggle {
  color: rgba(247, 248, 247, 0.8);
}

.epm-nav-link:hover,
.epm-site-header.is-scrolled .epm-nav-link:hover,
.epm-mobile-toggle:hover {
  color: #ffffff;
}

.epm-hero-media,
.epm-hero-video,
.epm-hero-overlay,
.epm-hero-overlay-side {
  position: absolute;
  inset: 0;
}

.epm-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.epm-hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(var(--epm-overlay-top-rgb), 0.7),
    rgba(var(--epm-overlay-middle-rgb), 0.5),
    rgba(var(--epm-overlay-bottom-rgb), 0.85)
  );
  opacity: 0.55;
}

.epm-hero-overlay-side {
  background: linear-gradient(to right, rgba(var(--epm-overlay-side-rgb), 0.4), transparent 60%);
}

.epm-hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2rem), var(--epm-container));
  margin-inline: auto;
  padding-bottom: 6rem;
  color: var(--epm-primary-foreground);
}

.epm-hero-top {
  margin-bottom: 1.5rem;
  color: var(--epm-accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.epm-hero-title {
  margin-bottom: 1.5rem;
  color: var(--epm-primary-foreground);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
}

.epm-hero-title em {
  color: var(--epm-accent);
  font-style: italic;
}

.epm-hero-copy {
  max-width: 40rem;
  margin-bottom: 2.5rem;
  color: rgba(247, 248, 247, 0.8);
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  line-height: 1.7;
}

.epm-button-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}

.epm-about-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

.epm-faq-media {
  position: relative;
  display: none;
  overflow: hidden;
}

.epm-faq-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: top;
}

.epm-faq-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 50, 42, 0.2);
}

.epm-faq-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 1.5rem;
}

.epm-services-grid,
.epm-testimonials-grid {
  display: grid;
  gap: 2rem;
}

.epm-contact-cards {
  display: grid;
  gap: 1.5rem;
  max-width: 48rem;
  margin-inline: auto;
}

.epm-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1);
  transition: filter 0.7s ease;
}

.epm-map-wrap:hover .epm-map-frame {
  filter: grayscale(0);
}

.epm-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  overflow: hidden;
}

.epm-hero__media,
.epm-hero__video,
.epm-hero__overlay {
  position: absolute;
  inset: 0;
}

.epm-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.epm-hero__overlay--vertical {
  background: linear-gradient(
    to bottom,
    rgba(var(--epm-overlay-top-rgb), 0.7),
    rgba(var(--epm-overlay-middle-rgb), 0.5),
    rgba(var(--epm-overlay-bottom-rgb), 0.85)
  );
  opacity: 0.55;
}

.epm-hero__overlay--horizontal {
  background: linear-gradient(to right, rgba(var(--epm-overlay-side-rgb), 0.4), transparent 60%);
}

.epm-hero__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2rem), var(--epm-container));
  margin-inline: auto;
  padding-bottom: 6rem;
  color: var(--epm-primary-foreground);
}

.epm-hero__eyebrow {
  margin-bottom: 1.5rem;
  color: var(--epm-accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.epm-hero__title {
  margin-bottom: 1.5rem;
  color: var(--epm-primary-foreground);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
}

.epm-hero__title-emphasis {
  color: var(--epm-accent);
  font-style: italic;
  display: inline-block;
  animation: epmTitleIn 1s ease 0.6s both;
}

.epm-hero__subtitle {
  max-width: 40rem;
  margin-bottom: 2.5rem;
  color: rgba(247, 248, 247, 0.8);
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  line-height: 1.7;
}

.epm-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
}

.epm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  min-height: 2.75rem;
  padding: 0.625rem 2rem;
  border: 1px solid transparent;
  border-radius: var(--epm-radius-sm);
  font-weight: 600;
  transition: transform var(--epm-transition), background-color var(--epm-transition), color var(--epm-transition), border-color var(--epm-transition);
}

.epm-button:hover {
  transform: scale(1.05);
}

.epm-button:active {
  transform: scale(0.97);
}

.epm-button--accent {
  background: var(--epm-accent);
  color: var(--epm-accent-foreground);
}

.epm-button--accent:hover {
  background: color-mix(in srgb, var(--epm-accent) 90%, #000 10%);
}

.epm-button--outline {
  border-color: rgba(255, 255, 255, 0.9);
  background: transparent;
  color: #ffffff;
}

.epm-button--outline:hover {
  border-color: var(--epm-accent);
  background: rgba(221, 180, 60, 0.5);
}

.epm-button--primary {
  background: var(--epm-primary);
  color: var(--epm-primary-foreground);
}

.epm-button--primary:hover {
  background: color-mix(in srgb, var(--epm-primary) 90%, #000 10%);
}

.epm-button--form {
  width: 100%;
  gap: 0.5rem;
  background: var(--epm-primary);
  color: var(--epm-primary-foreground);
}

.epm-contact-button {
  gap: 0.5rem;
}

.epm-button[disabled] {
  opacity: 0.85;
  cursor: default;
}

.epm-section {
  padding: 6rem 0;
}

.epm-section--card {
  background: var(--epm-card);
}

.epm-about,
.epm-faq__grid,
.epm-faq-grid {
  display: grid;
  gap: 4rem;
}

.epm-about__media {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.epm-about__image,
.epm-about-image {
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

.epm-about__credentials,
.epm-credentials {
  max-width: 28rem;
  margin: 2rem auto 0;
}

.epm-credential {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.epm-credential:last-child {
  margin-bottom: 0;
}

.epm-credential:hover {
  transform: translateX(0.375rem);
  transition: transform 0.2s ease;
}

.epm-icon--credential,
.epm-credential-icon,
.epm-icon--service,
.epm-service-icon,
.epm-icon--contact,
.epm-icon-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.epm-icon--credential,
.epm-credential-icon {
  margin-top: 0.125rem;
  color: var(--epm-accent);
}

.epm-about__body,
.epm-about-copy {
  display: grid;
  gap: 1rem;
  color: var(--epm-muted-foreground);
  line-height: 1.8;
}

.epm-grid {
  display: grid;
  gap: 2rem;
}

.epm-card,
.epm-service-card,
.epm-pricing,
.epm-pricing-card,
.epm-contact-form,
.epm-contact-card,
.epm-testimonial-card,
.epm-accordion__item,
.epm-faq-item {
  border: 1px solid var(--epm-border);
  border-radius: var(--epm-radius-md);
  box-shadow: var(--epm-shadow-sm);
}

.epm-card,
.epm-service-card,
.epm-contact-card,
.epm-testimonial-card,
.epm-contact-form {
  background: var(--epm-background);
}

.epm-card--service,
.epm-service-card {
  padding: 2rem;
  transition: transform var(--epm-transition), border-color var(--epm-transition), box-shadow var(--epm-transition);
}

.epm-card--service:hover,
.epm-service-card:hover {
  transform: translateY(-0.5rem);
  border-color: rgba(46, 107, 87, 0.3);
  box-shadow: var(--epm-shadow-md);
}

.epm-icon--service,
.epm-service-icon,
.epm-icon--contact,
.epm-icon-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(46, 107, 87, 0.1);
  color: var(--epm-primary);
}

.epm-card__title,
.epm-service-title,
.epm-pricing__amount,
.epm-pricing-amount {
  font-family: "Cormorant Garamond", serif;
}

.epm-card__title,
.epm-service-title {
  margin: 1.25rem 0 0.75rem;
  color: var(--epm-foreground);
  font-size: 1.5rem;
  font-weight: 700;
}

.epm-card__text,
.epm-service-copy {
  color: var(--epm-muted-foreground);
  line-height: 1.7;
}

.epm-pricing,
.epm-pricing-card {
  padding: 2.5rem;
  text-align: center;
  background: var(--epm-card);
  border-radius: var(--epm-radius-lg);
}

.epm-pricing__label,
.epm-pricing-rate-label {
  margin-bottom: 0.5rem;
  color: var(--epm-muted-foreground);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.epm-pricing__amount-wrap,
.epm-pricing-rate {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.epm-pricing__amount,
.epm-pricing-amount {
  color: var(--epm-foreground);
  font-size: clamp(3rem, 8vw, 4rem);
  font-weight: 700;
}

.epm-pricing__unit,
.epm-pricing-unit,
.epm-pricing__subtext,
.epm-pricing-subtext {
  color: var(--epm-muted-foreground);
}

.epm-pricing__subtext,
.epm-pricing-subtext {
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.epm-pricing__list,
.epm-check-list {
  display: grid;
  gap: 0.75rem;
  max-width: 24rem;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.epm-pricing__item,
.epm-check-list__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.epm-icon--check,
.epm-check-list__icon {
  margin-top: 0.125rem;
  color: var(--epm-accent);
}

.epm-card--testimonial,
.epm-testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  transition: transform var(--epm-transition), box-shadow var(--epm-transition);
}

.epm-card--testimonial:hover,
.epm-testimonial-card:hover {
  transform: translateY(-0.5rem) scale(1.05);
  box-shadow: var(--epm-shadow-testimonial);
}

.epm-icon--quote,
.epm-testimonial-quote {
  margin-bottom: 1rem;
  color: rgba(46, 107, 87, 0.1);
}

.epm-testimonial__quote,
.epm-testimonial-text {
  flex: 1 1 auto;
  color: var(--epm-muted-foreground);
  font-style: italic;
  line-height: 1.8;
}

.epm-testimonial__meta,
.epm-testimonial-meta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--epm-border);
}

.epm-testimonial__name,
.epm-testimonial-name {
  color: var(--epm-foreground);
  font-size: 0.875rem;
  font-weight: 600;
}

.epm-testimonial__role,
.epm-testimonial-role {
  color: var(--epm-muted-foreground);
  font-size: 0.75rem;
}

.epm-testimonials__note,
.epm-testimonial-note {
  color: var(--epm-muted-foreground);
  font-size: 0.875rem;
  font-style: italic;
}

.epm-faq,
.epm-faq-section {
  padding: 0;
}

.epm-faq__grid,
.epm-faq-grid {
  min-height: 43.75rem;
  align-items: stretch;
}

.epm-faq__media {
  position: relative;
  display: none;
  overflow: hidden;
}

.epm-faq__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: top;
}

.epm-faq__media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 50, 42, 0.2);
}

.epm-faq__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 1.5rem;
}

.epm-accordion,
.epm-faq-list {
  display: grid;
  gap: 0.75rem;
}

.epm-accordion__item,
.epm-faq-item {
  overflow: hidden;
  background: var(--epm-card);
  border-radius: 0.75rem;
}

.epm-accordion__trigger,
.epm-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 0;
  background: transparent;
  color: var(--epm-foreground);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.epm-icon--chevron,
.epm-faq-chevron {
  color: var(--epm-muted-foreground);
  transition: transform var(--epm-transition);
  flex-shrink: 0;
}

.epm-accordion__item.is-open .epm-icon--chevron,
.epm-faq-item.is-open .epm-faq-chevron {
  transform: rotate(180deg);
}

.epm-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.epm-faq-panel {
  overflow: hidden;
}

.epm-faq-panel[hidden] {
  display: none;
}

.epm-accordion__panel-inner,
.epm-faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--epm-muted-foreground);
  line-height: 1.8;
}

.epm-contact-form,
.epm-form-wrap.epm-contact-form {
  max-width: 48rem;
  margin: 0 auto 3rem;
  padding: 2rem;
}

.epm-form-wrap {
  width: 100%;
}

.epm-contact-form__row,
.epm-form-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.epm-contact-form__row:last-child {
  margin-bottom: 0;
}

.epm-contact-form__row--split,
.epm-form-grid {
  grid-template-columns: 1fr;
}

.epm-field {
  margin-bottom: 0;
}

.epm-form-field {
  margin-bottom: 1rem;
}

.epm-form-grid .epm-form-field {
  margin-bottom: 0;
}

.epm-field label,
.epm-form-label {
  display: block;
  margin-bottom: 0.375rem;
  color: var(--epm-foreground);
  font-size: 0.875rem;
  font-weight: 500;
}

.epm-field input,
.epm-field textarea,
.epm-form-input,
.epm-form-textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  color: var(--epm-foreground);
  background: var(--epm-background);
  border: 1px solid var(--epm-border);
  border-radius: var(--epm-radius-sm);
  transition: border-color var(--epm-transition), box-shadow var(--epm-transition);
}

.epm-field input:focus,
.epm-field textarea:focus,
.epm-form-input:focus,
.epm-form-textarea:focus {
  outline: none;
  border-color: var(--epm-primary);
  box-shadow: 0 0 0 3px rgba(46, 107, 87, 0.15);
}

.epm-field textarea,
.epm-form-textarea {
  min-height: 8rem;
  resize: vertical;
}

.epm-grid--contact {
  max-width: 48rem;
  display: grid;
  margin-inline: auto;
}

.epm-card--contact,
.epm-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--epm-transition), box-shadow var(--epm-transition), border-color var(--epm-transition);
}

.epm-card--contact:hover,
.epm-contact-card:hover {
  transform: translateY(-0.375rem);
  border-color: rgba(25, 37, 62, 0.3);
  box-shadow: 0 16px 32px -8px rgba(25, 37, 62, 0.12);
}

.epm-card--contact:hover .epm-icon--contact,
.epm-contact-card:hover .epm-icon-card__icon {
  background: var(--epm-primary);
  color: var(--epm-primary-foreground);
}

.epm-card__meta,
.epm-icon-card__meta {
  text-align: center;
}

.epm-card__meta-label,
.epm-icon-card__label {
  color: var(--epm-muted-foreground);
  font-size: 0.875rem;
}

.epm-card__meta-value,
.epm-icon-card__value {
  color: var(--epm-foreground);
  font-size: 0.875rem;
  font-weight: 500;
}

.epm-contact__badge-wrap,
.epm-badge-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.epm-contact__badge,
.epm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: var(--epm-primary);
  background: rgba(46, 107, 87, 0.1);
  border: 1px solid rgba(46, 107, 87, 0.2);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.epm-icon--award {
  display: inline-flex;
}

.epm-contact__map,
.epm-map-wrap {
  position: relative;
  width: 100%;
  height: 25rem;
  margin-top: 4rem;
}

.epm-contact__map iframe,
.epm-map-wrap .epm-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1);
  transition: filter 0.7s ease;
}

.epm-contact__map:hover iframe,
.epm-map-wrap:hover .epm-map-frame {
  filter: grayscale(0);
}

.epm-footer,
.epm-site-footer {
  padding: 2rem 0;
  color: rgba(247, 248, 247, 0.7);
  text-align: center;
  background: var(--epm-nav-footer-bg);
}

.epm-footer__inner,
.epm-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.epm-footer__logo {
  margin-bottom: 1rem;
}

.epm-footer__copy,
.epm-footer-text {
  font-size: 0.875rem;
}

.epm-footer__certification,
.epm-footer-subtext {
  margin-top: 0.5rem;
  color: rgba(247, 248, 247, 0.5);
  font-size: 0.75rem;
}

.epm-footer__built-by,
.epm-footer-attribution {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.epm-footer__built-by a,
.epm-footer-attribution a {
  color: var(--epm-accent);
}

.epm-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  min-width: 16rem;
  max-width: 24rem;
  padding: 1rem 1.125rem;
  color: var(--epm-foreground);
  background: #ffffff;
  border-left: 4px solid var(--epm-primary);
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(27, 50, 42, 0.15);
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity var(--epm-transition), transform var(--epm-transition);
}

.epm-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.epm-toast.error,
.epm-toast--error {
  border-left-color: #c0392b;
}

.epm-animate,
.epm-reveal {
  opacity: 0;
  transform: translateY(2rem);
  filter: blur(8px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.epm-animate.is-visible,
.epm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.epm-is-empty,
.epm-is-hidden {
  display: none !important;
}

@keyframes epmTitleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 40rem) {
  .epm-container,
  .epm-hero-content,
  .epm-hero__content {
    width: min(calc(100% - 3rem), var(--epm-container));
  }

  .epm-faq-content {
    padding-inline: 2.5rem;
  }

  .epm-hero__actions,
  .epm-button-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .epm-contact-form__row--split,
  .epm-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 48rem) {
  .epm-nav__desktop {
    display: flex;
  }

  .epm-nav-group {
    display: flex;
  }

  .epm-nav__toggle,
  .epm-nav__mobile,
  .epm-mobile-toggle,
  .epm-mobile-menu {
    display: none !important;
  }

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

@media (min-width: 64rem) {
  .epm-container,
  .epm-hero-content,
  .epm-hero__content {
    width: min(calc(100% - 4rem), var(--epm-container));
  }

  .epm-about,
  .epm-about-grid,
  .epm-faq__grid,
  .epm-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .epm-faq__media,
  .epm-faq-media {
    display: block;
  }

  .epm-faq__content,
  .epm-faq-content {
    padding-inline: 4rem;
  }
}

@media (max-width: 47.99rem) {
  .epm-nav__logo-link {
    margin-inline: 0;
  }

  .epm-logo-link {
    margin-inline: 0;
  }
}
