/*
Theme Name: Elite Moments Multi Page
Theme URI: https://elitemoments.com.pk/
Author: ExpoBird
Author URI: https://expobird.com/
Description: Production-ready multi-page WordPress theme for Elite Moments with separate Home, About Us, Services, Contact Us, Get a Quote and inner service pages.
Version: 6.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elite-moments
*/

:root {
  --em-primary: #642A37;
  --em-primary-dark: #451b26;
  --em-primary-soft: #fff0f4;
  --em-accent: #d8b88d;
  --em-ink: #10131c;
  --em-muted: #68707f;
  --em-white: #ffffff;
  --em-cream: #fffaf6;
  --em-soft: #fbf5f0;
  --em-border: rgba(16, 19, 28, .1);
  --em-border-light: rgba(255, 255, 255, .14);
  --em-shadow: 0 22px 70px rgba(69, 27, 38, .16);
  --em-shadow-soft: 0 14px 42px rgba(16, 19, 28, .09);
  --em-radius: 26px;
  --em-radius-sm: 16px;
  --em-max: 1180px;
  --em-header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--em-ink);
  background: var(--em-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.em-skip {
  position: absolute;
  left: -999px;
  top: 14px;
  z-index: 9999;
  background: var(--em-white);
  color: var(--em-primary);
  padding: 10px 14px;
  border-radius: 12px;
}
.em-skip:focus { left: 14px; }
.admin-bar .em-header { top: 32px; }
.em-container {
  width: min(100% - 40px, var(--em-max));
  margin-inline: auto;
}
.em-site-main { overflow: hidden; }
.em-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--em-primary);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 14px;
}
/* .em-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
} */
.em-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 30px;
  border: 2px solid transparent;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--em-primary) 0%, var(--em-primary-dark) 100%);
  color: var(--em-white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.2;
  box-shadow: 0 12px 32px rgba(100, 42, 55, .24);
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
  overflow: hidden;
  margin-top: 15px;
}
.em-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, .16) 0%, transparent 58%);
  opacity: 0;
  transition: opacity .25s ease;
}
.em-btn:hover, .em-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(100, 42, 55, .3);
  outline: 0;
}
.em-btn:hover::before, .em-btn:focus-visible::before { opacity: 1; }
.em-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 22px rgba(100, 42, 55, .2);
}
.em-btn--outline {
  background: var(--em-white);
  color: var(--em-primary);
  border-color: rgba(100, 42, 55, .24);
  box-shadow: 0 8px 24px rgba(16, 19, 28, .07);
}
.em-btn--outline:hover, .em-btn--outline:focus-visible {
  background: linear-gradient(135deg, var(--em-primary) 0%, var(--em-primary-dark) 100%);
  color: var(--em-white);
  border-color: var(--em-primary);
  box-shadow: 0 16px 36px rgba(100, 42, 55, .22);
}
.em-btn--light {
  background: var(--em-white);
  color: var(--em-primary);
  border-color: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 30px rgba(16, 19, 28, .14);
}
.em-btn--light:hover, .em-btn--light:focus-visible {
  background: var(--em-accent);
  color: var(--em-ink);
  border-color: var(--em-accent);
  box-shadow: 0 16px 34px rgba(16, 19, 28, .18);
}
.em-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--em-primary);
  font-weight: 700;
  font-size: 15px;
  margin-top: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(100, 42, 55, .22);
  transition: gap .25s ease, border-color .25s ease, color .25s ease;
}
.em-text-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .24s ease;
}
.em-text-link:hover {
  gap: 12px;
  color: var(--em-primary-dark);
  border-color: var(--em-primary);
}
.em-text-link:hover svg { transform: translateX(4px); }
.em-center { text-align: center; margin-top: 38px; }

/* Header */
.em-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #541523;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(100, 42, 55, .1);
  transition: box-shadow .28s ease, background .28s ease;
}
.em-header.is-scrolled {
  background: #541523;
  box-shadow: 0 12px 36px rgba(16, 19, 28, .08);
}
.em-header__inner {
  min-height: var(--em-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.em-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.em-logo__img, .em-logo img {
  width: 74px;
  height: auto;
  object-fit: contain;
}
.em-logo__text {
  display: grid;
  line-height: 1.2;
}
.em-logo__text strong {
  font-size: 18px;
  color: var(--em-primary);
}
.em-logo__text small {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--em-muted);
}
.em-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.em-nav > a, .em-nav__drop-link {
    display: inline-flex;
      align-items: center;
      min-height: 44px;
      padding: 10px 14px;
      border-radius: 999px;
      color: #F2E8D6;
      font-weight: 600;
      font-size: 14px;
      transition: background .24s ease, color .24s ease;
}
.em-nav > a:hover, .em-nav__drop-link:hover, .em-nav > a:focus-visible, .em-nav__drop-link:focus-visible {
  background: var(--em-primary-soft);
  color: var(--em-primary);
  outline: 0;
}
.em-nav__quote {
  background: var(--em-primary) !important;
  color: var(--em-white) !important;
  padding-inline: 18px !important;
}
.em-nav__quote:hover { background: var(--em-primary-dark) !important; }
.em-nav__dropdown {
  position: relative;
}
.em-nav__mega {
  position: absolute;
  top: calc(100% + 12px);
  right: -120px;
  width: min(760px, calc(100vw - 36px));
  background: var(--em-white);
  border: 1px solid var(--em-border);
  box-shadow: var(--em-shadow);
  border-radius: 24px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}
.em-nav__dropdown:hover .em-nav__mega, .em-nav__dropdown:focus-within .em-nav__mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.em-nav__mega strong {
  display: block;
  color: var(--em-primary);
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.em-nav__mega a {
  display: block;
  padding: 9px 10px;
  border-radius: 12px;
  color: #394151;
  font-size: 14px;
  font-weight: 700;
}
.em-nav__mega a:hover, .em-nav__mega a:focus-visible {
  background: var(--em-primary-soft);
  color: var(--em-primary);
  outline: 0;
}
.em-menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--em-border);
  background: var(--em-white);
  border-radius: 14px;
  cursor: pointer;
}
.em-menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--em-primary);
  border-radius: 99px;
  transition: transform .24s ease, opacity .24s ease;
}
.em-menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.em-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.em-menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.em-hero {
  position: relative;
  padding: 94px 0 46px;
  min-height: calc(100vh - var(--em-header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.em-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.em-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.04);
}

.em-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.92) 30%,
      rgba(255, 255, 255, 0.68) 55%,
      rgba(255, 255, 255, 0.28) 78%,
      rgba(255, 255, 255, 0.06) 100%);
  pointer-events: none;
}


.em-hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 650px);
  align-items: center;
}

.em-hero__content {
  max-width: 650px;
}

.em-hero__content h1,
.em-hero__content p {
  color: #fff;
}

.em-hero__content p {
  color: rgba(255, 255, 255, 0.78);
}

.em-hero__visual {
  display: none;
}
.em-hero h1, .em-page-hero h1, .em-service-hero h1 {
    margin: 0;
    font-size: clamp(42px, 6.2vw, 58px);
    line-height: .97;
    letter-spacing: -.055em;
    color: var(--em-ink);
    font-weight: 400;
}
.em-hero h1 { max-width: 760px; }
.em-hero p, .em-page-hero p, .em-service-hero p {
  margin: 24px 0 0;
  max-width: 660px;
  color: var(--em-muted);
  font-size: clamp(16px, 2vw, 19px);
}
.em-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.em-hero__visual {
  position: relative;
  min-height: 520px;
  border-radius: 40px;
  padding: 24px;
  overflow: visible;
}

.em-hero__main-img {
  width: 100%;
  height: 100%;
  min-height: 472px;
  object-fit: cover;
  border-radius: 30px;
  filter: saturate(.95) contrast(1.02);
}
.em-hero__float {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  color: var(--em-primary);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 18px 40px rgba(16, 19, 28, .14);
    padding: 8px 15px;
  border-radius: 999px;
  font-weight: 600;
}
.em-hero__float--one { top: 44px; left: 0; transform: translateX(-24px); }
.em-hero__float--two { bottom: 44px; right: 0; transform: translateX(20px); }
.em-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 58px;
}
.em-stats div {
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(100, 42, 55, .12);
  box-shadow: var(--em-shadow-soft);
  border-radius: 22px;
  padding: 22px;
}
.em-stats strong {
  display: block;
  color: var(--em-primary);
  font-size: 22px;
  line-height: 1.1;
}
.em-stats span { color: var(--em-muted); font-size: 14px; }

/* Sections */
.em-section { padding: 40px 0; }
.em-soft-section { background: linear-gradient(180deg, var(--em-cream), #fff); }
.em-dark-section {
  color: var(--em-white);
  background: radial-gradient(circle at 80% 20%, rgba(216, 184, 141, .28), transparent 28%), linear-gradient(135deg, var(--em-primary-dark), var(--em-primary));
}
.em-section-head {
  max-width: 760px;
  margin-bottom: 42px;
}
.em-section-head h2, .em-two-col h2, .em-split-card h2, .em-quote-strip h2, .em-form-grid h2, .em-service-detail-grid h2, .em-vision-grid h2 {
margin: 0;
  color: var(--em-ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 400;
}
.em-dark-section h2 { color: var(--em-white); }
.em-section-head p, .em-two-col p, .em-split-card p, .em-form-grid p, .em-service-detail-grid p {
  margin: 18px 0 0;
  color: black;
  font-size: 17px;
}
.em-dark-section p, .em-dark-section li { color: rgba(255, 255, 255, .82); }
.em-two-col {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
}
.em-two-col--center { align-items: center; }
.em-card-grid {
  display: grid;
  gap: 24px;
}
.em-card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.em-service-card {
  overflow: hidden;
  border: 1px solid var(--em-border);
  border-radius: var(--em-radius);
  background: var(--em-white);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.em-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(100, 42, 55, .25);
  box-shadow: var(--em-shadow-soft);
}
.em-service-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  background: var(--em-primary-soft);
  overflow: hidden;
}
.em-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}
.em-service-card:hover .em-service-card__media img {
  transform: scale(1.06);
  filter: saturate(1.08);
}
.em-service-card__media span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--em-white);
  color: var(--em-primary);
  box-shadow: 0 12px 28px rgba(16, 19, 28, .16);
}
.em-service-card__media span svg {
  width: 24px;
  height: 24px;
  display: block;
}
.em-service-card__body { padding: 24px; }
.em-service-card small {
  color: var(--em-primary);
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: 11px;
}
.em-service-card h3 {
  margin: 10px 0 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.em-service-card p {
  margin: 0 0 20px;
  color: var(--em-muted);
  font-size: 15px;
}
.em-split-services {
  background: linear-gradient(180deg, var(--em-cream) 0%, var(--em-soft) 100%);
}
.em-split-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.em-split-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--em-white);
  border: 1px solid var(--em-border);
  border-radius: calc(var(--em-radius) + 4px);
  box-shadow: var(--em-shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.em-split-card:hover {
  transform: translateY(-8px);
  border-color: rgba(100, 42, 55, .22);
  box-shadow: var(--em-shadow);
}
.em-split-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--em-primary-soft);
}
.em-split-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s ease;
}
.em-split-card:hover .em-split-card__media img {
  transform: scale(1.05);
}
.em-split-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 30px 32px;
}
.em-split-card h2 {
  margin-top: 10px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.12;
}
.em-check-list--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 20px;
}
.em-check-list--split li {
  font-size: 14px;
  line-height: 1.35;
}
.em-split-card__cta {
  width: fit-content;
  margin-top: 20px;
  border-radius: 40px;
}
.em-check-list, .em-arrow-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.em-check-list li, .em-arrow-list li {
  position: relative;
  padding-left: 32px;
  color: #3f4756;
  font-weight: 500;
}
.em-check-list li::before, .em-arrow-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}
.em-check-list li::before {
  content: "";
  background: #ecfdf3;
  border: 1px solid #86efac;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.em-arrow-list li::before {
  content: "→";
  background: var(--em-primary-soft);
  color: var(--em-primary);
}
.em-dark-section .em-arrow-list li::before { background: rgba(255,255,255,.14); color: var(--em-white); }
.em-gallery {
  background: var(--em-white);
}
.em-gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 170px;
  gap: 16px;
}
.em-gallery__item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  grid-column: span 4;
      grid-row: span 2;
  background: var(--em-primary-soft);
}
.em-gallery__item--wide { grid-column: span 8;grid-row: span 2; }
.em-gallery__item--tall { grid-row: span 2; }
.em-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.em-gallery__item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--em-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  backdrop-filter: blur(8px);
}
.em-gallery__item:hover img { transform: scale(1.06); }
.em-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.em-process__step {
  border: 1px solid var(--em-border);
  border-radius: 22px;
  padding: 26px;
  background: var(--em-white);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.em-process__step:hover {
  transform: translateY(-5px);
  box-shadow: var(--em-shadow-soft);
  border-color: rgba(100, 42, 55, .24);
}
.em-process__step span {
  display: block;
  margin-bottom: 18px;
  color: var(--em-primary);
  font-weight: 900;
  letter-spacing: .12em;
}
.em-process__step strong { font-size: 19px; }
.em-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.em-icon-card {
  min-height: 150px;
  padding: 26px;
  border: 1px solid var(--em-border);
  background: var(--em-white);
  border-radius: 22px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.em-icon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--em-shadow-soft);
  border-color: rgba(100, 42, 55, .25);
}
.em-icon-card span,
.em-icon-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--em-primary-soft);
  color: var(--em-primary);
  margin-bottom: 18px;
}
.em-icon-card span svg,
.em-icon-card__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.em-icon-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.24;
  font-weight: 400;
}

/* Page hero */
.em-page-hero, .em-service-hero {
  position: relative;
  padding: 86px 0;
  background: linear-gradient(135deg, #fff, #fff4f7 58%, #fbefe7);
  overflow: hidden;
}
.em-page-hero::after, .em-service-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -110px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(100, 42, 55, .08);
}
.em-page-hero__grid, .em-service-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 48px;
  align-items: center;
}
.em-page-hero__image, .em-service-hero__image {
  border-radius: 34px;
  padding: 18px;
}
.em-intro__image {
  border-radius: 34px;
  overflow: hidden;
}
.em-page-hero__image img, .em-service-hero__image img, .em-intro__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 24px;
}
.em-page-hero--simple { padding: 70px 0; }
.em-page-hero--simple h1 { font-size: clamp(36px, 5vw, 60px); }
.em-vision-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: center;
}
.em-dark-section .em-kicker { color: var(--em-accent); }

/* Quote Strip */
.em-quote-strip {
  padding: 34px 0;
  background: var(--em-white);
}
.em-quote-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
  background: radial-gradient(circle at 90% 12%, rgba(216, 184, 141, .34), transparent 28%), linear-gradient(135deg, var(--em-primary), var(--em-primary-dark));
  color: var(--em-white);
  box-shadow: var(--em-shadow);
}
.em-quote-strip h2 {
  color: var(--em-white);
  font-size: clamp(28px, 3.5vw, 44px);
}
.em-quote-strip p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.84);
}
.em-quote-strip .em-kicker { color: var(--em-accent); }
.em-quote-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/* Contact / Forms */
.em-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.em-contact-card {
  padding: 30px;
  border: 1px solid var(--em-border);
  border-radius: 24px;
  background: var(--em-white);
  box-shadow: var(--em-shadow-soft);
}
.em-contact-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--em-primary-soft);
  color: var(--em-primary);
  font-weight: 900;
  margin-bottom: 18px;
}
.em-contact-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
}
.em-contact-card a { color: var(--em-primary); font-weight: 500; }
.em-contact-card p { margin: 0; color: var(--em-muted); }
.em-form-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}
.em-form-grid--wide { grid-template-columns: .72fr 1.28fr; }
.em-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--em-border);
  border-radius: 28px;
  background: var(--em-white);
  box-shadow: var(--em-shadow-soft);
}
.em-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.em-form label {
  display: grid;
  gap: 8px;
  color: #333b4b;
  font-weight: 500;
}
.em-form input, .em-form textarea, .em-form select {
  width: 100%;
  border: 1px solid rgba(16, 19, 28, .14);
  border-radius: 14px;
  padding: 14px 15px;
  background: #fff;
  color: var(--em-ink);
  outline: none;
  transition: border-color .24s ease, box-shadow .24s ease;
}
.em-form textarea { resize: vertical; }
.em-form input:focus, .em-form textarea:focus, .em-form select:focus {
  border-color: var(--em-primary);
  box-shadow: 0 0 0 4px rgba(100, 42, 55, .1);
}

/* Single service */
.em-service-detail-grid {
  display: grid;
  grid-template-columns: 1fr .62fr;
  gap: 34px;
  align-items: start;
}
.em-detail-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--em-white);
  border: 1px solid var(--em-border);
  box-shadow: var(--em-shadow-soft);
}
.em-detail-card h3 {
  margin: 0;
  font-size: 26px;
}
.em-content {
  max-width: 850px;
  font-size: 18px;
}
.em-content > *:first-child { margin-top: 0; }

/* Footer */
.em-footer {
  background: #541523;
  color: var(--em-white);
  padding: 70px 0 24px;
}
.em-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 34px;
}
.em-footer__brand img {
  width: 92px;
  margin-bottom: 18px;
}
.em-footer p { color: rgba(255,255,255,.68); margin: 0; }
.em-footer h3 {
  margin: 0 0 16px;
  color: var(--em-accent);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.em-footer a {
  display: block;
  color: rgba(255,255,255,.74);
  margin: 0 0 10px;
  transition: color .24s ease, transform .24s ease;
}
.em-footer a:hover {
  color: var(--em-white);
  transform: translateX(4px);
}
.em-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  font-size: 14px;
}

/* Animation */
.em-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .74s ease, transform .74s ease;
}
.em-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
  .em-reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1100px) {
  .em-card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .em-icon-grid { grid-template-columns: repeat(3, 1fr); }
  .em-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .em-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  :root { --em-header-height: 76px; }
  .admin-bar .em-header { top: 46px; }
  .em-menu-toggle { display: inline-flex; }
  .em-nav {
    position: fixed;
    inset: var(--em-header-height) 16px auto 16px;
    max-height: calc(100vh - var(--em-header-height) - 26px);
    overflow: auto;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    background: var(--em-white);
    border: 1px solid var(--em-border);
    border-radius: 22px;
    box-shadow: var(--em-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .24s ease, visibility .24s ease, transform .24s ease;
  }
  .em-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .em-nav > a, .em-nav__drop-link { width: 100%; justify-content: space-between; }
  .em-nav__mega {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 18px;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 8px;
    padding: 14px;
    background: var(--em-cream);
  }
  .em-hero { min-height: auto; padding: 70px 0 42px; }
  .em-hero__grid, .em-page-hero__grid, .em-service-hero__grid, .em-two-col, .em-split-services__grid, .em-vision-grid, .em-form-grid, .em-form-grid--wide, .em-service-detail-grid, .em-quote-strip__inner {
    grid-template-columns: 1fr;
  }
  .em-hero__visual { min-height: 420px; }
  .em-stats { grid-template-columns: repeat(2, 1fr); }
  .em-check-list--split { grid-template-columns: 1fr; }
  .em-split-card__body { padding: 24px 22px 28px; }
  .em-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .em-gallery__item,
  .em-gallery__item--wide,
  .em-gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .em-process__grid, .em-contact-grid { grid-template-columns: 1fr; }
  .em-quote-strip__actions { justify-content: flex-start; }
}
@media (max-width: 700px) {
  .em-container { width: min(100% - 28px, var(--em-max)); }
  .em-logo__text { display: none; }
  .em-logo__img, .em-logo img { width: 64px; }
  .em-hero h1, .em-page-hero h1, .em-service-hero h1 { font-size: clamp(38px, 12vw, 58px); }
  .em-section, .em-page-hero, .em-service-hero { padding: 64px 0; }
  .em-card-grid--3, .em-icon-grid { grid-template-columns: 1fr; }
  .em-gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .em-stats, .em-form__row { grid-template-columns: 1fr; }
  .em-hero__visual { min-height: 320px; padding: 14px; border-radius: 28px; }
  .em-hero__main-img { min-height: 300px; border-radius: 20px; }
  .em-hero__float { position: static; transform: none; width: fit-content; margin: 10px; }
  .em-quote-strip__inner { padding: 28px; border-radius: 26px; }
  .em-footer__grid { grid-template-columns: 1fr; }
  .em-footer__bottom { flex-direction: column; }
}
@media (max-width: 430px) {
  .em-btn { width: 100%; }
  .em-hero__actions, .em-quote-strip__actions { width: 100%; }
  .em-page-hero__image, .em-service-hero__image { padding: 12px; border-radius: 24px; }
}

.em-dark-section .em-arrow-list li {
  color: rgba(255, 255, 255, .9);
}
/* Team Section */
.em-team-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 88px 0 96px;
  color: var(--em-white);
  background: #080705;
}
.em-team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--em-team-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(.95) contrast(1.1);
}
.em-team-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 184, 141, .24), transparent 26%),
    radial-gradient(circle at 82% 24%, rgba(100, 42, 55, .34), transparent 30%),
    linear-gradient(180deg, rgba(3, 3, 3, .72), rgba(5, 4, 3, .9));
}
.em-team-section .em-container { position: relative; z-index: 1; }
.em-team-section .em-container::before,
.em-team-section .em-container::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  opacity: .6;
}
.em-team-section .em-container::before {
  width: 260px;
  height: 260px;
  right: -92px;
  top: -34px;
}
.em-team-section .em-container::after {
  width: 180px;
  height: 180px;
  left: -82px;
  bottom: -70px;
}
.em-team-head {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}
.em-team-head .em-kicker {
  color: var(--em-accent);
  justify-content: center;
}
.em-team-head h2 {
    margin: 0;
      color: var(--em-white);
      font-size: clamp(36px, 5vw, 49px);
      line-height: normal;
      letter-spacing: -.045em;
      font-weight: 400;
}
.em-team-head p {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(15px, 1.6vw, 18px);
}
.em-team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.em-team-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.em-team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, .2) 58%, rgba(0, 0, 0, .88) 100%);
  pointer-events: none;
}
/* .em-team-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .46), transparent);
  opacity: 0;
  transition: opacity .35s ease;
} */
.em-team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(216, 184, 141, .5);
  box-shadow: 0 30px 82px rgba(0, 0, 0, .38);
}
/* .em-team-card:hover::after { opacity: 1; } */
.em-team-card__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.em-team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
  transition: transform .6s ease, filter .6s ease;
}
.em-team-card:hover .em-team-card__image img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}
.em-team-card__content {
  position: absolute;
  z-index: 4;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(10, 8, 7, .58);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}
.em-team-card h3 {
    font-weight: 500;
      margin: 0;
      color: var(--em-white);
      font-size: 14px;
      line-height: 1.15;
      letter-spacing: -.015em;
      text-transform: uppercase;
}
.em-team-card p {
    margin: 7px 0 0;
      color: rgb(255 255 255 / 100%);
      font-size: 11px;
      line-height: 1.35;
      font-weight: 400;
}

@media (max-width: 1180px) {
  .em-team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .em-team-card { min-height: 410px; }
}
@media (max-width: 760px) {
  .em-team-section { padding: 70px 0 76px; }
  .em-team-head { text-align: left; margin-bottom: 30px; }
  .em-team-head .em-kicker { justify-content: flex-start; }
  .em-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .em-team-card { min-height: 360px; border-radius: 22px; }
  .em-team-card__content { left: 12px; right: 12px; bottom: 12px; padding: 14px; border-radius: 16px; }
  .em-team-card h3 { font-size: 14px; }
  .em-team-card p { font-size: 12px; }
}
@media (max-width: 480px) {
  .em-team-grid { grid-template-columns: 1fr; }
  .em-team-card { min-height: 420px; }
}

@media (max-width: 768px) {
  .em-hero {
    padding: 120px 0 70px;
    min-height: 720px;
  }

  .em-hero__bg img {
    object-position: center;
  }

  .em-hero::before {
    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.86) 42%,
        rgba(255, 255, 255, 0.68) 68%,
        rgba(255, 255, 255, 0.92) 100%);
  }

  .em-hero__grid {
    grid-template-columns: 1fr;
  }

  .em-hero__content {
    max-width: 100%;
  }

  .em-hero__content h1 {
    color: #541523;
  }

  .em-hero__content p {
    color: rgba(35, 20, 25, 0.78);
  }
}