:root {
  --ed-dark: #100c08;
  --ed-dark-soft: #1a120d;
  --ed-brown: #24170f;
  --ed-cream: #f4efe4;
  --ed-cream-soft: #ebe3d4;
  --ed-text-dark: #201812;
  --ed-text-light: #f8f1e7;
  --ed-text-muted: #8f7a61;
  --ed-gold: #c69a52;
  --ed-copper: #c85a24;
  --ed-olive: #4f5b38;
  --ed-heading-font: "Cormorant Garamond", serif;
  --ed-body-font: "Lato", sans-serif;
  --ed-container: 1180px;
  --ed-section-padding: 110px;
  --ed-transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--ed-body-font);
  font-weight: 400;
  color: var(--ed-text-dark);
  background: var(--ed-cream);
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.ed-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1001;
  padding: 10px 16px;
  color: var(--ed-dark);
  background: var(--ed-cream);
  transform: translateY(-160%);
  transition: transform var(--ed-transition);
}

.ed-skip-link:focus {
  transform: translateY(0);
}

.ed-container {
  width: min(100% - 40px, var(--ed-container));
  margin-inline: auto;
}

.ed-section {
  padding-block: var(--ed-section-padding);
}

.ed-label {
  margin: 0 0 16px;
  font-family: var(--ed-body-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: var(--ed-gold);
}

.ed-heading-xl,
.ed-heading-lg {
  margin: 0;
  font-family: var(--ed-heading-font);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.ed-heading-xl {
  font-size: clamp(62px, 8vw, 112px);
}

.ed-heading-lg {
  font-size: clamp(44px, 5vw, 74px);
}

.ed-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}

.ed-text-muted {
  color: var(--ed-text-muted);
}

.ed-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 28px;
  border: 1px solid transparent;
  font-family: var(--ed-body-font);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: color var(--ed-transition), background-color var(--ed-transition), border-color var(--ed-transition);
}

.ed-btn-primary {
  color: var(--ed-text-light);
  background: var(--ed-copper);
}

.ed-btn-primary:hover {
  color: var(--ed-text-light);
  background: #a9471c;
}

.ed-btn-outline {
  color: var(--ed-text-light);
  background: transparent;
  border-color: rgba(246, 234, 214, 0.42);
}

.ed-btn-outline:hover {
  background: rgba(246, 234, 214, 0.1);
  border-color: rgba(246, 234, 214, 0.7);
}

.ed-btn:focus-visible,
.ed-nav-list a:focus-visible,
.ed-mobile-nav-list a:focus-visible,
.ed-logo a:focus-visible,
.ed-footer a:focus-visible,
.ed-mobile-toggle:focus-visible {
  outline: 2px solid var(--ed-gold);
  outline-offset: 4px;
}

/* Header */
.ed-site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 999;
  width: min(calc(100% - 40px), 1220px);
  transform: translateX(-50%);
}

.admin-bar .ed-site-header {
  top: 54px;
}

.ed-header-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2.4vw, 36px);
  min-height: 78px;
  padding: 14px clamp(16px, 2vw, 28px);
  overflow: hidden;
  background: rgba(16, 12, 8, 0.68);
  border: 1px solid rgba(246, 234, 214, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ed-header-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0.65;
}

.ed-logo,
.ed-nav,
.ed-header-cta,
.ed-mobile-toggle {
  position: relative;
  z-index: 2;
}

.ed-logo,
.ed-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}

.ed-logo img {
  width: auto;
  max-height: 48px;
}

.ed-logo-text {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-family: var(--ed-heading-font);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--ed-text-light);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ed-nav-list,
.ed-mobile-nav-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ed-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 34px);
}

.ed-nav-list a {
  font-family: var(--ed-body-font);
  font-size: clamp(12px, 0.9vw, 13px);
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: rgba(248, 241, 231, 0.84);
  transition: color var(--ed-transition);
}

.ed-nav-list a:hover {
  color: var(--ed-gold);
}

.ed-site-header .ed-mobile-toggle,
.ed-site-header .ed-mobile-menu,
.ed-site-header .ed-mobile-menu[hidden] {
  display: none;
}

.ed-mobile-toggle > span[aria-hidden="true"] {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ed-text-light);
  transition: transform var(--ed-transition), opacity var(--ed-transition);
}

.ed-mobile-toggle {
  font-family: var(--ed-body-font);
}

.ed-mobile-toggle > span[aria-hidden="true"] + span[aria-hidden="true"] {
  margin-top: 6px;
}

@media (min-width: 992px) {
  .ed-site-header .ed-logo {
    justify-self: start;
  }

  .ed-site-header .ed-nav {
    display: block;
    justify-self: center;
  }

  .ed-site-header .ed-header-cta {
    display: inline-flex;
    justify-self: end;
    padding-inline: clamp(18px, 2vw, 28px);
    white-space: nowrap;
  }

  .ed-site-header .ed-mobile-toggle,
  .ed-site-header .ed-mobile-menu,
  body.ed-menu-open .ed-site-header .ed-mobile-menu {
    display: none;
  }
}

/* Hero */
.ed-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ed-text-light);
  background: radial-gradient(circle at 72% 50%, rgba(198, 154, 82, 0.18), transparent 32%), linear-gradient(90deg, rgba(16, 12, 8, 0.96), rgba(16, 12, 8, 0.76), rgba(16, 12, 8, 0.42)), var(--ed-dark);
}

.ed-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 45%, rgba(0, 0, 0, 0.2));
}

.ed-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -28%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(200, 90, 36, 0.14);
  filter: blur(70px);
}

.ed-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-top: 90px;
  padding-bottom: 60px;
}

.ed-hero-text {
  max-width: 600px;
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(248, 241, 231, 0.78);
}

.ed-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

/* About */
.ed-about {
  background: var(--ed-cream);
}

.ed-about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.ed-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  color: rgba(248, 241, 231, 0.68);
  background: linear-gradient(135deg, rgba(198, 154, 82, 0.2), rgba(36, 23, 15, 0.9)), var(--ed-brown);
}

.ed-about-content .ed-text {
  max-width: 620px;
  margin-top: 26px;
}

.ed-about-content .ed-btn {
  margin-top: 34px;
}

/* Services */
.ed-services {
  color: var(--ed-text-light);
  background: var(--ed-dark);
}

.ed-section-head {
  max-width: 760px;
  margin-bottom: 54px;
}

.ed-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(246, 234, 214, 0.16);
  border-left: 1px solid rgba(246, 234, 214, 0.16);
}

.ed-service-card {
  min-height: 310px;
  padding: 34px 28px;
  border-right: 1px solid rgba(246, 234, 214, 0.16);
  border-bottom: 1px solid rgba(246, 234, 214, 0.16);
}

.ed-service-card > span {
  display: block;
  margin-bottom: 60px;
  color: var(--ed-gold);
  font-size: 13px;
  font-weight: 700;
}

.ed-service-card h3 {
  margin: 0 0 16px;
  font-family: var(--ed-heading-font);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
}

.ed-service-card p {
  margin: 0;
  color: rgba(248, 241, 231, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

/* Gallery */
.ed-gallery {
  background: var(--ed-cream-soft);
}

.ed-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 22px;
}

.ed-gallery-item {
  display: flex;
  align-items: flex-end;
  min-height: 430px;
  padding: 24px;
  color: var(--ed-text-light);
  background: linear-gradient(135deg, rgba(198, 154, 82, 0.22), rgba(16, 12, 8, 0.86)), var(--ed-brown);
}

.ed-gallery-item:nth-child(2) {
  margin-top: 70px;
}

.ed-gallery-item span {
  color: rgba(248, 241, 231, 0.72);
}

/* Contact */
.ed-contact {
  color: var(--ed-text-light);
  background: var(--ed-dark);
}

.ed-contact-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 70px;
  align-items: center;
}

.ed-contact-card {
  padding: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(246, 234, 214, 0.14);
}

.ed-contact-card .ed-text {
  margin-bottom: 28px;
  color: rgba(248, 241, 231, 0.72);
}

/* Footer */
.ed-footer {
  position: relative;
  isolation: isolate;
  padding: 78px 0 24px;
  overflow: hidden;
  color: rgba(248, 241, 231, 0.72);
  background:
    radial-gradient(circle at 86% 36%, rgba(198, 154, 82, 0.08), transparent 30%),
    linear-gradient(180deg, #18110c 0%, #0b0805 100%);
  font-size: 14px;
}

.ed-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(198, 154, 82, 0.08), transparent 28%, rgba(200, 90, 36, 0.07));
  opacity: 0.7;
}

.ed-footer-decoration {
  position: absolute;
  right: clamp(-90px, -4vw, -28px);
  bottom: -34px;
  z-index: -1;
  width: clamp(180px, 25vw, 390px);
  aspect-ratio: 1 / 1;
  opacity: 0.22;
  pointer-events: none;
}

.ed-footer-decoration::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-right: 1px solid rgba(244, 239, 228, 0.34);
  border-bottom: 1px solid rgba(244, 239, 228, 0.24);
  border-radius: 58% 42% 0 0;
  transform: rotate(-12deg);
  transform-origin: 100% 100%;
}

.ed-footer-decoration::after {
  content: "";
  position: absolute;
  right: 16%;
  bottom: 8%;
  width: 58%;
  height: 84%;
  border-right: 1px solid rgba(244, 239, 228, 0.24);
  border-radius: 50%;
  transform: rotate(18deg);
  transform-origin: 100% 100%;
}

.ed-footer-decoration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.ed-footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(200px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(36px, 5vw, 74px);
  align-items: start;
}

.ed-footer p,
.ed-footer ul {
  margin: 0;
}

.ed-footer a {
  color: var(--ed-gold);
}

.ed-footer-logo {
  margin-bottom: 22px;
}

.ed-footer-logo img {
  width: auto;
  max-width: 170px;
  max-height: 72px;
}

.ed-footer-description {
  max-width: 230px;
  margin-bottom: 34px;
  color: rgba(248, 241, 231, 0.68);
  font-family: var(--ed-body-font);
  font-size: 14px;
  line-height: 1.7;
}

.ed-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.ed-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: rgba(248, 241, 231, 0.8);
  background: rgba(244, 239, 228, 0.04);
  border: 1px solid rgba(244, 239, 228, 0.16);
  border-radius: 999px;
  font-family: var(--ed-body-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color var(--ed-transition), background-color var(--ed-transition), border-color var(--ed-transition), transform var(--ed-transition);
}

.ed-footer-socials img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.ed-footer-socials a:hover {
  color: var(--ed-text-light);
  background: rgba(200, 90, 36, 0.22);
  border-color: rgba(200, 90, 36, 0.72);
  transform: translateY(-2px);
}

.ed-footer-title {
  margin-bottom: 28px;
  color: var(--ed-gold);
  font-family: var(--ed-body-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.ed-footer-contact .ed-footer-title {
  margin-bottom: 32px;
}

.ed-footer-form .ed-footer-title {
  margin-bottom: 0;
}

.ed-footer-contact-list {
  display: grid;
  gap: 17px;
  padding: 0;
  list-style: none;
}

.ed-footer-contact-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: rgba(248, 241, 231, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.ed-footer-contact-list li > span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  min-width: 22px;
  height: 22px;
  color: var(--ed-gold);
  font-size: 17px;
  line-height: 1;
}

.ed-footer-contact-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.ed-footer-contact-list a {
  color: rgba(248, 241, 231, 0.74);
  transition: color var(--ed-transition);
}

.ed-footer-contact-list a:hover {
  color: var(--ed-gold);
}

.ed-footer .ed-footer-form {
  justify-self: start;
  width: min(100%, 340px);
  max-width: 340px;
}

.ed-footer .ed-footer-form .wpcf7,
.ed-footer .ed-footer-form > form {
  margin-top: 18px;
}

.ed-footer .ed-footer-form-note {
  max-width: 360px;
  color: rgba(248, 241, 231, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.ed-footer .ed-footer-form form {
  display: grid;
  gap: 6px;
}

.ed-footer .ed-footer-form p {
  margin: 0;
}

.ed-footer .ed-footer-form label {
  display: grid;
  gap: 3px;
  color: rgba(248, 241, 231, 0.62);
  font-family: var(--ed-body-font);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.ed-footer .ed-footer-form input:not([type="submit"]),
.ed-footer .ed-footer-form textarea,
.ed-footer .ed-footer-form select {
  width: 100%;
  min-height: 0;
  height: 30px;
  padding: 5px 10px;
  color: var(--ed-text-light);
  background: rgba(8, 6, 4, 0.34);
  border: 1px solid rgba(244, 239, 228, 0.13);
  border-radius: 0;
  font-size: 13px;
  line-height: 1.3;
  outline: none;
  transition: border-color var(--ed-transition), background-color var(--ed-transition), box-shadow var(--ed-transition);
}

.ed-footer .ed-footer-form textarea {
  height: 64px;
  min-height: 64px;
  max-height: 96px;
  resize: vertical;
}

.ed-footer .ed-footer-form input:not([type="submit"])::placeholder,
.ed-footer .ed-footer-form textarea::placeholder {
  color: rgba(248, 241, 231, 0.42);
}

.ed-footer .ed-footer-form input:not([type="submit"]):focus,
.ed-footer .ed-footer-form textarea:focus,
.ed-footer .ed-footer-form select:focus {
  background: rgba(8, 6, 4, 0.52);
  border-color: rgba(198, 154, 82, 0.72);
  box-shadow: 0 0 0 3px rgba(198, 154, 82, 0.12);
}

.ed-footer .ed-footer-form input[type="submit"],
.ed-footer .ed-footer-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  height: 34px;
  width: min(100%, 142px);
  padding: 8px 16px;
  color: var(--ed-text-light);
  background: var(--ed-copper);
  border: 1px solid var(--ed-copper);
  border-radius: 0;
  font-family: var(--ed-body-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--ed-transition), border-color var(--ed-transition);
}

.ed-footer .ed-footer-form input[type="submit"]:hover,
.ed-footer .ed-footer-form button[type="submit"]:hover {
  background: #a9471c;
  border-color: #a9471c;
}

.ed-footer-form .wpcf7-spinner {
  margin: 0 0 0 10px;
}

.ed-footer-form .wpcf7-not-valid-tip,
.ed-footer-form .wpcf7-response-output {
  color: var(--ed-text-light);
  font-size: 12px;
}

.ed-footer-form .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-color: rgba(198, 154, 82, 0.44);
}

.ed-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 38px;
  margin-top: 54px;
  border-top: 1px solid rgba(244, 239, 228, 0.1);
  color: rgba(248, 241, 231, 0.46);
  font-size: 13px;
}

@media (max-width: 991px) {
  :root {
    --ed-section-padding: 78px;
  }

  html {
    scroll-padding-top: 100px;
  }

  .ed-site-header {
    top: 14px;
    width: min(calc(100% - 28px), 760px);
  }

  .admin-bar .ed-site-header {
    top: 60px;
  }

  .ed-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    min-height: 68px;
    padding: 12px 16px;
  }

  .ed-site-header .ed-nav,
  .ed-site-header .ed-header-cta {
    display: none;
  }

  .ed-site-header .ed-mobile-toggle {
    display: inline-flex;
    flex: 0 0 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--ed-text-light);
    background-color: var(--ed-copper);
    border: 1px solid var(--ed-copper);
    border-radius: 0;
    appearance: none;
    -webkit-tap-highlight-color: rgba(200, 90, 36, 0.22);
    cursor: pointer;
  }

  .ed-site-header .ed-mobile-toggle:hover,
  .ed-site-header .ed-mobile-toggle:focus,
  .ed-site-header .ed-mobile-toggle:active,
  body.ed-menu-open .ed-site-header .ed-mobile-toggle {
    color: var(--ed-text-light);
    background-color: #b94f20;
    border-color: #b94f20;
  }

  body.ed-menu-open .ed-mobile-toggle > span[aria-hidden="true"]:nth-of-type(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.ed-menu-open .ed-mobile-toggle > span[aria-hidden="true"]:nth-of-type(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  body.ed-menu-open .ed-site-header .ed-mobile-menu:not([hidden]) {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 120px);
    max-height: calc(100dvh - 120px);
    padding: 22px;
    margin-top: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(16, 12, 8, 0.88);
    border: 1px solid rgba(246, 234, 214, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  }

  .ed-mobile-nav-list {
    display: grid;
    gap: 4px;
  }

  .ed-mobile-nav-list a {
    display: block;
    padding-block: 10px;
    font-family: var(--ed-body-font);
    color: var(--ed-text-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
  }

  .ed-mobile-cta {
    width: 100%;
    margin-top: 20px;
  }

  .ed-about-grid,
  .ed-contact-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .ed-gallery-grid {
    grid-template-columns: 1fr;
  }

  .ed-gallery-item:nth-child(2) {
    margin-top: 0;
  }

  .ed-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .ed-footer-brand {
    grid-column: 1 / -1;
  }

  .ed-footer-description {
    max-width: 420px;
  }

  .ed-footer-decoration {
    right: -120px;
    width: 330px;
    opacity: 0.16;
  }

  .ed-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 782px) {
  .admin-bar .ed-site-header {
    top: 60px;
  }
}

@media (max-width: 575px) {
  .ed-site-header {
    width: calc(100% - 20px);
  }

  .ed-header-inner {
    gap: 10px;
    padding: 10px 12px;
  }

  .ed-container {
    width: min(100% - 28px, var(--ed-container));
  }

  .ed-logo img {
    max-width: min(190px, 100%);
    max-height: 42px;
  }

  .ed-logo-text {
    font-size: clamp(20px, 7vw, 24px);
  }

  .ed-heading-xl {
    font-size: clamp(54px, 17vw, 76px);
  }

  .ed-heading-lg {
    font-size: clamp(40px, 13vw, 56px);
  }

  .ed-hero-content {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .ed-hero-text {
    font-size: 16px;
  }

  .ed-hero-actions {
    flex-direction: column;
  }

  .ed-btn {
    width: 100%;
  }

  .ed-services-grid {
    grid-template-columns: 1fr;
  }

  .ed-image-placeholder,
  .ed-gallery-item {
    min-height: 360px;
  }

  .ed-service-card {
    min-height: auto;
  }

  .ed-service-card > span {
    margin-bottom: 42px;
  }

  .ed-contact-card {
    padding: 28px 22px;
  }

  .ed-footer {
    padding-top: 64px;
  }

  .ed-footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ed-footer-logo img {
    max-width: 150px;
    max-height: 62px;
  }

  .ed-footer-description {
    max-width: 100%;
  }

  .ed-footer-form {
    max-width: none;
  }

  .ed-footer-form input[type="submit"],
  .ed-footer-form button[type="submit"] {
    width: 100%;
  }

  .ed-footer-decoration {
    right: -86px;
    bottom: -42px;
    width: 220px;
    opacity: 0.12;
  }

  .ed-footer-bottom {
    padding-top: 28px;
    margin-top: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms;
  }
}
