/* ============================================================
   RHINO FINANCIAL CONSULTING — style.css v3.0
   Premium redesign: navy, white, restrained gold accent.
   Consolidated from reset.css + old style.css.
   ============================================================ */

/* ============================================================
   1. RESET
   ============================================================ */
   *, *::before, *::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
  }
  a { text-decoration: none; color: inherit; }
  li { list-style: none; }
  img { vertical-align: top; max-width: 100%; height: auto; }
  h1, h2, h3, h4, h5, h6 { font-weight: inherit; font-size: inherit; }
  html, body { height: 100%; line-height: 1; }
  textarea, button, input {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    font-family: inherit;
  }
  button { cursor: pointer; background-color: transparent; }
  
  
  /* ============================================================
     2. DESIGN TOKENS
     ============================================================ */
  :root {
    /* Palette */
    --navy:          #1b2b45;
    --navy-dark:     #111e30;
    --navy-mid:      #243452;
    --navy-light:    #2e4270;
    --gold:          #c9a84c;
    --gold-hover:    #b8942e;
    --white:         #ffffff;
    --off-white:     #f5f7fa;
    --border:        #dde2ec;
    --text-body:     #3a4559;
    --text-muted:    #667085;
  
    /* Typography */
    --font-display: 'Lora', Georgia, serif;
    --font-body:    'Source Sans 3', system-ui, sans-serif;
  
    /* Spacing */
    --section-v:  5.5rem;
    --container:  74rem;
    --gutter:     1.25rem;
  
    /* Radii */
    --radius-sm:  8px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-pill: 100px;
  
    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(27,43,69,0.08), 0 1px 2px rgba(27,43,69,0.04);
    --shadow-md:  0 4px 16px rgba(27,43,69,0.10), 0 1px 4px rgba(27,43,69,0.06);
    --shadow-lg:  0 8px 32px rgba(27,43,69,0.12), 0 2px 8px rgba(27,43,69,0.06);
  
    /* Transitions */
    --transition: 0.25s ease;
  }
  
  
  /* ============================================================
     3. BASE
     ============================================================ */
  html { scroll-behavior: smooth; }
  
  body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--white);
  }
  
  .wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  
  /* Containers */
  .section__container,
  [class*="__container"] {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  
  /* Sections */
  .section {
    padding: var(--section-v) 0;
  }
  .section--light  { background: var(--white); }
  .section--muted  { background: var(--off-white); }
  
  /* Section header */
  .section__header {
    margin-bottom: 3rem;
  }
  .section__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 0.75rem;
  }
  .section__title--light { color: var(--white); }
  .section__intro {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 38rem;
    line-height: 1.65;
  }
  
  /* Section label (eyebrow) */
  .section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.875rem;
  }
  .section-label--light { color: rgba(201,168,76,0.85); }
  
  /* Visually hidden */
  .visually-hidden {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0; padding: 0; margin: 0;
  }
  
  
  /* ============================================================
     4. BUTTONS
     ============================================================ */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    padding: 0.875rem 1.875rem;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), transform var(--transition),
                box-shadow var(--transition);
    text-decoration: none;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-2px); }
  
  /* Navy fill */
  .btn--primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }
  .btn--primary:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    box-shadow: var(--shadow-md);
  }
  
  /* Ghost (white outline, for hero) */
  .btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.65);
  }
  .btn--ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
  }
  
  /* Navy on light bg */
  .btn--navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }
  .btn--navy:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    box-shadow: var(--shadow-md);
  }
  
  /* Outline navy */
  .btn--outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
  }
  .btn--outline:hover {
    background: var(--navy);
    color: var(--white);
  }
  
  /* Gold (CTA band) */
  .btn--gold {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
    font-weight: 700;
  }
  .btn--gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  }
  
  /* Legacy .button alias — keeps other pages working */
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.875rem 1.875rem;
    border-radius: var(--radius-pill);
    border: 2px solid var(--navy);
    background: var(--navy);
    color: var(--white);
    cursor: pointer;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), transform var(--transition);
    text-decoration: none;
  }
  .button:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    transform: translateY(-2px);
  }
  .button--outline {
    background: transparent;
    color: var(--navy);
  }
  .button--outline:hover {
    background: var(--navy);
    color: var(--white);
  }
  .button--primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }
  .button--secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.65);
  }
  .button--secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
  }
  
  /* Arrow link */
  .link-arrow {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: color var(--transition);
    letter-spacing: 0.01em;
  }
  .link-arrow:hover { color: var(--gold); }
  
  
  /* ============================================================
     5. HEADER
     ============================================================ */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 6px rgba(27,43,69,0.07);
    transition: box-shadow var(--transition);
  }
  
  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  
  /* Logo */
  .header__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    position: relative;
    z-index: 2;
  }
  .header__logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition);
  }
  .header__logo:hover img { transform: scale(1.04); }
  .logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
  }
  
  /* Nav */
  .header__navigation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .menu__body {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .menu__list {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .menu__link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    position: relative;
    padding: 0.25em 0;
    transition: color var(--transition);
  }
  .menu__link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    transform-origin: left;
  }
  .menu__link:hover { color: var(--navy-dark); }
  .menu__link:hover::after { transform: scaleX(1); }
  
  /* Header CTA button */
  .actions-header__button {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--navy);
    border-radius: var(--radius-pill);
    color: var(--navy);
    background: transparent;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
    position: relative;
    z-index: 2;
  }
  .actions-header__button:hover {
    background: var(--navy);
    color: var(--white);
  }
  
  /* Hamburger */
  .icon-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 2;
  }
  .icon-menu span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    position: relative;
    transition: all 0.3s;
  }
  .icon-menu span::before,
  .icon-menu span::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s;
  }
  .icon-menu span::before { top: -7px; }
  .icon-menu span::after  { bottom: -7px; }
  .menu-open .icon-menu span { background: transparent; }
  .menu-open .icon-menu span::before { transform: rotate(45deg); top: 0; }
  .menu-open .icon-menu span::after  { transform: rotate(-45deg); bottom: 0; }
  
  
  /* ============================================================
     6. HERO
     ============================================================ */
  .hero {
    position: relative;
    min-height: 100vh;
    background: url("../img/Home_Hero.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
  }
  .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      rgba(17,30,48,0.90) 0%,
      rgba(27,43,69,0.80) 55%,
      rgba(27,43,69,0.50) 100%
    );
    z-index: 1;
  }
  .hero__container {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 8rem var(--gutter) 5rem;
    width: 100%;
  }
  .hero__content {
    max-width: 52rem;
  }
  .hero__eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }
  .hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.375rem;
    letter-spacing: -0.01em;
  }
  .hero__text {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.65;
    color: rgba(255,255,255,0.88);
    max-width: 42rem;
    margin-bottom: 2.25rem;
  }
  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
  }
  
  /* Trust strip */
  .hero__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
  }
  .hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.01em;
  }
  .hero__trust-icon {
    width: 15px;
    height: 15px;
    color: var(--gold);
    flex-shrink: 0;
  }
  .hero__trust-divider {
    display: block;
    width: 1px;
    height: 1em;
    background: rgba(255,255,255,0.3);
  }
  
  
  /* ============================================================
     7. PROBLEM SECTION
     ============================================================ */
  .problem .section__container {
    max-width: var(--container);
  }
  .problem__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .problem__left {
    position: sticky;
    top: 7rem;
  }
  .problem__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 1.25rem;
  }
  .problem__intro {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
  }
  .problem__closing {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  /* Problem cards grid */
  .problem__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .problem-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.375rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), border-color var(--transition);
  }
  .problem-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #c5ccdb;
  }
  .problem-card__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
  }
  .problem-card__icon svg {
    width: 18px;
    height: 18px;
  }
  .problem-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
    padding-top: 0.375rem;
  }
  
  
  /* ============================================================
     8. SERVICES (HOMEPAGE CARDS)
     ============================================================ */
  .services-home .section__header { text-align: left; }
  
  .services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  
  .service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  }
  .service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #b8c2d8;
    transform: translateY(-3px);
  }
  
  /* Top accent bar */
  .service-card__accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--navy);
    transition: background var(--transition);
  }
  .service-card:hover .service-card__accent {
    background: var(--gold);
  }
  
  /* Icon */
  .service-card__icon {
    width: 40px;
    height: 40px;
    color: var(--navy);
    margin-top: 0.5rem;
  }
  .service-card__icon svg {
    width: 100%;
    height: 100%;
  }
  
  .service-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
  }
  .service-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
  }
  .service-card__title a:hover { color: var(--gold); }
  
  .service-card__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
  }
  
  .services__link-wrap {
    margin-top: 2.25rem;
  }
  
  
  /* ============================================================
     9. WHY SECTION
     ============================================================ */
  .why {
    background: var(--navy);
    padding: var(--section-v) 0;
  }
  .why .section__header { text-align: left; margin-bottom: 3rem; }
  
  .why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    position: relative;
    transition: background var(--transition), border-color var(--transition);
  }
  .why-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,168,76,0.4);
  }
  .why-card__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(201,168,76,0.25);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }
  .why-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }
  .why-card__text {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.65);
    margin: 0;
  }
  
  
  /* ============================================================
     10. CTA BAND
     ============================================================ */
  .cta-band {
    background: var(--navy-dark);
    padding: 5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .cta-band__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .cta-band__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
  }
  .cta-band__text {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.70);
    margin-bottom: 1.75rem;
  }
  
  
  /* ============================================================
     11. FOOTER
     ============================================================ */
  .footer {
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.70);
  }
  .footer__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer__brand {}
  .footer__logo {
    display: inline-block;
    margin-bottom: 1rem;
  }
  .footer__logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    /* Invert if logo is dark — comment out if the logo looks fine */
    filter: brightness(0) invert(1);
    opacity: 0.9;
  }
  .footer__tagline {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
    max-width: 22rem;
  }
  .footer__col-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.125rem;
  }
  .footer__links,
  .footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }
  .footer__links a,
  .footer__contact-list a,
  .footer__contact-list li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.60);
    text-decoration: none;
    transition: color var(--transition);
    line-height: 1.5;
  }
  .footer__links a:hover,
  .footer__contact-list a:hover {
    color: var(--gold);
  }
  
  .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .footer__copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.40);
  }
  .footer__legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
  }
  .footer__legal a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color var(--transition);
  }
  .footer__legal a:hover { color: var(--gold); }
  .footer__legal span { color: rgba(255,255,255,0.25); }
  
  
  /* ============================================================
     12. INNER PAGE HERO / PAGES
     ============================================================ */
  .main {
    background: url("../img/Home_Hero.jpg") center / cover no-repeat;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
  }
  .main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(17,30,48,0.88) 0%, rgba(27,43,69,0.72) 100%);
    z-index: 1;
  }
  .main__container {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .main__container_pages {
    padding-top: 9rem;
    padding-bottom: 5rem;
  }
  .main_pages {
    min-height: 400px !important;
  }
  .main__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 600;
    color: var(--white) !important;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  }
  .main__text {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.85) !important;
    max-width: 42rem;
    margin-bottom: 2rem;
  }
  .main__text_pages {
    max-width: 36rem;
  }
  .main__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
  }
  .main__note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.70) !important;
  }
  .main__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.875rem 1.875rem;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), transform var(--transition);
  }
  .main__button:hover { transform: translateY(-2px); }
  
  
  /* ============================================================
     13. ABOUT PAGE
     ============================================================ */
  .main_about { background-image: url("../img/about_hero.jpg"); }
  
  .about__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .about__container--reverse { flex-direction: row-reverse; }
  .about-founder .about__container { padding-top: 0; }
  .about .section { padding-top: 0; }
  
  .about__image {
    flex: 0 0 auto;
    max-width: 480px;
    width: 100%;
  }
  .about__image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
  }
  .about__title { margin-bottom: 1.25rem; }
  .about__text {
    max-width: 30rem;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    color: var(--text-body);
  }
  .about__text p:not(:last-child) { margin-bottom: 1.25rem; }
  
  .about__list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0.5rem 0 1.5rem;
    color: var(--text-body);
  }
  .about__list li { margin-bottom: 0.35rem; }
  
  .outro_about { background: url("../img/Home_Outro.jpg") center / cover no-repeat; }
  
  
  /* ============================================================
     14. SERVICES PAGE
     ============================================================ */
  .main_services {
    background-image: url("../img/consulting_services.jpg");
  }
  
  .services-page__container {
    padding-top: 3rem;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .services-page.section { padding-top: 0; padding-bottom: 5rem; }
  .page__services.section { padding: 0; }
  
  .service-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
  }
  
  .services-page__item { margin-bottom: 5rem; }
  .services-page__item:not(:last-child) {
    padding-bottom: 5rem;
    margin-bottom: 5rem;
    border-bottom: 1px solid var(--border);
  }
  .services-page__column {
    display: flex;
    align-items: center;
    gap: 5rem;
  }
  .services-page__column--reverse { flex-direction: row-reverse; }
  .services-page__title { margin-bottom: 1.25rem; }
  .services-page__text {
    margin-bottom: 0;
    max-width: 36rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-muted);
  }
  .services-page__text p:not(:last-child) { margin-bottom: 1rem; }
  .services-page__img { max-width: 480px; flex: 0 0 auto; width: 100%; }
  .services-page__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }
  .services__container { padding-top: 5rem; padding-bottom: 5rem; }
  .services__title { text-align: left; margin-bottom: 1.25rem; }
  .services__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .services__row--six { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  
  .services-page__cta {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
  }
  .services-page__cta p {
    max-width: 36rem;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
    color: var(--text-muted);
  }
  .services-page__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  /* Services page detail card grid */
  .services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 0;
  }

  .service-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  }

  .service-detail-card:hover {
    border-color: rgba(201, 168, 76, 0.45);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }

  .service-detail-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1.25rem;
    border-radius: var(--radius-sm);
    background: var(--off-white);
    color: var(--navy);
    transition: background var(--transition), color var(--transition);
  }

  .service-detail-card__icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .service-detail-card:hover .service-detail-card__icon {
    background: rgba(27, 43, 69, 0.08);
    color: var(--gold);
  }

  .service-detail-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy);
    margin-bottom: 0.75rem;
  }

  .service-detail-card__text {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
  }

  /* Services page — decision layout */
  .services-intro {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .services-intro__title {
    max-width: 36rem;
    margin-bottom: 1.25rem;
  }
  .services-intro__text {
    max-width: 44rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
  }

  .services-pathways__header {
    margin-bottom: 2.5rem;
  }
  .services-pathways__title {
    margin-bottom: 0;
  }
  .services-pathways__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .pathway-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem 2.5rem;
    align-items: start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2.25rem 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
  }
  .pathway-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: var(--shadow-md);
  }
  .pathway-card__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.02em;
    min-width: 3rem;
  }
  .pathway-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.25;
  }
  .pathway-card__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
  }
  .pathway-card__best-for {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 1.25rem;
  }
  .pathway-card__includes {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .pathway-card__includes li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.4rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--text-muted);
  }
  .pathway-card__includes li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--navy-light);
  }
  .pathway-card__action {
    display: flex;
    align-items: flex-start;
    padding-top: 0.25rem;
  }
  .pathway-card__action .btn {
    white-space: nowrap;
  }

  .services-support__header {
    margin-bottom: 2rem;
  }
  .services-support__title {
    margin-bottom: 0;
  }

  .services-accordion {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }
  .services-accordion__item {
    border-bottom: 1px solid var(--border);
  }
  .services-accordion__item:last-child {
    border-bottom: none;
  }
  .services-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.75rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    transition: background var(--transition), color var(--transition);
  }
  .services-accordion__trigger:hover {
    background: var(--off-white);
  }
  .services-accordion__item.active .services-accordion__trigger {
    background: var(--off-white);
    color: var(--navy);
  }
  .services-accordion__chevron {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    transform: rotate(45deg);
    transition: transform var(--transition), border-color var(--transition);
    margin-top: -4px;
  }
  .services-accordion__item.active .services-accordion__chevron {
    transform: rotate(-135deg);
    margin-top: 4px;
    border-color: var(--gold);
  }
  .services-accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .services-accordion__panel > *:first-child {
    padding-top: 0;
  }
  .services-accordion__desc,
  .services-accordion__when-label,
  .services-accordion__when {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .services-accordion__desc {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-muted);
    padding-bottom: 0.75rem;
    margin: 0;
  }
  .services-accordion__when-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 0.5rem;
    padding-bottom: 0;
  }
  .services-accordion__when {
    list-style: none;
    padding-bottom: 1.5rem;
    margin: 0;
  }
  .services-accordion__when li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.35rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--text-body);
  }
  .services-accordion__when li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--navy-light);
    font-weight: 600;
  }

  .services-final-cta {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }
  .services-final-cta__container {
    text-align: center;
    max-width: 40rem;
  }
  .services-final-cta__title {
    margin-bottom: 1rem;
  }
  .services-final-cta__text {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 2rem;
  }
  .services-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  /* Item services (services page grid cards) */
  .item-services { display: flex; flex-direction: column; height: 100%; }
  .item-services__title { font-size: 1.35rem; font-weight: 600; margin-bottom: 0.75rem; }
  .item-services__text { max-width: 21.5rem; line-height: 1.6; margin-bottom: 2rem; flex-grow: 1; }
  .item-services__button {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
    border-radius: var(--radius-pill);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background var(--transition), color var(--transition);
  }
  .item-services__button:hover { background: var(--navy); color: var(--white); }
  .outro_services { background: url("../img/Home_Outro.jpg") center / cover no-repeat; position: relative; }
  .outro_services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17,30,48,0.75);
    z-index: 1;
  }
  
  
  /* ============================================================
     15. OUTRO (legacy, used on other pages)
     ============================================================ */
  .outro_home {
    background: url("../img/Home_Outro.jpg") center / cover no-repeat;
    position: relative;
  }
  .outro_home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17,30,48,0.75);
    z-index: 1;
  }
  .outro__container {
    padding: 8rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .outro__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--white) !important;
    margin-bottom: 1.25rem;
  }
  .outro__text {
    max-width: 34rem;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.80) !important;
  }
  .outro__button { padding: 1rem 2.5rem; }
  
  
  /* ============================================================
     16. CONTACT PAGE
     ============================================================ */
  .main_contact { background-image: url("../img/contact_hero.jpg"); }
  
  .contact.section { padding-top: 3rem; padding-bottom: 5rem; }
  .contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .contact__intro { grid-column: 1 / -1; }
  .contact__title {
    font-family: var(--font-display);
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
  }
  .contact__lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 40rem;
    margin-bottom: 1.5rem;
  }
  .contact__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .contact__details-block {
    padding: 2rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
  }
  .contact__details-heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--navy);
  }
  .contact__address {
    font-style: normal;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
  }
  .contact__address a { color: var(--gold); text-decoration: none; }
  .contact__address a:hover { text-decoration: underline; }
  .contact__form-wrapper {
    background: var(--off-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    width: 100%;
  }
  .contact__form-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--navy);
  }
  .contact__form { display: flex; flex-direction: column; gap: 1.125rem; }
  .contact__input {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    color: var(--text-body);
  }
  .contact__input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27,43,69,0.08);
  }
  .contact__form-button {
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 0;
    cursor: pointer;
    transition: background var(--transition);
    width: 100%;
  }
  .contact__form-button:hover { background: var(--navy-dark); }
  .contact__whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 0;
    transition: background var(--transition);
    margin-top: 0.75rem;
    width: 100%;
    border: none;
    text-decoration: none;
  }
  .contact__whatsapp-button:hover { background: #1ebc59; }
  .contact__whatsapp-icon {
    margin-right: 0.5em;
    width: 1.2em;
    height: 1.2em;
  }
  
  /* Connect contact (contact page icons) */
  .connect-contact {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .connect-contact__item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-body);
    transition: color var(--transition);
  }
  .connect-contact__item:hover { color: var(--navy); }
  .connect-contant__type {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    color: var(--text-muted);
  }
  .connect-contact__label {
    font-size: 1.05rem;
    line-height: 1.4;
  }
  .contact__links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  iframe { width: 100%; height: 400px; filter: grayscale(100%); }
  
  
  /* ============================================================
     17. THANK YOU PAGE
     ============================================================ */
  .thankyou__wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .thankyou__main { text-align: center; padding: 2rem var(--gutter); }
  .thankyou__text { margin-bottom: 2rem; }
  .thankyou__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
  }
  
  
  /* ============================================================
     18. TITLE UTILITIES
     ============================================================ */
  .title--section {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
  }
  .title--block {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--navy);
  }
  .title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--navy);
  }
  
  
  /* ============================================================
     19. RESULTS (legacy)
     ============================================================ */
  .results__container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 5rem 0;
    background: var(--off-white);
  }
  .results__title {
    margin-bottom: 3rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--navy);
  }
  .results__item {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    line-height: 1.6;
    padding-left: 2rem;
    position: relative;
  }
  .results__item::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #28a745;
    font-weight: bold;
  }
  
  
  /* ============================================================
     20. MOBILE NAVIGATION
     ============================================================ */
  @media (max-width: 1023px) {
    .icon-menu { display: block; }
  
    .menu__body {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(255,255,255,0.98);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transform: translateX(-100%);
      transition: transform 0.3s ease-in-out;
      z-index: 1;
    }
    .menu-open .menu__body { transform: translateX(0); }
    .menu__list { flex-direction: column; gap: 1.75rem; text-align: center; }
    .menu__link { font-size: 1.35rem; display: block; width: 100%; }
    .actions-header__button { margin-top: 1.5rem; font-size: 1rem; padding: 0.875rem 2rem; }
  }
  
  
  /* ============================================================
     21. RESPONSIVE BREAKPOINTS
     ============================================================ */
  @media (max-width: 1100px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .services__row, .services__row--six { grid-template-columns: repeat(2, 1fr); }
    .services-detail-grid { grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (max-width: 960px) {
    .problem__layout { grid-template-columns: 1fr; gap: 3rem; }
    .problem__left { position: static; }
    .problem__grid { grid-template-columns: 1fr 1fr; }
    .why__grid { grid-template-columns: 1fr; gap: 1rem; }
    .cta-band__container { grid-template-columns: 1fr; gap: 1.75rem; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .services-page__column { flex-direction: column !important; gap: 2rem; }
    .services-page__img { max-width: 100%; order: -1; }
    .services-page__content { text-align: left; }
  }
  
  @media (max-width: 768px) {
    :root { --section-v: 3.75rem; }
  
    .hero__container { padding-top: 7rem; padding-bottom: 4rem; }
    .hero__trust { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .hero__trust-divider { display: none; }
  
    .services__grid { grid-template-columns: 1fr; }
    .services__row, .services__row--six { grid-template-columns: 1fr; }
    .services-detail-grid { grid-template-columns: 1fr; }
    .pathway-card {
      grid-template-columns: 1fr;
      gap: 1.25rem;
      padding: 1.75rem 1.5rem;
    }
    .pathway-card__number {
      font-size: 2rem;
    }
    .pathway-card__action {
      padding-top: 0;
    }
    .pathway-card__action .btn {
      width: 100%;
      justify-content: center;
    }
    .problem__grid { grid-template-columns: 1fr; }
  
    .about__container,
    .about__container--reverse {
      flex-direction: column;
      text-align: left;
      gap: 2.5rem;
    }
    .about__image { max-width: 100%; }
  
    .contact__container { grid-template-columns: 1fr; }
  
    .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer__bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  }
  
  @media (max-width: 540px) {
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; text-align: center; justify-content: center; }
    .contact__form-wrapper { padding: 1.5rem 1rem; }
  }


/* ============================================================
   PATCH: inner page compatibility and legacy footer support
   ============================================================ */

/* Structural wrappers used by inner pages */
.page__main,
.page__about,
.page__contact,
.page__outro,
.page__content {
  display: block;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.header__menu {
  display: flex;
}

.menu__item {
  margin: 0;
}

.about__content {
  flex: 1 1 auto;
  min-width: 0;
}

/* About page button */
.about__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  margin-top: 0.5rem;
}

.about__button:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
}

/* Contact page aliases and connect block */
.contact__button {
  width: 100%;
}

.contact__connect {
  margin-bottom: 1.5rem;
}

.connect-contact__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connect-contact__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.connect-contact__content {
  display: flex;
  flex-direction: column;
}

/* Old footer links */
.footer__policy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.50);
}

.footer__policy a {
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__policy a:hover {
  color: var(--gold);
}

.footer__policy span {
  color: rgba(255,255,255,0.25);
  margin: 0 0.375rem;
}

/* Legacy 3-column footer layout for inner pages */
.footer--legacy .footer__container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer--legacy .footer__policy {
  justify-self: start;
}

.footer--legacy .footer__logo {
  justify-self: center;
}

.footer--legacy .footer__copyright {
  justify-self: end;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.40);
  text-align: right;
}

@media (max-width: 768px) {
  .footer--legacy .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
  }

  .footer--legacy .footer__policy,
  .footer--legacy .footer__logo,
  .footer--legacy .footer__copyright {
    justify-self: center;
  }
}