      :root {
        --header-bg: #2f4f4f;
        --header-text: #dce3e3;
        --accent: #e28b77;
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        min-height: 100vh;
        background: #dce3e3;
        color: #2f4f4f;
        font-family: "Raleway", sans-serif;
      }

      .site-header {
        height: 72px;
        background: var(--header-bg);
        font-family: "Raleway", sans-serif;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 56px;
        position: sticky;
        top: 0;
        z-index: 20;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--header-text);
        text-decoration: none;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        border: 2px solid var(--header-text);
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-weight: 700;
        font-size: 18px;
      }

      .brand-text {
        font-size: 17px;
        line-height: 1;
        font-weight: 700;
      }

      .brand-sub {
        font-size: 17px;
        font-style: italic;
        font-weight: 400;
      }

      .menu {
        display: flex;
        align-items: center;
        gap: 28px;
      }

      .menu a {
        color: var(--header-text);
        text-decoration: none;
        font-size: 15px;
        font-weight: 400;
        padding: 8px 16px;
        border-radius: 999px;
        transition: background-color 0.2s ease, font-weight 0.2s ease;
      }

      .menu a:hover {
        background: rgba(220, 227, 227, 0.16);
        font-weight: 700;
      }

      .menu a.current {
        font-weight: 700;
      }

      .socials {
        display: flex;
        gap: 10px;
      }

      .social-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--header-text);
        color: var(--header-bg);
        display: grid;
        place-items: center;
        font-size: 22px;
        font-weight: 600;
        text-decoration: none;
      }

      .case-section {
        background: #dce3e3;
        padding: 96px 24px 86px;
      }

      .case-inner {
        max-width: 1320px;
        margin: 0 auto;
      }

      .case-title {
        margin: 0;
        font-family: "Bebas Neue", sans-serif;
        font-size: clamp(86px, 8vw, 130px);
        line-height: 0.9;
        color: var(--accent);
        letter-spacing: 0.5px;
      }

      .case-pill {
        margin-top: 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 9px 20px;
        border-radius: 999px;
        background: #1c8083;
        color: #dce3e3;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
      }

      .case-image-wrap {
        margin-top: 72px;
        background: #242424;
      }

      .case-image {
        width: 100%;
        display: block;
        margin: 0;
      }

      .contact-section {
        position: relative;
        background: #dce3e3;
        padding: 92px 24px 120px;
      }

      .contact-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 26px;
        background: linear-gradient(to bottom, rgba(47, 79, 79, 0.2), rgba(47, 79, 79, 0));
        clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 60%);
      }

      .contact-inner {
        max-width: 1320px;
        margin: 0 auto;
      }
      .section-title {
        font-family: "Raleway", sans-serif;
        font-size: clamp(54px, 5.7vw, 94px);
        font-style: italic;
        font-weight: 300;
        color: #e28b77;
        line-height: 1;
      }

      .contact-title {
        margin: 0 0 36px;
      }

      .contact-card {
        background: #c8cccc;
        border-radius: 32px;
        max-width: 1040px;
        padding: 38px 42px 30px;
      }

      .contact-heading {
        margin: 0 0 18px;
        font-family: "Raleway", sans-serif;
        font-size: clamp(38px, 4vw, 60px);
        font-style: italic;
        font-weight: 600;
        color: #2f4f4f;
        line-height: 1;
      }

      .contact-copy {
        margin: 0;
        max-width: 980px;
        font-family: "Raleway", sans-serif;
        font-size: clamp(18px, 1.55vw, 28px);
        line-height: 1.35;
        color: rgba(47, 54, 62, 0.8);
      }

      .contact-actions {
        margin-top: 20px;
        display: flex;
        justify-content: flex-end;
      }

      .contact-link {
        color: #2f4f4f;
        font-family: "Raleway", sans-serif;
        font-weight: 700;
        font-size: clamp(18px, 1.35vw, 26px);
        text-decoration: none;
      }

      .site-footer {
        position: relative;
        background: #2f4f4f;
        clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
        margin-top: -44px;
        padding: 78px 24px 28px;
        z-index: 1;
      }

      .site-footer::before {
        content: "";
        position: absolute;
        left: 0;
        top: -20px;
        width: 100%;
        height: 24px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
        pointer-events: none;
      }

      .footer-to-top {
        position: absolute;
        top: 20px;
        right: 24px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #dce3e3;
        color: #2f4f4f;
        display: grid;
        place-items: center;
        text-decoration: none;
        font-size: 26px;
        font-weight: 700;
      }

      .footer-locations {
        max-width: 1320px;
        margin: 0 auto 18px;
        text-align: center;
        font-family: "Raleway", sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: #dce3e3;
        letter-spacing: 0.1px;
      }

      .footer-divider {
        max-width: 1320px;
        height: 1px;
        margin: 0 auto 18px;
        background: rgba(220, 227, 227, 0.45);
      }

      .footer-main {
        max-width: 1320px;
        margin: 0 auto 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
      }

      .footer-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #dce3e3;
        text-decoration: none;
      }

      .footer-brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 2px solid #dce3e3;
        display: grid;
        place-items: center;
        font-size: 17px;
        font-weight: 700;
      }

      .footer-brand-via {
        font-family: "Raleway", sans-serif;
        font-weight: 700;
        font-size: 17px;
        line-height: 1;
      }

      .footer-brand-sub {
        font-family: "Raleway", sans-serif;
        font-style: italic;
        font-size: 17px;
        line-height: 1;
      }

      .footer-nav {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 16px;
      }

      .footer-nav a {
        font-family: "Raleway", sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #dce3e3;
        text-decoration: none;
      }

      .footer-socials {
        max-width: 1320px;
        margin: 0 auto 16px;
        display: flex;
        justify-content: center;
        gap: 10px;
      }

      .footer-social-btn {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #dce3e3;
        color: #2f4f4f;
        display: grid;
        place-items: center;
        font-family: "Raleway", sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-decoration: none;
      }

      .footer-legal {
        max-width: 1320px;
        margin: 0 auto;
        font-family: "Raleway", sans-serif;
        font-size: 12px;
        color: rgba(220, 227, 227, 0.8);
        text-align: center;
      }

      .whatsapp {
        position: fixed;
        right: 36px;
        bottom: 32px;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: #42bb53;
        color: white;
        display: grid;
        place-items: center;
        text-decoration: none;
        box-shadow: 0 10px 22px rgba(66, 187, 83, 0.3);
        z-index: 9999;
      }

      .whatsapp svg {
        width: 38px;
        height: 38px;
      }

      @media (max-width: 1300px) {
        .site-header {
          padding: 0 22px;
          gap: 18px;
        }

        .menu {
          gap: 14px;
        }

        .menu a {
          font-size: 15px;
          padding: 8px 12px;
        }

        .brand-text,
        .brand-sub {
          font-size: 17px;
        }
      }

      @media (max-width: 980px) {
        .site-header {
          height: auto;
          padding: 14px 18px;
          flex-wrap: wrap;
          justify-content: center;
          gap: 10px;
        }

        .menu {
          order: 3;
          width: 100%;
          justify-content: center;
          flex-wrap: wrap;
        }

        .case-section {
          padding: 78px 18px 70px;
        }

        .case-image-wrap {
          margin-top: 42px;
        }

        .contact-section {
          padding: 74px 18px 88px;
        }

        .contact-card {
          border-radius: 28px;
          padding: 24px 18px 20px;
        }

        .contact-copy {
          max-width: none;
        }

        .site-footer {
          margin-top: -34px;
          padding: 64px 18px 22px;
        }

        .footer-to-top {
          top: 14px;
          right: 16px;
          width: 38px;
          height: 38px;
          font-size: 22px;
        }

        .footer-locations {
          margin-bottom: 14px;
          font-size: 13px;
        }

        .footer-divider {
          margin-bottom: 14px;
        }

        .footer-main {
          flex-direction: column;
          align-items: flex-start;
          gap: 12px;
          margin-bottom: 14px;
        }

        .footer-nav {
          justify-content: flex-start;
        }

        .footer-socials {
          margin-bottom: 12px;
        }
      }

/* Split button + footer social parity with top bar */
.split-btn {
  width: 68px;
  height: 63px;
  display: inline-block;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  line-height: 0;
  cursor: pointer;
  text-decoration: none;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.split-btn-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.split-btn-bg {
  fill: var(--split-bg, #dce4e3);
}

.split-btn-arrow {
  fill: var(--split-arrow, #166a6b);
}

.split-up .split-btn-svg {
  transform: rotate(180deg);
}

.split-dark {
  --split-bg: #2f4f4f;
  --split-arrow: #dce4e3;
}

.footer-to-top {
  --split-bg: #2f4f4f;
  --split-arrow: #dce4e3;
}

.footer-social-btn {
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.footer-social-btn img {
  width: 26px;
  height: 26px;
  display: block;
}

@media (max-width: 980px) {
  .footer-to-top {
    top: 14px;
    right: 16px;
    width: auto;
    height: auto;
    font-size: inherit;
  }
}

.social-btn img {
  width: 32px;
  height: 32px;
  display: block;
}

/* Unified Home Sections */
.site-header {
  height: 72px;
  background: var(--header-bg);
  font-family: "Raleway", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--header-text);
  text-decoration: none;
}

.brand-logo {
  width: 32.25px;
  height: auto;
}

.brand-text {
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
}

.brand-sub {
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  color: var(--header-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: 999px;
  transition: background-color 0.2s ease, font-weight 0.2s ease;
}

.menu a:hover {
  background: rgba(220, 227, 227, 0.16);
  font-weight: 700;
}

.menu a.current {
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--header-text);
  color: var(--header-bg);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
}

.social-btn img {
  width: 40px;
  height: 40px;
  display: block;
}

.case-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
}

.case-pill {
  font-weight: 400;
}

.section-title {
  font-family: "Raleway", sans-serif;
  font-size: clamp(54px, 5.7vw, 70px);
  font-style: italic;
  font-weight: 200;
  color: #e28b77;
  line-height: 1;
}

.contact-section {
  position: static;
  background: #ffffff;
  padding: 92px 24px 120px;
}

.contact-section::before {
  content: none;
}

.contact-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.contact-title {
  margin: 0 0 36px;
}

.contact-card {
  background: #c8cccc;
  border-radius: 32px;
  max-width: 1040px;
  padding: 38px 42px 30px;
}

.contact-heading {
  margin: 0 0 18px;
  font-family: "Raleway", sans-serif;
  font-size: clamp(38px, 4vw, 40px);
  font-style: italic;
  font-weight: 100;
  color: #2f4f4f;
  line-height: 1;
}

.contact-copy {
  margin: 0;
  max-width: 980px;
  font-family: "Raleway", sans-serif;
  font-size: clamp(18px, 1.55vw, 28px);
  line-height: 1.35;
  color: rgba(47, 54, 62, 0.8);
}

.contact-actions {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.contact-link {
  color: #2f4f4f;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.35vw, 26px);
  text-decoration: none;
}

.site-footer {
  position: relative;
  background: #2f4f4f;
  clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
  margin-top: -44px;
  padding: 78px 24px 28px;
  z-index: 1;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  width: 100%;
  height: 24px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.footer-to-top {
  position: absolute;
  top: 20px;
  right: 24px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: inherit;
  display: inline-block;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  line-height: 0;
  --split-bg: #2f4f4f;
  --split-arrow: #dce4e3;
}

.footer-locations {
  max-width: 1320px;
  margin: 0 auto 18px;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #dce3e3;
  letter-spacing: 0.1px;
}

.footer-divider {
  max-width: 1320px;
  height: 1px;
  margin: 0 auto 18px;
  background: rgba(220, 227, 227, 0.45);
}

.footer-main {
  max-width: 1320px;
  margin: 0 auto 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dce3e3;
  text-decoration: none;
}

.footer-brand-via {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
}

.footer-brand-sub {
  font-family: "Raleway", sans-serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav a {
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #dce3e3;
  text-decoration: none;
}

.footer-socials {
  max-width: 1320px;
  margin: 0 auto 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #dce3e3;
  color: #2f4f4f;
  display: grid;
  place-items: center;
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.footer-social-btn img {
  width: 30px;
  height: 30px;
  display: block;
}

.footer-legal {
  max-width: 1320px;
  margin: 0 auto;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  color: rgba(220, 227, 227, 0.8);
  text-align: center;
}

@media (max-width: 1300px) {
  .site-header {
    padding: 0 22px;
    gap: 18px;
  }

  .menu {
    gap: 14px;
  }

  .menu a {
    font-size: 15px;
    padding: 8px 12px;
  }

  .brand-text,
  .brand-sub {
    font-size: 17px;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
    padding: 14px 18px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .menu {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-section {
    padding: 74px 18px 88px;
  }

  .contact-card {
    border-radius: 28px;
    padding: 24px 18px 20px;
  }

  .contact-copy {
    max-width: none;
  }

  .site-footer {
    margin-top: -34px;
    padding: 64px 18px 22px;
  }

  .footer-to-top {
    top: 14px;
    right: 16px;
  }

  .footer-locations {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .footer-divider {
    margin-bottom: 14px;
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-socials {
    margin-bottom: 12px;
  }
}
