/* =============================================================
   Evergreen Design Build — Custom CSS for Divi 5 Child Theme
   Author: Got2Web (got2web.com)
   Version: 1.0.0
   ============================================================= */

/* ── RESET & BOX MODEL ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ── BASE TYPOGRAPHY ────────────────────────────────────────── */
body,
#page-container {
  font-family: 'Montserrat', sans-serif;
  color: var(--eg-black);
  background: var(--eg-white);
  font-size: 19.5px;
  line-height: 1.75;
}

html {
  scroll-behavior: smooth;
}

/* ── DIVI OVERRIDE: accent / link colour ────────────────────── */
a { color: var(--eg-green); }
a:hover { color: var(--eg-green-light); }

/* ============================================================
   HEADER
   ============================================================ */
#main-header,
#main-header.et-fixed-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}

#main-header.scrolled,
#main-header.et-fixed-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Logo */
#main-header .logo img,
#main-header .et-fixed-header .logo img {
  height: 72px;
  width: auto;
  display: block;
}

/* Nav links */
#main-header nav a,
#et-top-navigation nav ul li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eg-black);
  text-decoration: none;
  transition: color 0.2s;
}

#main-header nav a:hover,
#et-top-navigation nav ul li a:hover {
  color: var(--eg-green);
}

/* CTA button in nav */
.nav-cta,
#et-top-navigation nav ul li.nav-cta a {
  background: var(--eg-black) !important;
  color: var(--eg-white) !important;
  padding: 11px 26px !important;
  letter-spacing: 0.14em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover,
#et-top-navigation nav ul li.nav-cta a:hover {
  background: var(--eg-green) !important;
  color: var(--eg-white) !important;
}

/* ============================================================
   GLOBAL BUTTONS
   ============================================================ */
.et_pb_button,
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  border-radius: 0;
}

/* White button (hero CTA) */
.et_pb_button.btn-white,
.btn-white {
  background: var(--eg-white);
  color: var(--eg-black);
  border: 1px solid var(--eg-white);
}
.et_pb_button.btn-white:hover,
.btn-white:hover {
  background: transparent;
  color: var(--eg-white);
}

/* Dark button (form submit / general) */
.et_pb_button.btn-dark,
.btn-dark,
.et_pb_button:not(.btn-white):not(.btn-outline-white) {
  background: var(--eg-black);
  color: var(--eg-white);
  border: 1px solid var(--eg-black);
}
.et_pb_button.btn-dark:hover,
.btn-dark:hover,
.et_pb_button:not(.btn-white):not(.btn-outline-white):hover {
  background: var(--eg-green);
  border-color: var(--eg-green);
}

/* Outline white button */
.btn-outline-white {
  background: transparent;
  color: var(--eg-white);
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.btn-outline-white:hover {
  background: var(--eg-white);
  color: var(--eg-black);
}

/* Divi default button overrides */
.et_pb_button::after { display: none !important; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.eg-hero,
.et_pb_section.eg-hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.eg-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.05);
  transition: transform 9s ease-out;
}
.eg-hero-bg.loaded { transform: scale(1); }

.eg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(0, 0, 0, 0.6)  0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.05) 100%);
}

.eg-hero-content {
  position: relative;
  z-index: 2;
  color: var(--eg-white);
  max-width: 700px;
  padding: 0 60px;
  margin-top: 60px;
}

.eg-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
  opacity: 0.8;
}

.eg-hero h1,
.eg-hero .et_pb_slide_title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.6rem, 7vw, 5.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 26px;
  color: var(--eg-white);
}

.eg-hero p {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.85;
  opacity: 0.88;
  max-width: 460px;
  margin-bottom: 44px;
}

/* Scroll indicator */
.eg-hero-scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
}

.eg-scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.45);
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%   { opacity: 0.25; transform: scaleY(0.5); }
  50%  { opacity: 1;    transform: scaleY(1); }
  100% { opacity: 0.25; transform: scaleY(0.5); }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.eg-stats-band,
.et_pb_section.eg-stats-band {
  background: var(--eg-green);
  color: var(--eg-white);
  padding: 30px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eg-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 52px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.eg-stat-item:last-child { border-right: none; }

.eg-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--eg-white);
}

.eg-stat-label {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.et_pb_section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.eg-section-label,
.et_pb_text .eg-section-label {
  font-size: 10.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--eg-green);
  margin-bottom: 14px;
  display: block;
}

.eg-section-title,
h2.eg-section-title,
.et_pb_text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 4.2vw, 3.5rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--eg-black);
  margin-bottom: 0;
}

.eg-divider {
  width: 38px;
  height: 1px;
  background: var(--eg-green);
  margin: 22px 0 38px;
  display: block;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.eg-services,
.et_pb_section.eg-services {
  background: var(--eg-off-white);
}

.eg-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.eg-service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.eg-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  display: block;
}

.eg-service-card:hover img { transform: scale(1.07); }

.eg-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    transparent 100%);
}

.eg-service-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 34px 28px;
  color: var(--eg-white);
}

.eg-service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.55;
  margin-bottom: 8px;
  display: block;
}

.eg-service-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
  color: var(--eg-white);
}

.eg-service-content p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0.82;
  color: var(--eg-white);
}

/* ============================================================
   PHILOSOPHY / OUR APPROACH SECTION
   ============================================================ */
.eg-philosophy,
.et_pb_section.eg-philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  padding: 0 !important;
}

.eg-philosophy-image {
  overflow: hidden;
}

.eg-philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.eg-philosophy-image:hover img { transform: scale(1.04); }

.eg-philosophy-text {
  background: var(--eg-black);
  color: var(--eg-white);
  padding: 90px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eg-philosophy-text .eg-section-label { color: rgba(255, 255, 255, 0.45); }
.eg-philosophy-text .eg-section-title { color: var(--eg-white); }
.eg-philosophy-text .eg-divider { background: rgba(255, 255, 255, 0.25); }

.eg-philosophy-text p,
.eg-philosophy-text .et_pb_text_inner p {
  font-size: 15.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  margin-bottom: 18px;
}

/* Philosophy sub-services list */
.eg-phil-services {
  margin: 28px 0 6px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.eg-phil-service h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.eg-phil-service p {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ============================================================
   ABOUT / TEAM SECTION
   ============================================================ */
.eg-about,
.et_pb_section.eg-about {
  background: var(--eg-white);
}

.eg-about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.eg-about-image-wrap { position: relative; }

.eg-about-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.eg-about-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--eg-green);
  color: var(--eg-white);
  padding: 18px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eg-about-badge .eg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.eg-about-badge .eg-cred {
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}

.eg-about-text p,
.eg-about-text .et_pb_text_inner p {
  font-size: 15.5px;
  font-weight: 300;
  color: #4a4a4a;
  line-height: 1.95;
  margin-bottom: 18px;
}

.eg-credentials-row {
  display: flex;
  gap: 36px;
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--eg-light-gray);
}

.eg-cred-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.eg-cred-item .eg-label {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--eg-mid-gray);
}

.eg-cred-item .eg-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--eg-black);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.eg-testimonials,
.et_pb_section.eg-testimonials {
  background: var(--eg-off-white);
}

.eg-testimonials-head {
  text-align: center;
  margin-bottom: 60px;
}

.eg-testimonials-head .eg-divider { margin: 22px auto 0; }

.eg-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}

.eg-t-card {
  background: var(--eg-white);
  padding: 52px 46px;
}

.eg-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  line-height: 0.45;
  color: var(--eg-green);
  opacity: 0.25;
  margin-bottom: 24px;
  display: block;
}

.eg-t-card p,
.eg-t-card .et_pb_text_inner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.78;
  color: #333;
  margin-bottom: 32px;
}

.eg-t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.eg-t-line {
  width: 30px;
  height: 1px;
  background: var(--eg-green);
  display: block;
}

.eg-t-name {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--eg-black);
}

/* ============================================================
   SERVICE AREA BAND
   ============================================================ */
.eg-service-area,
.et_pb_section.eg-service-area {
  background: var(--eg-green);
  color: var(--eg-white);
  text-align: center;
  padding: 84px 60px;
}

.eg-service-area .eg-section-label { color: rgba(255, 255, 255, 0.55); }

.eg-service-area .eg-section-title {
  color: var(--eg-white);
  margin-bottom: 8px;
}

.eg-service-area .eg-divider {
  background: rgba(255, 255, 255, 0.35);
  margin: 20px auto;
}

.eg-service-area-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 38px;
}

.eg-towns {
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.05em;
  line-height: 2.4;
}

.eg-towns span {
  display: inline-block;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.eg-towns span:last-child { border-right: none; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.eg-contact,
.et_pb_section.eg-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 !important;
}

.eg-contact-image {
  background-size: cover;
  background-position: center 30%;
  min-height: 640px;
}

.eg-contact-form-wrap {
  background: var(--eg-off-white);
  padding: 84px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eg-section-intro {
  font-size: 15px;
  font-weight: 300;
  color: #666;
  line-height: 1.85;
  margin-bottom: 38px;
}

/* Form elements */
.eg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.eg-form-group { margin-bottom: 24px; }

.eg-form-group label,
.et_pb_contact_field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--eg-black);
  margin-bottom: 9px;
}

.eg-form-group input,
.eg-form-group textarea,
.et_pb_contact_field input,
.et_pb_contact_field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #c8c6c0;
  padding: 10px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 15.5px;
  font-weight: 300;
  color: var(--eg-black);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  box-shadow: none;
}

.eg-form-group input:focus,
.eg-form-group textarea:focus,
.et_pb_contact_field input:focus,
.et_pb_contact_field textarea:focus {
  border-bottom-color: var(--eg-green);
}

.eg-form-group textarea,
.et_pb_contact_field textarea {
  resize: none;
  height: 90px;
}

/* Divi contact form overrides */
.et_pb_contact_form_container .et_pb_button {
  width: 100%;
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#main-footer,
.et_pb_section.eg-footer {
  background: var(--eg-black);
  padding: 64px 60px 38px;
}

.eg-footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eg-footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.24em;
  color: var(--eg-white);
}

.eg-footer-brand-sub {
  font-size: 8px;
  letter-spacing: 0.38em;
  color: rgba(255, 255, 255, 0.38);
  display: block;
  margin-top: 3px;
}

.eg-footer-brand > p,
.eg-footer-brand .et_pb_text_inner p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 20px;
}

.eg-footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--eg-white);
  margin-bottom: 22px;
}

.eg-footer-col a,
.eg-footer-col p {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  margin-bottom: 11px;
  transition: color 0.2s;
  line-height: 1.7;
}

.eg-footer-col a:hover { color: var(--eg-white); }

.eg-footer-social {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}

.eg-footer-logo {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.eg-footer-bottom,
#footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  background: var(--eg-green);
  padding: 16px 60px;
  margin: 0 -60px -38px;
}

.eg-footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.eg-footer-bottom a:hover { color: var(--eg-white); }

/* ============================================================
   FADE-UP ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }

/* ============================================================
   DIVI BUILDER GLOBAL OVERRIDES
   ============================================================ */

/* Remove default Divi section dividers */
.et_pb_section::before,
.et_pb_section::after { display: none; }

/* Row inner max-width — keep Divi's grid but allow full bleed where needed */
.et_pb_row { max-width: 1340px; }

/* Divi headings → Cormorant Garamond */
h1, h2, h3,
.et_pb_module h1,
.et_pb_module h2,
.et_pb_module h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

h4, h5, h6,
.et_pb_module h4,
.et_pb_module h5,
.et_pb_module h6 {
  font-family: 'Montserrat', sans-serif;
}

/* ============================================================
   RESPONSIVE — TABLET  (≤ 768px)
   ============================================================ */
@media (max-width: 900px) {
  #main-header,
  #main-header.et-fixed-header {
    padding: 16px 28px;
  }
}

@media (max-width: 768px) {
  .et_pb_section { padding: 70px 28px; }

  .eg-stats-band { flex-wrap: wrap; gap: 0; padding: 20px 28px; }
  .eg-stat-item {
    padding: 14px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    width: 50%;
    justify-content: center;
  }
  .eg-stat-item:nth-child(odd)        { border-right: 1px solid rgba(255, 255, 255, 0.12); }
  .eg-stat-item:nth-child(3),
  .eg-stat-item:nth-child(4)          { border-bottom: none; }

  .eg-services-grid { grid-template-columns: 1fr; gap: 3px; }

  .eg-philosophy,
  .et_pb_section.eg-philosophy        { grid-template-columns: 1fr; }
  .eg-philosophy-text                 { padding: 56px 28px; }

  .eg-about-layout                    { grid-template-columns: 1fr; gap: 0; }
  .eg-testimonials-grid               { grid-template-columns: 1fr; gap: 20px; }
  .eg-t-card                          { padding: 36px 28px; }

  .eg-contact,
  .et_pb_section.eg-contact           { grid-template-columns: 1fr; }
  .eg-contact-form-wrap               { padding: 56px 28px; }

  .eg-footer-top                      { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  #main-header,
  #main-header.et-fixed-header        { padding: 14px 20px; }
  .eg-logo img                        { height: 52px; }
  .et_pb_section                      { padding: 60px 20px; }

  .eg-hero-content                    { padding: 0 24px; margin-top: 80px; }
  .eg-hero p                          { font-size: 12.5px; }

  .eg-stats-band                      { padding: 16px 20px; }
  .eg-stat-item                       { padding: 12px 16px; }

  .eg-form-row                        { grid-template-columns: 1fr; gap: 0; }
  .eg-footer-top                      { grid-template-columns: 1fr; gap: 36px; }
  .eg-footer-bottom                   { flex-direction: column; gap: 8px; text-align: center; }
  .eg-credentials-row                 { flex-direction: column; gap: 20px; }

  .eg-towns span                      { padding: 0 10px; font-size: 11.5px; }
  .eg-service-area                    { padding: 64px 20px; }

  .eg-services-grid                   { grid-template-columns: 1fr; gap: 4px; }
  .eg-service-card                    { aspect-ratio: 4 / 5; width: 100%; }

  .eg-philosophy,
  .et_pb_section.eg-philosophy        { display: flex; flex-direction: column; }
  .eg-philosophy-image                { order: 1; width: 100%; min-height: 70vw; }
  .eg-philosophy-text                 { order: 2; padding: 48px 24px; }

  .eg-about-layout                    { display: flex; flex-direction: column; gap: 0; }
  .eg-about-image-wrap                { order: 1; width: 100%; }
  .eg-about-image-wrap img            { aspect-ratio: 4 / 5; width: 100%; }
  .eg-about-text                      { order: 2; padding-top: 40px; }

  .eg-contact,
  .et_pb_section.eg-contact           { display: flex; flex-direction: column; }
  .eg-contact-image                   { order: 1; width: 100%; min-height: 70vw; }
  .eg-contact-form-wrap               { order: 2; padding: 48px 20px; }
}
