  .edrose-about-hero,
  .edrose-about-hero *,
  .edrose-about-hero *::before,
  .edrose-about-hero *::after {
    box-sizing: border-box;
  }

  .edrose-about-hero {
    --eah-black: #050506;
    --eah-white: #f7f5ef;
    --eah-muted: #c4c1bb;
    --eah-gold: #d6a640;
    --eah-gold-light: #f0c45a;

    position: relative;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
    color: var(--eah-white);
    background: var(--eah-black);
    font-family: Arial, Helvetica, sans-serif;
  }

  .edrose-about-hero__visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 59%;
    overflow: hidden;
  }

  .edrose-about-hero__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .edrose-about-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(
        90deg,
        #050506 0%,
        #050506 36%,
        rgba(5, 5, 6, 0.94) 45%,
        rgba(5, 5, 6, 0.48) 64%,
        rgba(5, 5, 6, 0.12) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        transparent 55%,
        rgba(0, 0, 0, 0.45) 100%
      );
    pointer-events: none;
  }

  .edrose-about-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(100% - 80px, 1400px);
    min-height: 650px;
    align-items: center;
    margin: 0 auto;
    padding: 70px 0;
  }

  .edrose-about-hero__content {
    width: min(100%, 630px);
  }

  .edrose-about-hero__eyebrow {
    display: block;
    margin-bottom: 23px;
    color: var(--eah-gold-light);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
  }

  .edrose-about-hero h1 {
    margin: 0 0 29px;
    color: var(--eah-white);
    font-size: clamp(54px, 6vw, 92px);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -0.06em;
  }

  .edrose-about-hero h1 span {
    color: var(--eah-gold);
  }

  .edrose-about-hero p {
    max-width: 550px;
    margin: 0;
    color: var(--eah-muted);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
  }

  .edrose-about-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: 38px;
  }

  .edrose-about-hero__button {
    display: inline-flex;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 28px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
    transition:
      color 0.25s ease,
      background 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease;
  }

  .edrose-about-hero__button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
  }

  .edrose-about-hero__button--outline {
    min-width: 205px;
    color: var(--eah-gold-light);
    background: rgba(5, 5, 6, 0.48);
    border: 1px solid var(--eah-gold);
    border-radius: 999px;
  }

  .edrose-about-hero__button--outline:hover {
    color: var(--eah-black);
    background: var(--eah-gold-light);
    transform: translateY(-3px);
  }

  .edrose-about-hero__button--outline:hover svg {
    transform: translateX(4px);
  }

  .edrose-about-hero__button--gold {
    min-width: 210px;
    color: #111111;
    background: linear-gradient(
      135deg,
      #f2ca68 0%,
      #dca93a 100%
    );
    border: 1px solid var(--eah-gold-light);
  }

  .edrose-about-hero__button--gold:hover {
    background: #f6d578;
    transform: translateY(-3px);
  }

  @media (max-width: 1000px) {
    .edrose-about-hero,
    .edrose-about-hero__inner {
      min-height: 620px;
    }

    .edrose-about-hero__visual {
      width: 65%;
    }

    .edrose-about-hero__overlay {
      background:
        linear-gradient(
          90deg,
          #050506 0%,
          #050506 35%,
          rgba(5, 5, 6, 0.92) 50%,
          rgba(5, 5, 6, 0.28) 100%
        );
    }

    .edrose-about-hero__content {
      width: min(100%, 560px);
    }
  }

  @media (max-width: 760px) {
    .edrose-about-hero {
      min-height: auto;
    }

    .edrose-about-hero__visual {
      position: relative;
      width: 100%;
      height: 390px;
    }

    .edrose-about-hero__visual img {
      object-position: center center;
    }

    .edrose-about-hero__overlay {
      background:
        linear-gradient(
          180deg,
          rgba(5, 5, 6, 0.05) 0%,
          rgba(5, 5, 6, 0.5) 65%,
          #050506 100%
        );
    }

    .edrose-about-hero__inner {
      min-height: auto;
      align-items: flex-start;
      width: min(100% - 40px, 1400px);
      margin-top: -75px;
      padding: 0 0 65px;
    }

    .edrose-about-hero__content {
      width: 100%;
    }

    .edrose-about-hero h1 {
      font-size: clamp(48px, 13vw, 70px);
    }
  }

  @media (max-width: 520px) {
    .edrose-about-hero__visual {
      height: 330px;
    }

    .edrose-about-hero__inner {
      width: calc(100% - 30px);
      margin-top: -50px;
      padding-bottom: 52px;
    }

    .edrose-about-hero__eyebrow {
      margin-bottom: 17px;
      font-size: 10px;
    }

    .edrose-about-hero h1 {
      margin-bottom: 22px;
      font-size: clamp(43px, 13vw, 60px);
    }

    .edrose-about-hero p {
      font-size: 15px;
    }

    .edrose-about-hero__buttons {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      margin-top: 30px;
    }

    .edrose-about-hero__button {
      width: 100%;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .edrose-about-hero *,
    .edrose-about-hero *::before,
    .edrose-about-hero *::after {
      transition: none !important;
    }
  }



 .edrose-footer,
  .edrose-footer * {
    box-sizing: border-box;
  }

  .edrose-footer {
    --ef-black: #fffaf0;
    --ef-panel: #fff3d9;
    --ef-panel-hover: #ffedc6;
    --ef-white: #17130d;
    --ef-muted: #756c5e;
    --ef-gold: #a87520;
    --ef-gold-light: #d7a948;
    --ef-border: rgba(23, 19, 13, 0.14);

    position: relative;
    width: 100%;
    overflow: hidden;
    color: var(--ef-white);
    background:
      radial-gradient(
        circle at 84% 18%,
        rgba(215, 169, 72, 0.18),
        transparent 27%
      ),
      var(--ef-black);
    font-family: Arial, Helvetica, sans-serif;
  }

  .edrose-footer a {
    color: inherit;
  }

  .edrose-footer__inner {
    position: relative;
    z-index: 2;
    width: min(100% - 44px, 1320px);
    margin: 0 auto;
    padding: 70px 0 34px;
  }

  /* TOP CTA */

  .edrose-footer__cta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 44px;
    padding-bottom: 55px;
    border-bottom: 1px solid var(--ef-border);
  }

  .edrose-footer__cta-copy {
    min-width: 0;
  }

  .edrose-footer__eyebrow {
    display: block;
    margin-bottom: 16px;
    color: var(--ef-gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.24em;
  }

  .edrose-footer__cta h2 {
    max-width: 900px;
    margin: 0;
    color: var(--ef-white);
    font-size: clamp(40px, 5.2vw, 76px);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -0.055em;
  }

  .edrose-footer__cta-button {
    display: inline-flex;
    min-width: 215px;
    min-height: 54px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 0 22px;
    color: var(--ef-white);
    background: var(--ef-gold-light);
    border: 1px solid var(--ef-gold-light);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-decoration: none;
    white-space: nowrap;
    transition:
      color 0.25s ease,
      background 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease;
  }

  .edrose-footer__cta-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
  }

  .edrose-footer__cta-button:hover {
    color: var(--ef-white);
    background: transparent;
    border-color: var(--ef-gold);
    transform: translateY(-3px);
  }

  .edrose-footer__cta-button:hover svg {
    transform: translateX(4px);
  }

  /* MAIN COLUMNS */

  .edrose-footer__main {
    display: grid;
    grid-template-columns:
      minmax(290px, 1.4fr)
      repeat(3, minmax(145px, 0.65fr));
    gap: 52px;
    padding: 54px 0;
    border-bottom: 1px solid var(--ef-border);
  }

  .edrose-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    text-decoration: none;
  }

  .edrose-footer__logo-mark {
    display: flex;
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 10px 9px;
    background: var(--ef-white);
    border-radius: 12px;
  }

  .edrose-footer__logo-mark i {
    display: block;
    width: 34px;
    height: 8px;
    background: var(--ef-black);
    border-radius: 8px 2px 8px 2px;
  }

  .edrose-footer__logo-mark i:nth-child(2) {
    margin-left: -5px;
  }

  .edrose-footer__logo-text strong,
  .edrose-footer__logo-text small {
    display: block;
  }

  .edrose-footer__logo-text strong {
    color: var(--ef-white);
    font-size: 24px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
  }

  .edrose-footer__logo-text small {
    margin-top: 7px;
    color: var(--ef-gold);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.3em;
  }

  .edrose-footer__brand > p {
    max-width: 390px;
    margin: 0 0 30px;
    color: var(--ef-muted);
    font-size: 12px;
    line-height: 1.72;
  }

  .edrose-footer__direct-contact {
    display: grid;
    gap: 19px;
  }

  .edrose-footer__direct-contact div {
    display: grid;
    gap: 7px;
  }

  .edrose-footer__direct-contact small {
    color: var(--ef-gold);
    font-size: 7px;
    font-weight: 850;
    letter-spacing: 0.15em;
  }

  .edrose-footer__direct-contact a {
    width: fit-content;
    color: var(--ef-white);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
  }

  .edrose-footer__direct-contact a:hover {
    color: var(--ef-gold);
  }

  .edrose-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }

  .edrose-footer__column h3 {
    margin: 0 0 10px;
    color: var(--ef-gold);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.17em;
  }

  .edrose-footer__column a {
    color: var(--ef-white);
    font-size: 11px;
    font-weight: 650;
    line-height: 1.4;
    text-decoration: none;
    transition:
      color 0.22s ease,
      transform 0.22s ease;
  }

  .edrose-footer__column a:hover {
    color: var(--ef-gold);
    transform: translateX(4px);
  }

  /* LOCATIONS */

  .edrose-footer__offices {
    padding: 55px 0;
    border-bottom: 1px solid var(--ef-border);
  }

  .edrose-footer__section-heading {
    margin-bottom: 35px;
  }

  .edrose-footer__section-heading span {
    display: block;
    margin-bottom: 8px;
    color: var(--ef-gold);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.21em;
  }

  .edrose-footer__section-heading h2 {
    margin: 0;
    color: var(--ef-white);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 900;
    letter-spacing: -0.04em;
  }

  .edrose-footer__office-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .edrose-footer__office {
    position: relative;
    min-height: 315px;
    padding: 25px;
    overflow: hidden;
    background:
      linear-gradient(
        145deg,
        rgba(168, 117, 32, 0.09),
        transparent 55%
      ),
      var(--ef-panel);
    border: 1px solid var(--ef-border);
    border-radius: 14px;
    transition:
      border-color 0.28s ease,
      background 0.28s ease,
      transform 0.28s ease;
  }

  .edrose-footer__office::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    width: 55px;
    height: 3px;
    background: var(--ef-gold);
  }

  .edrose-footer__office:hover {
    background: var(--ef-panel-hover);
    border-color: rgba(168, 117, 32, 0.5);
    transform: translateY(-5px);
  }

  .edrose-footer__office-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    color: var(--ef-muted);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.13em;
  }

  .edrose-footer__office-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 20px;
    color: var(--ef-white);
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -0.035em;
  }

  .edrose-footer__office-title svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    fill: none;
    stroke: var(--ef-gold);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .edrose-footer__office address {
    min-height: 64px;
    margin: 0 0 24px;
    color: var(--ef-muted);
    font-size: 10px;
    font-style: normal;
    line-height: 1.65;
  }

  .edrose-footer__office-links {
    display: grid;
    gap: 11px;
    padding-top: 19px;
    border-top: 1px solid var(--ef-border);
  }

  .edrose-footer__office-links a {
    width: fit-content;
    max-width: 100%;
    color: var(--ef-white);
    font-size: 9px;
    line-height: 1.45;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: color 0.22s ease;
  }

  .edrose-footer__office-links a:hover {
    color: var(--ef-gold);
  }

  .edrose-footer__map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ef-gold) !important;
    font-weight: 750;
  }

  .edrose-footer__map-link svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.22s ease;
  }

  .edrose-footer__map-link:hover svg {
    transform: translate(2px, -2px);
  }

  /* SOCIALS AND LEGAL */

  .edrose-footer__bottom {
    padding-top: 33px;
  }

  .edrose-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 23px;
    margin-bottom: 30px;
  }

  .edrose-footer__socials a {
    color: var(--ef-white);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .edrose-footer__socials a:hover {
    color: var(--ef-gold);
  }

  .edrose-footer__legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: var(--ef-muted);
  }

  .edrose-footer__legal p {
    margin: 0;
    font-size: 8px;
    line-height: 1.5;
  }

  .edrose-footer__legal div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
  }

  .edrose-footer__legal a {
    color: var(--ef-muted);
    font-size: 8px;
    text-decoration: none;
  }

  .edrose-footer__legal a:hover {
    color: var(--ef-white);
  }

  /* BACKGROUND WORD */

  .edrose-footer__background-text {
    position: absolute;
    right: -30px;
    bottom: -55px;
    z-index: 0;
    color: rgba(23, 19, 13, 0.025);
    font-size: clamp(130px, 22vw, 360px);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.08em;
    pointer-events: none;
    user-select: none;
  }

  /* TABLET */

  @media (max-width: 1050px) {
    .edrose-footer__main {
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 32px;
    }

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

  @media (max-width: 780px) {
    .edrose-footer__cta {
      align-items: flex-start;
      flex-direction: column;
    }

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

    .edrose-footer__brand {
      grid-column: 1 / -1;
      padding-bottom: 15px;
    }
  }

  /* MOBILE */

  @media (max-width: 560px) {
    .edrose-footer__inner {
      width: min(100% - 30px, 1320px);
      padding-top: 52px;
    }

    .edrose-footer__cta {
      padding-bottom: 42px;
    }

    .edrose-footer__cta h2 {
      font-size: clamp(38px, 11vw, 56px);
    }

    .edrose-footer__cta-button {
      width: 100%;
    }

    .edrose-footer__main {
      grid-template-columns: 1fr;
      gap: 35px;
      padding: 43px 0;
    }

    .edrose-footer__brand {
      grid-column: auto;
    }

    .edrose-footer__office-grid {
      grid-template-columns: 1fr;
    }

    .edrose-footer__office {
      min-height: auto;
    }

    .edrose-footer__office address {
      min-height: auto;
    }

    .edrose-footer__legal {
      align-items: flex-start;
      flex-direction: column;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .edrose-footer *,
    .edrose-footer *::before,
    .edrose-footer *::after {
      scroll-behavior: auto !important;
      transition: none !important;
    }
  }
 
  .ec-philosophy,
  .ec-philosophy *,
  .ec-philosophy *::before,
  .ec-philosophy *::after {
    box-sizing: border-box;
  }

  .ec-philosophy {
    --ecp-page: #050506;
    --ecp-panel: #0d0d0f;
    --ecp-text: #f3f1eb;
    --ecp-muted: #c3beb5;
    --ecp-gold: #d2a442;
    --ecp-line: rgba(255, 255, 255, 0.08);

    width: 100%;
    padding: 28px 0;
    color: var(--ecp-text);
    background: var(--ecp-page);
    font-family: Arial, Helvetica, sans-serif;
  }

  .ec-philosophy__panel {
    width: min(calc(100% - 80px), 1380px);
    margin: 0 auto;
    padding: 28px 34px 34px;
    background:
      radial-gradient(
        circle at 88% 15%,
        rgba(210, 164, 66, 0.045),
        transparent 26%
      ),
      var(--ecp-panel);
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 15px;
  }

  .ec-philosophy__eyebrow {
    margin: 0 0 25px;
    color: var(--ecp-gold);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
  }

  .ec-philosophy__hidden-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .ec-philosophy__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .ec-philosophy__item {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    align-items: start;
    gap: 21px;
    min-width: 0;
    padding: 0 38px;
  }

  .ec-philosophy__item:first-child {
    padding-left: 18px;
  }

  .ec-philosophy__item:last-child {
    padding-right: 18px;
  }

  .ec-philosophy_item + .ec-philosophy_item {
    border-left: 1px solid var(--ecp-line);
  }

  .ec-philosophy__icon {
    display: flex;
    width: 66px;
    height: 66px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(210, 164, 66, 0.6);
    border-radius: 14px;
  }

  .ec-philosophy__icon svg {
    width: 39px;
    height: 39px;
    fill: none;
    stroke: var(--ecp-gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .ec-philosophy__copy {
    min-width: 0;
    padding-top: 8px;
  }

  .ec-philosophy__copy h3 {
    margin: 0 0 13px;
    color: var(--ecp-gold);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .ec-philosophy__copy p {
    max-width: 260px;
    margin: 0;
    color: var(--ecp-muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
  }

  @media (max-width: 980px) {
    .ec-philosophy__grid {
      grid-template-columns: 1fr;
    }

    .ec-philosophy__item,
    .ec-philosophy__item:first-child,
    .ec-philosophy__item:last-child {
      padding: 26px 0;
    }

    .ec-philosophy__item:first-child {
      padding-top: 0;
    }

    .ec-philosophy__item:last-child {
      padding-bottom: 0;
    }

    .ec-philosophy_item + .ec-philosophy_item {
      border-top: 1px solid var(--ecp-line);
      border-left: 0;
    }

    .ec-philosophy__copy p {
      max-width: 520px;
    }
  }

  @media (max-width: 560px) {
    .ec-philosophy {
      padding: 20px 0;
    }

    .ec-philosophy__panel {
      width: calc(100% - 30px);
      padding: 24px 20px;
      border-radius: 13px;
    }

    .ec-philosophy__eyebrow {
      margin-bottom: 18px;
      font-size: 9px;
    }

    .ec-philosophy__item {
      grid-template-columns: 55px minmax(0, 1fr);
      gap: 15px;
    }

    .ec-philosophy__icon {
      width: 54px;
      height: 54px;
      border-radius: 12px;
    }

    .ec-philosophy__icon svg {
      width: 32px;
      height: 32px;
    }

    .ec-philosophy__copy {
      padding-top: 4px;
    }

    .ec-philosophy__copy h3 {
      margin-bottom: 9px;
      font-size: 17px;
    }

    .ec-philosophy__copy p {
      font-size: 12px;
    }
  }