/* Global */
/* Navigation */
/* Forms */
/* Cards */
/* Marketing Sections */
/* Modal */
/* CTA Variants */
/* Utility */
/* Tables */
/* Footer */
/* Responsive */

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(248, 245, 231, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 3px 12px rgba(31, 30, 28, 0.05);
  border-bottom-color: var(--e2z-border-subtle);
  padding: 12px 0;
}

.header-inner {
  position: relative;
  min-height: 98px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(2rem, 5vw, 4rem);
  padding-left: clamp(2rem, 6vw, 6rem);
  padding-right: clamp(2rem, 6vw, 6rem);
}

.nav-tagline {
  margin: 0;
  justify-self: end;
  color: var(--e2z-white);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
}

.site-header.scrolled .nav-tagline {
  color: var(--e2z-navy);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-self: center;
}

.brand-logo {
  width: clamp(128px, 11vw, 168px);
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(31, 30, 28, 0.1));
}

.site-header:not(.scrolled) .brand-logo {
  filter: drop-shadow(0 2px 8px rgba(31, 30, 28, 0.1));
}

.site-header.scrolled .brand-logo {
  filter: drop-shadow(0 2px 8px rgba(31, 30, 28, 0.1));
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(0.9rem, 1.9vw, 1.7rem);
  position: static;
  justify-self: start;
}

.nav-link,
.nav-cta {
  position: relative;
  font-size: var(--text-lg);
  line-height: 1.2;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 5px rgba(18, 18, 18, 0.18);
}

.nav-link {
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--e2z-gold);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header.scrolled .nav-link {
  color: var(--e2z-navy);
  text-shadow: none;
}

.site-header.scrolled .nav-cta {
  color: var(--e2z-white);
  text-shadow: none;
}

.nav-link.active {
  color: var(--e2z-white);
  opacity: 1;
}

.site-header.scrolled .nav-link.active {
  color: var(--e2z-navy);
}

.nav-link:hover {
  color: var(--e2z-gold);
  opacity: 1;
}

.site-header.scrolled .nav-link::after {
  background: var(--e2z-gold);
}

.nav-link.active::after,
.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  background: rgba(7, 21, 45, 0.92);
  color: var(--e2z-white);
  padding: 0.66rem 1.12rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 14px rgba(7, 21, 45, 0.2);
  opacity: 1;
}

.nav-cta:hover {
  color: var(--e2z-white);
  background: rgba(7, 21, 45, 0.97);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(7, 21, 45, 0.24);
}

.menu-toggle {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.site-header.scrolled .menu-toggle {
  border-color: var(--e2z-border);
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: var(--e2z-white);
}

.site-header.scrolled .menu-toggle span {
  background: var(--e2z-navy);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: var(--space-4);
  background: rgba(248, 245, 231, 0.98);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid rgba(44, 44, 42, 0);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-1px);
}

.mobile-nav.open {
  padding: var(--space-6) clamp(1.25rem, 4vw, 3rem) var(--space-8);
  border-top-color: var(--e2z-border-subtle);
  max-height: 360px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-link,
.mobile-cta {
  color: var(--e2z-navy);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.08rem);
  line-height: 1.3;
}

.mobile-cta {
  display: inline-block;
  margin-top: var(--space-2);
  background: var(--e2z-navy);
  color: var(--e2z-white);
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius-sm);
  width: fit-content;
}

.mobile-link,
.mobile-cta {
}

.mobile-link:hover,
.mobile-link:focus-visible {
  color: var(--e2z-gold);
  transform: none;
}

.mobile-cta:hover,
.mobile-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(13, 43, 92, 0.32);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(420px, 64vh, 620px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: url('../assets/images/about-bg.png?v=20260518u');
  background-size: cover;
  background-position: 62% center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 20%, rgba(229, 211, 138, 0.08), transparent 36%),
    radial-gradient(circle at 74% 78%, rgba(245, 232, 200, 0.1), transparent 46%),
    linear-gradient(to bottom, rgba(17, 26, 45, 0.2), rgba(17, 26, 45, 0.06) 38%, rgba(30, 28, 27, 0.24) 100%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(7, 21, 45, 0.88) 0%,
      rgba(7, 21, 45, 0.88) 24%,
      rgba(7, 21, 45, 0.72) 40%,
      rgba(7, 21, 45, 0.55) 52%,
      rgba(17, 26, 45, 0.34) 60%,
      rgba(30, 28, 27, 0.14) 68%,
      transparent 76%
    );
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-left: clamp(134px, 9vw, 167px);
  padding-right: clamp(1.25rem, 4vw, 3rem);
  padding-top: clamp(8rem, 13vw, 11rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.hero-main {
  max-width: min(46vw, 760px);
}

.hero-eyebrow {
  font-size: clamp(0.98rem, 0.9rem + 0.22vw, 1.12rem);
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #e5d38a;
  margin-bottom: 22px;
}

.hero h1 {
  color: #f7f5f2;
  font-size: clamp(2.95rem, 4.45vw, 5.15rem);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 12.8ch;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
  text-shadow: 0 8px 22px rgba(31, 30, 28, 0.26);
}

.hero-success {
  display: inline-block;
  border-bottom: 3px solid #d4b24f;
  line-height: 0.95;
  padding-bottom: 6px;
}

.hero-support {
  max-width: 520px;
  margin-left: 0;
  margin-top: 30px;
  padding: 0;
  border: none;
  background: transparent;
}

.hero-support p {
  color: #ede7dd;
  opacity: 0.96;
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: 0.006em;
  font-weight: 500;
  margin-bottom: 32px;
}

.hero-support p:first-of-type {
  font-size: clamp(1.58rem, 1.22rem + 1.05vw, 2.08rem);
  line-height: 1.48;
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-align: center;
  border-radius: 10px;
  min-height: 52px;
  padding: 0 30px;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-btn:hover,
.hero-btn:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.hero-btn-primary {
  background: #d4b24f;
  color: #111a2d;
  border: none;
  box-shadow: 0 8px 20px rgba(31, 30, 28, 0.2);
}

.hero-btn-primary:hover,
.hero-btn-primary:focus-visible {
  background: #c9a227;
  color: #111a2d;
  box-shadow: 0 14px 28px rgba(31, 30, 28, 0.24);
}

.hero-btn-secondary {
  background: rgba(17, 26, 45, 0.24);
  color: #f7f5f2;
  border: 1px solid rgba(229, 211, 138, 0.45);
}

.hero-btn-secondary:hover,
.hero-btn-secondary:focus-visible {
  border-color: rgba(229, 211, 138, 0.62);
  background: rgba(212, 178, 79, 0.08);
  color: var(--e2z-white);
}

/* Commitment */
.section-commitment {
  background: linear-gradient(180deg, var(--e2z-white) 0%, #fdfcf6 100%);
  padding-bottom: clamp(2.5rem, 4.5vw, 4rem);
}

.section-commitment .section-head {
  margin-bottom: var(--space-6);
}

.commitment-item {
  padding: var(--space-6);
  border: 1px solid var(--e2z-border);
  border-top: 2px solid var(--e2z-gold);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--e2z-white) 0%, #fffdf5 100%);
  box-shadow: var(--e2z-shadow-soft);
}

.commitment-item:hover {
  transform: translateY(-1px);
  box-shadow: var(--e2z-shadow-lift);
  border-color: rgba(44, 44, 42, 0.22);
}

.commitment-item h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.commitment-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: var(--space-4);
  stroke: var(--e2z-navy);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* About + values */
.section-about,
.section-values {
  background: var(--e2z-cream);
}

.section-about {
  border-top: 1px solid var(--e2z-border-subtle);
  padding-top: clamp(3rem, 5vw, 4.75rem);
}

.section-values {
  background: var(--e2z-cream-soft);
  border-top: 1px solid var(--e2z-border-subtle);
}

.about-visual,
.values-visual {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-lg);
  min-height: clamp(260px, 38vw, 460px);
  border: 1px solid var(--e2z-border);
  filter: contrast(1.03) saturate(0.94);
  box-shadow: var(--e2z-shadow-soft);
}

.about-visual::after,
.values-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(140deg, rgba(13, 43, 92, 0.16), rgba(44, 44, 42, 0.1)),
    linear-gradient(0deg, rgba(250, 247, 232, 0.1), rgba(250, 247, 232, 0.1));
}

.about-visual {
  background:
    linear-gradient(150deg, rgba(13, 43, 92, 0.18), rgba(38, 37, 35, 0.28)),
    radial-gradient(circle at 26% 28%, rgba(255, 255, 255, 0.2), transparent 48%),
    url('../assets/images/hero-title-bg.png?v=20260518u');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.values-visual {
  background:
    linear-gradient(150deg, rgba(13, 43, 92, 0.16), rgba(38, 37, 35, 0.25)),
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.16), transparent 54%),
    url('../assets/images/values-core-bg.png?v=20260518q');
  background-size: cover;
  background-position: center 44%;
  background-repeat: no-repeat;
}

.about-visual:hover,
.values-visual:hover {
  transform: translateY(-1px);
  box-shadow: var(--e2z-shadow-lift);
}

.about-copy p + p {
  margin-top: var(--space-4);
}

@media (min-width: 768px) {
  .about-grid {
    column-gap: clamp(2.25rem, 3.4vw, 3.1rem);
  }

  .about-visual {
    margin-left: clamp(0.2rem, 0.7vw, 0.55rem);
  }
}

.values-copy ul {
  display: grid;
  gap: 8px;
}

.values-copy li {
  color: var(--e2z-muted);
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--text-base);
  line-height: 2;
}

.values-copy li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--e2z-navy);
  font-weight: 600;
}

/* Testimonials */
.section-testimonials {
  background: linear-gradient(180deg, var(--e2z-white) 0%, #fdfcf6 100%);
  border-top: 1px solid var(--e2z-border-subtle);
}

.section-clients {
  background: var(--e2z-cream-soft);
  border-top: 1px solid var(--e2z-border-subtle);
}

.testimonial {
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  border-radius: var(--radius-md);
  border: 1px solid var(--e2z-border);
  border-top: 2px solid var(--e2z-gold-soft);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--e2z-shadow-soft);
}

.testimonial:hover {
  transform: translateY(-1px);
  box-shadow: var(--e2z-shadow-lift);
  border-color: rgba(38, 37, 35, 0.18);
}

.stars {
  color: var(--e2z-gold);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.quote {
  color: var(--e2z-muted);
}

.testimonial-meta {
  margin-top: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 8px 18px rgba(31, 30, 28, 0.1);
  background: var(--e2z-white);
}

.author {
  margin-top: 0;
  font-family: var(--font-heading);
  color: var(--e2z-charcoal);
  font-size: var(--text-lg);
  line-height: 1.1;
}

.role {
  color: var(--e2z-muted-light);
  font-size: var(--text-sm);
  margin-top: 2px;
}

/* Clients */
.logo-item {
  min-height: 124px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--e2z-border);
  border-top: 2px solid rgba(201, 162, 39, 0.7);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(0.95rem, 1.8vw, 1.2rem);
  color: var(--e2z-muted);
  font-size: var(--text-sm);
  box-shadow: 0 8px 18px rgba(34, 32, 28, 0.06);
}

.logo-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(31, 30, 28, 0.12);
  border-color: rgba(44, 44, 42, 0.22);
  opacity: 1;
}

.client-logo {
  --logo-scale: 1;
  width: 100%;
  max-width: 228px;
  max-height: 70px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.94) contrast(1.02);
  display: block;
  transform: scale(var(--logo-scale));
  transform-origin: center;
}

.logo-item:hover .client-logo {
  transform: scale(calc(var(--logo-scale) * 1.01));
  filter: saturate(1.08) contrast(1.08);
}

.client-logo--master {
  max-height: 70px;
  --logo-scale: 1.02;
}

.client-logo--b2w {
  max-height: 72px;
  max-width: 228px;
  --logo-scale: 1.08;
}

.client-logo--sandsage,
.client-logo--aggregator,
.client-logo--mckeough {
  max-width: 228px;
  max-height: 70px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.client-logo--sandsage {
  --logo-scale: 1.32;
}

.client-logo--aggregator {
  --logo-scale: 1.14;
}

.client-logo--mckeough {
  --logo-scale: 0.94;
}

/* Why choose */
.section-why {
  background: var(--e2z-white);
  border-top: 1px solid var(--e2z-border-subtle);
}

.why-grid {
  align-items: center;
}

.why-visual {
  min-height: clamp(280px, 42vw, 500px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--e2z-border);
  box-shadow: var(--e2z-shadow-soft);
  background:
    linear-gradient(130deg, rgba(13, 43, 92, 0.22), rgba(38, 37, 35, 0.28)),
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.16), transparent 46%),
    url('../assets/images/why-choose-bg.png?v=20260518u');
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}

.why-card {
  background: linear-gradient(180deg, var(--e2z-white) 0%, #fdfaf0 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--e2z-border);
  border-top: 2px solid var(--e2z-gold);
  padding: clamp(1.9rem, 4.2vw, 3.6rem);
  margin-top: clamp(-2rem, -4vw, -3rem);
  position: relative;
  z-index: 2;
  box-shadow: var(--e2z-shadow-soft);
}

.why-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--e2z-shadow-lift);
}

.why-card h2 {
  margin-bottom: clamp(1rem, 1.8vw, 1.35rem);
}

.text-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: clamp(1.45rem, 2.4vw, 1.85rem);
  color: var(--e2z-navy);
  border-bottom: 1px solid rgba(13, 43, 92, 0.45);
  padding-bottom: 2px;
}

.text-cta-icon {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
  flex-shrink: 0;
}

.text-cta-arrow {
}

.text-cta:hover .text-cta-arrow {
  transform: translateX(1px);
}

.text-cta:hover,
.text-cta:focus-visible {
  color: var(--e2z-gold-deep);
  border-bottom-color: var(--e2z-gold-deep);
}

/* Footer */
.site-footer {
  background:
    radial-gradient(circle at 18% 16%, rgba(229, 211, 138, 0.08), transparent 36%),
    radial-gradient(circle at 82% 14%, rgba(247, 245, 242, 0.05), transparent 40%),
    linear-gradient(165deg, #07152d 0%, #07152d 100%);
  border-top: 1px solid rgba(229, 211, 138, 0.16);
  padding-top: clamp(3.9rem, 6.2vw, 5.25rem);
  padding-bottom: clamp(2.4rem, 4.6vw, 3.45rem);
}

.footer-top {
  align-items: start;
  gap: clamp(2.9rem, 6vw, 6.4rem);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: var(--space-5);
  max-width: 34rem;
}

.footer-brand-logo {
  width: clamp(86px, 11vw, 122px);
  height: auto;
  filter: brightness(0) invert(1) contrast(1.05);
}

.regions {
  margin-top: 0;
  color: #d4b24f;
  letter-spacing: 0.018em;
  font-weight: 700;
  text-transform: capitalize;
  font-size: var(--text-sm);
}

.brand-statement {
  color: rgba(247, 245, 242, 0.78);
  font-size: clamp(1.02rem, 1rem + 0.14vw, 1.12rem);
  line-height: 1.78;
  max-width: 36ch;
}

.footer-right {
  display: grid;
  gap: clamp(2.15rem, 3.8vw, 3.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: end;
  align-content: start;
  justify-self: end;
  width: min(100%, 34rem);
}

@media (min-width: 901px) {
  .site-footer .container.footer-top {
    padding-left: clamp(1rem, 2.2vw, 1.75rem);
    padding-right: clamp(1rem, 2.2vw, 1.75rem);
  }

  .site-footer .footer-top {
    grid-template-columns: minmax(250px, 1.4fr) minmax(0, 2.8fr);
    column-gap: clamp(1.5rem, 3.8vw, 4rem);
    row-gap: 0.9rem;
    align-items: start;
  }

  .site-footer .footer-brand {
    max-width: 24rem;
    margin-left: 0;
  }

  .site-footer .footer-right {
    display: grid;
    grid-template-columns: 0.7fr 1fr 1.1fr;
    column-gap: clamp(1.25rem, 2.8vw, 2.5rem);
    row-gap: 0.9rem;
    width: 100%;
    max-width: none;
    justify-self: stretch;
    align-content: start;
    align-items: start;
  }

  .site-footer .footer-right > .footer-group {
    min-width: 0;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .site-footer .footer-right {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.footer-group {
  display: grid;
  align-content: start;
  gap: 0.92rem;
}

.footer-group-contact {
  justify-items: center;
  text-align: center;
  gap: 0.7rem;
}

.footer-group-contact .footer-heading {
  margin-bottom: 0.55rem;
}

.footer-group-contact .footer-email,
.footer-group-contact .footer-linkedin {
  justify-self: center;
}

.footer-blogs {
  gap: 0.68rem;
}

.footer-blog-cluster {
  display: grid;
  gap: 0.24rem;
}

.footer-blog-title {
  margin: 0 0 0.18rem;
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(212, 178, 79, 0.9);
}

.footer-heading {
  margin: 0 0 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.79rem;
  font-weight: 500;
  color: #d4b24f;
}

.footer-group .footer-heading-button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.82rem;
  padding: 0.28rem 0.66rem;
  border: 1px solid rgba(212, 178, 79, 0.52);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
  font-weight: 500;
  line-height: 1.2;
  color: #d4b24f;
  text-decoration: none;
  transition: color var(--transition-fast), border-color var(--transition-fast),
    background-color var(--transition-fast), transform var(--transition-fast);
}

.footer-group .footer-heading-button:hover,
.footer-group .footer-heading-button:focus-visible {
  color: #f7f5f2;
  border-color: rgba(247, 245, 242, 0.56);
  background: rgba(247, 245, 242, 0.08);
  transform: none;
}

.footer-group a {
  color: #f7f5f2;
  font-size: var(--text-base);
  line-height: 1.66;
}

.footer-email {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f7f5f2;
  border: 1px solid rgba(229, 211, 138, 0.34);
  border-radius: 6px;
  background: rgba(247, 245, 242, 0.02);
}

.footer-email svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.footer-group a:hover {
  color: #d4b24f;
  opacity: 1;
  transform: translateX(1px);
}

.footer-group-contact a:hover,
.footer-group-contact a:focus-visible {
  transform: none;
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  gap: 0;
  border: 1px solid rgba(229, 211, 138, 0.34);
  border-radius: 6px;
  background: rgba(247, 245, 242, 0.02);
}

.footer-linkedin::before {
  content: 'in';
  width: 1.05rem;
  height: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1;
  color: #061b43;
  background: #d4b24f;
  box-shadow: 0 0 0 1px rgba(212, 178, 79, 0.35);
}

.footer-bottom {
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  padding-top: clamp(1.05rem, 2.5vw, 1.45rem);
  border-top: none;
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(0.65rem, 2vw, 1.5rem);
  right: clamp(0.65rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(247, 245, 242, 0.12);
}

.footer-bottom p {
  color: rgba(247, 245, 242, 0.58);
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  text-align: center;
}

@media (max-width: 900px) {
  .footer-right {
    grid-template-columns: 1fr;
    justify-content: start;
  }

  .footer-group {
    gap: 0.65rem;
  }
}

/* Reveal */
.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (min-width: 901px) {
  .desktop-nav {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 1120px) {
  .nav-tagline {
    display: none;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 90px;
    padding-left: clamp(1.25rem, 5vw, 2rem);
    padding-right: clamp(1.25rem, 5vw, 2rem);
  }

  .brand-logo {
    width: clamp(114px, 36vw, 146px);
  }

  .desktop-nav {
    display: none;
  }

  .nav-tagline {
    display: none;
  }

  .hero {
    min-height: clamp(420px, 64vh, 620px);
  }

  .hero-grid {
    padding-left: clamp(1.25rem, 6vw, 2rem);
    padding-right: clamp(1.25rem, 6vw, 2rem);
  }

  .hero {
    background-position: center 34%;
  }

  .about-visual,
  .values-visual,
  .why-visual {
    background-position: center center;
  }

  .hero h1 {
    font-size: 36px;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    text-wrap: pretty;
  }

  .hero-eyebrow {
    display: none;
  }

  .hero-support {
    margin-left: 0;
    margin-top: 18px;
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
  }

  .testimonial-avatar {
    width: 56px;
    height: 56px;
  }

  .site-header {
    background: rgba(248, 245, 231, 0.92);
    backdrop-filter: blur(4px);
    border-bottom-color: var(--e2z-border-subtle);
  }

  .site-header .menu-toggle {
    border-color: var(--e2z-border);
  }

  .site-header .menu-toggle span {
    background: var(--e2z-navy);
  }

  .why-card {
    margin-top: 0;
  }
}
