/*
Theme Name:  AccountEdge
Description: general
Version:     2.4.0
Author:      Fixit E.E.
Author URI:  https://www.fixit.gr
Text Domain: account-edge
*/

:root {
    --color-content-primary:   #0f2a44;
    --color-content-secondary: #1f4e79;
    --color-content-accent:    #c9a24a;
    --color-content-bg:        #f7f5f0;
    --fx-hero-gradient: linear-gradient(148deg, #0f2a44 0%, #081726 100%);
    --color-content-text:      #243444;
    --fx-font-heading-override: Fraunces, Georgia, serif;
    --fx-font-body-override: Inter, system-ui, sans-serif;

    --ae-ink:       #0f2a44;
    --ae-ink-soft:  #35506a;
    --ae-gold:      #c9a24a;
    --ae-paper:     #f7f5f0;
    --ae-paper-alt: #eeeae1;
    --ae-rule:      rgba(15, 42, 68, 0.16);
    --ae-rule-soft: rgba(15, 42, 68, 0.09);
}

body,
body input,
body textarea,
body select,
body button {
    font-family: Inter, system-ui, -apple-system, sans-serif;
    color: var(--ae-ink-soft);
    -webkit-font-smoothing: antialiased;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-family: Fraunces, Georgia, "Times New Roman", serif;
    color: var(--ae-ink);
    font-weight: 600;
    letter-spacing: -0.015em;
}

body h1 {
    font-size: clamp(2.4rem, 4.4vw, 3.6rem);
    line-height: 1.08;
}

body h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.15;
}

body h3 {
    font-size: clamp(1.15rem, 1.5vw, 1.4rem);
    line-height: 1.3;
    letter-spacing: -0.005em;
}

body p,
body li {
    line-height: 1.65;
}

body .fx-header {
    background: rgba(247, 245, 240, 0.94);
    backdrop-filter: saturate(1.4) blur(10px);
    border-bottom: 1px solid var(--ae-rule);
    box-shadow: none;
}

body .fx-header .fx-logo {
    font-family: Fraunces, Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ae-ink);
}

body .fx-nav-list {
    gap: 4px;
}

body .fx-nav-list > li {
    position: relative;
}

body .fx-nav-list .fx-nav-link {
    font-family: Inter, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--ae-ink-soft);
    padding: 10px 12px;
    border-radius: 0;
    transition: color 0.2s ease;
}

body .fx-nav-list > li > .fx-nav-link {
    position: relative;
}

body .fx-nav-list > li > .fx-nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 1px;
    background: var(--ae-gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.24s ease;
}

body .fx-nav-list > li:hover > .fx-nav-link,
body .fx-nav-list > li:focus-within > .fx-nav-link {
    color: var(--ae-ink);
}

body .fx-nav-list > li:hover > .fx-nav-link::after,
body .fx-nav-list > li:focus-within > .fx-nav-link::after {
    transform: scaleX(1);
}

body .fx-nav-list .sub-menu {
    display: block;
    position: absolute;
    top: calc(100% + 6px);
    left: -8px;
    z-index: 60;
    min-width: 246px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: #fffdf9;
    border: 1px solid var(--ae-rule);
    border-top: 2px solid var(--ae-gold);
    box-shadow: 0 18px 44px rgba(15, 42, 68, 0.13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

body .fx-nav-list > li:hover > .sub-menu,
body .fx-nav-list > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body .fx-nav-list .sub-menu li {
    list-style: none;
    margin: 0;
}

body .fx-nav-list .sub-menu .fx-nav-link {
    display: block;
    padding: 9px 20px;
    font-size: 14px;
    color: var(--ae-ink-soft);
    border-left: 2px solid transparent;
}

body .fx-nav-list .sub-menu .fx-nav-link:hover {
    background: rgba(201, 162, 74, 0.09);
    border-left-color: var(--ae-gold);
    color: var(--ae-ink);
}

body .fx-nav-list .sub-menu .fx-nav-link::after {
    display: none;
}

body .fx-nav-cta.t-btn-primary {
    background: var(--ae-ink);
    color: #fffdf9;
    border-radius: 0;
    font-family: Inter, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 11px 20px;
    box-shadow: none;
}

body .fx-nav-cta.t-btn-primary:hover {
    background: var(--ae-gold);
    color: var(--ae-ink);
}

body.fx-nav-open .fx-nav-mobile {
    max-height: 82vh;
    overflow-y: auto;
}

body .fx-nav-mobile {
    background: #fffdf9;
    border-top: 1px solid var(--ae-rule);
}

body .fx-nav-mobile-list a {
    border-radius: 0;
    border-bottom: 1px solid var(--ae-rule-soft);
    color: var(--ae-ink);
    font-size: 15px;
    padding: 13px 4px;
}

body .fx-nav-mobile-list a:hover {
    background: transparent;
    color: var(--ae-gold);
}

body .fx-nav-mobile-list li.ae-has-sub {
    position: relative;
}

body .fx-nav-mobile-list li.ae-has-sub > a {
    padding-right: 56px;
}

body .ae-subtoggle {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 47px;
    padding: 0;
    background: transparent;
    border: 0;
    border-left: 1px solid var(--ae-rule-soft);
    color: var(--ae-ink-soft);
    cursor: pointer;
}

body .ae-subtoggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.28s ease;
}

body .fx-nav-mobile-list li.ae-open > .ae-subtoggle {
    color: var(--ae-gold);
}

body .fx-nav-mobile-list li.ae-open > .ae-subtoggle svg {
    transform: rotate(180deg);
}

body .fx-nav-mobile-list .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: var(--ae-paper);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.3s ease, visibility 0.3s;
}

body .fx-nav-mobile-list li.ae-open > .sub-menu {
    max-height: 480px;
    visibility: visible;
}

body .fx-nav-mobile-list .sub-menu a {
    font-size: 14px;
    color: var(--ae-ink-soft);
    padding-left: 22px;
    border-bottom: 1px solid rgba(15, 42, 68, 0.05);
}

body .fx-nav-mobile-list .sub-menu > li:last-child > a {
    border-bottom: 0;
}

body .t-hero-full {
    position: relative;
    min-height: 78vh;
}

body .t-hero-full::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 23, 38, 0.62) 0%, rgba(8, 23, 38, 0.44) 42%, rgba(8, 23, 38, 0.78) 100%);
    pointer-events: none;
}

body .t-hero-full > .t-container {
    position: relative;
    z-index: 1;
}

body .t-hero-full > .t-container {
    align-items: center;
    text-align: center;
}

body .t-hero-full .t-hero-btns,
body .t-section .t-hero-btns,
body .t-section .t-section-cta,
body .t-section .t-cta-btns {
    justify-content: center;
}

body .t-hero-full h1 {
    color: #fffdf9;
    text-shadow: none;
    font-weight: 400;
    max-width: 26ch;
    text-wrap: balance;
}

body .t-hero-full .t-hero-eyebrow,
body .t-hero-full [class*="eyebrow"] {
    color: var(--ae-gold);
    font-family: Inter, system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-shadow: none;
}

body .t-hero-full p {
    color: rgba(255, 253, 249, 0.86);
    text-shadow: none;
    font-size: 1.05rem;
    max-width: 640px;
    margin-inline: auto;
}

body .t-hero-full .t-btn-primary {
    background: var(--ae-gold);
    color: var(--ae-ink);
    border-radius: 0;
    box-shadow: none;
    font-family: Inter, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 15px 30px;
}

body .t-hero-full .t-btn-primary:hover {
    background: #fffdf9;
    color: var(--ae-ink);
}

body .t-hero-full .t-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 253, 249, 0.42);
    border-radius: 0;
    color: #fffdf9;
    box-shadow: none;
    font-family: Inter, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 15px 30px;
    text-shadow: none;
}

body .t-hero-full .t-btn-outline:hover {
    background: rgba(255, 253, 249, 0.12);
    border-color: #fffdf9;
}

body .t-section {
    padding-block: 76px;
}

body .t-section--soft {
    background: var(--ae-paper);
}

body .t-section--white {
    background: #fffdf9;
}

body .t-section-title {
    text-align: center;
}

body .t-section-title::after {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    margin: 18px auto 0;
    background: var(--ae-gold);
}

body .ae-stats {
    background: #fffdf9;
    padding-block: 62px;
}

body .ae-stats .t-section-title {
    font-family: Inter, system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ae-ink-soft);
    margin-bottom: 40px;
}

body .ae-stats .t-section-title::after {
    display: none;
}

body .ae-stats .t-grid > div {
    position: relative;
    padding-inline: 12px;
}

body .ae-stats .t-grid > div + div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--ae-rule);
}

body .ae-stats .t-grid > div > div:first-child {
    font-family: Fraunces, Georgia, serif;
    font-weight: 400;
    color: var(--ae-ink);
    letter-spacing: -0.02em;
}

body .ae-stats .t-grid > div > div + div {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ae-ink-soft);
}

body .ae-quotes {
    border-radius: 0;
    margin: 0;
    background: var(--ae-ink);
}

body .ae-quotes .t-card {
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(255, 253, 249, 0.22);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 26px 0 0;
}

body .ae-quotes .t-card-body {
    font-family: Fraunces, Georgia, serif;
    font-size: 1.02rem;
    line-height: 1.55;
    color: rgba(255, 253, 249, 0.9);
}

body .ae-quotes .t-card-title {
    font-family: Inter, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ae-gold);
    margin-top: 18px;
}

body .ae-services,
body .ae-sectors {
    background: var(--ae-paper);
}

body .ae-process {
    background: #fffdf9;
}

body .ae-services .t-grid,
body .ae-process .t-grid {
    display: block;
    max-width: 940px;
    margin-inline: auto;
}

body .ae-services .t-card,
body .ae-process .t-card {
    display: grid;
    grid-template-columns: 78px 1fr;
    align-items: start;
    gap: 0 28px;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--ae-rule);
    border-radius: 0;
    box-shadow: none;
    padding: 30px 0;
    transition: background 0.25s ease;
}

body .ae-services .t-card:last-child,
body .ae-process .t-card:last-child {
    border-bottom: 1px solid var(--ae-rule);
}

body .ae-services .t-card:hover,
body .ae-process .t-card:hover {
    background: rgba(201, 162, 74, 0.06);
}

body .ae-services .t-card::before,
body .ae-process .t-card::before {
    content: attr(data-ae-index);
    grid-row: 1 / span 2;
    font-family: Fraunces, Georgia, serif;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--ae-gold);
    padding-top: 4px;
}

body .ae-services .t-card-img,
body .ae-process .t-card-img,
body .ae-sectors .t-card-img {
    display: none;
}

body .ae-services .t-card-title,
body .ae-process .t-card-title {
    grid-column: 2;
    margin: 0 0 6px;
    font-size: 1.35rem;
}

body .ae-services .t-card-body,
body .ae-process .t-card-body {
    grid-column: 2;
    max-width: 62ch;
    color: var(--ae-ink-soft);
}

body .ae-sectors .t-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 56px;
    max-width: 940px;
    margin-inline: auto;
}

body .ae-sectors .t-card {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--ae-rule);
    border-radius: 0;
    box-shadow: none;
    padding: 22px 0;
}

body .ae-sectors .t-card-title {
    font-size: 1.15rem;
    margin: 0 0 4px;
}

body .ae-sectors .t-card-body {
    font-size: 0.94rem;
    color: var(--ae-ink-soft);
}

body .ae-journal {
    background: var(--ae-paper-alt);
}

body .ae-journal .t-card {
    background: #fffdf9;
    border: 1px solid var(--ae-rule-soft);
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

body .ae-journal .t-card-title {
    font-size: 1.2rem;
}

body .ae-journal .t-card-body {
    font-family: Fraunces, Georgia, serif;
    color: var(--ae-ink-soft);
}

body .ae-team {
    background: #fffdf9;
}

body .ae-team .t-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

body .ae-team .t-card {
    background: transparent;
    border: 0;
    border-top: 2px solid var(--ae-ink);
    border-radius: 0;
    box-shadow: none;
    padding: 22px 0 0;
}

body .ae-team .t-card::before {
    content: attr(data-ae-monogram);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    font-family: Fraunces, Georgia, serif;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    color: var(--ae-ink);
    background: var(--ae-paper);
    border: 1px solid var(--ae-rule);
}

body .ae-team .t-card-title {
    font-size: 1.08rem;
    margin-bottom: 4px;
}

body .ae-team .t-card-body {
    font-size: 0.92rem;
}

body .ae-press,
body .ae-trust {
    background: var(--ae-paper);
    padding-block: 54px;
}

body .ae-press .t-section-title,
body .ae-trust .t-section-title {
    font-family: Inter, system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ae-ink-soft);
}

body .ae-press .t-section-title::after,
body .ae-trust .t-section-title::after {
    display: none;
}

body .ae-newsletter {
    background: var(--ae-ink);
    border-radius: 0;
    margin: 0;
}

body .ae-newsletter .fx-newsletter {
    margin-inline: auto;
}

body.fx-skin-glass {
    background: var(--ae-paper);
    background-attachment: scroll;
}

body.fx-skin-glass .t-section,
body.fx-skin-glass .t-section--soft,
body.fx-skin-glass .ae-services,
body.fx-skin-glass .ae-sectors {
    background: var(--ae-paper);
}

body.fx-skin-glass .t-section--white,
body.fx-skin-glass .ae-stats,
body.fx-skin-glass .ae-process,
body.fx-skin-glass .ae-team {
    background: #fffdf9;
}

body.fx-skin-glass .ae-journal {
    background: var(--ae-paper-alt);
}

body.fx-skin-glass .t-section--navy {
    background: var(--ae-ink);
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    box-shadow: none;
}

body.fx-skin-glass .t-card {
    background: #fffdf9;
    backdrop-filter: none;
    border: 1px solid var(--ae-rule-soft);
    border-radius: 0;
    box-shadow: none;
    padding: 26px 24px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

body.fx-skin-glass .t-card:hover {
    transform: none;
    border-color: var(--ae-gold);
    box-shadow: none;
}

body.fx-skin-glass .t-card-img,
body.fx-skin-glass .t-card-img img {
    border-radius: 0;
    box-shadow: none;
}

body.fx-skin-glass .t-card-img {
    margin: -26px -24px 20px;
}

body.fx-skin-glass .t-btn-primary,
body.fx-skin-glass .t-btn-ghost,
body.fx-skin-glass .t-btn-outline {
    border-radius: 0;
    box-shadow: none;
    background-image: none;
}

body.fx-skin-glass .t-btn-primary {
    background: var(--ae-ink);
    color: #fffdf9;
    padding: 15px 30px;
}

body.fx-skin-glass .t-btn-primary:hover {
    transform: none;
    background: var(--ae-gold);
    color: var(--ae-ink);
}

body.fx-skin-glass .t-hero-full .t-btn-primary,
body.fx-skin-glass .t-section--navy .t-btn-primary,
body .t-section--navy .t-btn-primary {
    background: var(--ae-gold);
    color: var(--ae-ink);
}

body.fx-skin-glass .t-hero-full .t-btn-primary:hover,
body.fx-skin-glass .t-section--navy .t-btn-primary:hover,
body .t-section--navy .t-btn-primary:hover {
    background: #fffdf9;
    color: var(--ae-ink);
}

body.fx-skin-glass .t-btn-ghost,
body.fx-skin-glass .t-hero-full .t-btn-ghost {
    background: transparent;
    backdrop-filter: none;
    border: 1px solid rgba(255, 253, 249, 0.42);
    color: #fffdf9;
}

body.fx-skin-glass .ae-quotes .t-card,
body.fx-skin-glass .ae-services .t-card,
body.fx-skin-glass .ae-process .t-card,
body.fx-skin-glass .ae-sectors .t-card,
body.fx-skin-glass .ae-team .t-card {
    background: transparent;
    border: 0;
    padding: 0;
}

body.fx-skin-glass .ae-quotes .t-card {
    border-top: 1px solid rgba(255, 253, 249, 0.22);
    padding: 26px 0 0;
}

body.fx-skin-glass .ae-services .t-card,
body.fx-skin-glass .ae-process .t-card {
    border-top: 1px solid var(--ae-rule);
    padding: 30px 0;
}

body.fx-skin-glass .ae-services .t-card:last-child,
body.fx-skin-glass .ae-process .t-card:last-child {
    border-bottom: 1px solid var(--ae-rule);
}

body.fx-skin-glass .ae-sectors .t-card {
    border-bottom: 1px solid var(--ae-rule);
    padding: 22px 0;
}

body.fx-skin-glass .ae-team .t-card {
    border-top: 2px solid var(--ae-ink);
    padding: 22px 0 0;
}

body.fx-skin-glass .ae-journal .t-card {
    background: #fffdf9;
    border: 1px solid var(--ae-rule-soft);
    padding: 0 0 26px;
}

body.fx-skin-glass .ae-journal .t-card-img {
    margin: 0 0 20px;
    height: 200px;
}

body.fx-skin-glass .ae-journal .t-card-title,
body.fx-skin-glass .ae-journal .t-card-body {
    padding-inline: 24px;
}

body.fx-skin-glass .t-hero-full {
    background: var(--ae-ink);
}

body.fx-skin-glass .ae-newsletter .fx-newsletter input[type="email"],
body .ae-newsletter .fx-newsletter input[type="email"] {
    background: rgba(255, 253, 249, 0.07);
    border-color: rgba(255, 253, 249, 0.34);
    color: #fffdf9;
}

body.fx-skin-glass .ae-newsletter .fx-newsletter input[type="email"]::placeholder,
body .ae-newsletter .fx-newsletter input[type="email"]::placeholder {
    color: rgba(255, 253, 249, 0.55);
}

body.fx-skin-glass .ae-newsletter .t-btn-primary,
body.fx-skin-glass .ae-newsletter button[type="submit"] {
    background: var(--ae-gold);
    color: var(--ae-ink);
    font-family: Inter, system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
}

body.fx-skin-glass .ae-newsletter .t-btn-primary:hover,
body.fx-skin-glass .ae-newsletter button[type="submit"]:hover {
    background: #fffdf9;
    color: var(--ae-ink);
}

body.fx-skin-glass .ae-story img,
body.fx-skin-glass .t-section img {
    border-radius: 0;
}

body .t-footer,
body .t-rich-footer {
    margin-top: 0;
    background: var(--ae-ink);
    color: rgba(255, 253, 249, 0.7);
    padding-top: 62px;
    padding-bottom: 0;
}

body section.t-section--navy:last-of-type {
    padding-bottom: 44px;
}

body section.t-section--navy:last-of-type + .t-footer,
body section.t-section--navy:last-of-type ~ .t-footer {
    padding-top: 0;
}

body section.t-section--navy:last-of-type ~ .t-footer .t-rich-footer-grid {
    padding-top: 46px;
    border-top: 1px solid rgba(255, 253, 249, 0.14);
}

body .t-rich-footer-grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 48px;
    padding-bottom: 52px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 253, 249, 0.14);
}

body .t-rich-footer-col {
    text-align: left;
    min-width: 0;
}

body .t-rich-footer-col a,
body .t-rich-footer-col li {
    overflow-wrap: anywhere;
}

body .t-rich-footer-col h3,
body .t-rich-footer-col h4 {
    margin: 0 0 20px;
    font-family: Inter, system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--ae-gold);
}

body .t-rich-footer-col p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 253, 249, 0.62);
}

body .t-rich-footer-col ul,
body .t-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

body .t-rich-footer-col li {
    margin-bottom: 10px;
    font-size: 0.93rem;
}

body .t-rich-footer-col a {
    color: rgba(255, 253, 249, 0.78);
    text-decoration: none;
    transition: color 0.22s ease;
}

body .t-rich-footer-col a:hover {
    color: var(--ae-gold);
}

body .t-rich-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

body .t-rich-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 253, 249, 0.22);
    color: rgba(255, 253, 249, 0.78);
    transition: border-color 0.22s ease, color 0.22s ease;
}

body .t-rich-footer-social a:hover {
    border-color: var(--ae-gold);
    color: var(--ae-gold);
}

body .t-rich-footer-social svg {
    width: 17px;
    height: 17px;
}

body .t-rich-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 22px 0 26px;
    font-size: 0.85rem;
    color: rgba(255, 253, 249, 0.5);
    border-top: 0;
}

body .t-rich-footer-bottom a {
    color: rgba(255, 253, 249, 0.62);
}

body .ae-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 20px 0 0;
    font-size: 0.85rem;
}

body .ae-footer-legal a {
    color: rgba(255, 253, 249, 0.58);
    text-decoration: none;
}

body .ae-footer-legal a:hover {
    color: var(--ae-gold);
}

@media (max-width: 600px) {
    body .t-rich-footer-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }
}

body .ae-note {
    background: var(--ae-paper);
    padding: 78px 0 66px;
}

body .ae-note-sheet {
    max-width: 760px;
    margin-inline: auto;
    background: #fffdf9;
    border: 1px solid var(--ae-rule);
    border-top: 3px solid var(--ae-ink);
    padding: 54px 64px 48px;
}

body .ae-note-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ae-rule);
    font-family: Inter, system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ae-ink-soft);
}

body .ae-note-sheet h1 {
    margin: 34px 0 0;
    font-size: clamp(1.95rem, 3.4vw, 2.85rem);
    line-height: 1.12;
    font-weight: 400;
    color: var(--ae-ink);
    max-width: 20ch;
}

body .ae-note-lede {
    margin: 24px 0 0;
    font-family: Fraunces, Georgia, serif;
    font-size: 1.16rem;
    line-height: 1.5;
    color: var(--ae-ink);
}

body .ae-note-body {
    margin: 20px 0 0;
    max-width: 62ch;
    color: var(--ae-ink-soft);
}

body .ae-note-sign {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 34px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--ae-rule);
}

body .ae-note-sign-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: none;
    background: var(--ae-paper);
    border: 1px solid var(--ae-rule);
    font-family: Fraunces, Georgia, serif;
    font-size: 1rem;
    color: var(--ae-ink);
}

body .ae-note-sign-who {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: var(--ae-ink-soft);
}

body .ae-note-sign-who strong {
    font-family: Fraunces, Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ae-ink);
}

body .ae-note .t-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

body .ae-note .t-btn-primary {
    background: var(--ae-ink);
    color: #fffdf9;
}

body .ae-note .t-btn-primary:hover {
    background: var(--ae-gold);
    color: var(--ae-ink);
}

body .ae-note .t-btn-outline {
    background: transparent;
    border: 1px solid var(--ae-rule);
    color: var(--ae-ink);
}

body .ae-note .t-btn-outline:hover {
    border-color: var(--ae-gold);
    color: var(--ae-gold);
}

body .ae-search-head .t-lead {
    max-width: 54ch;
}

body .ae-search-form {
    display: flex;
    gap: 10px;
    width: min(520px, 100%);
    margin: 30px auto 0;
}

body .ae-search-form input[type="search"] {
    flex: 1 1 auto;
    min-width: 0;
    background: rgba(255, 253, 249, 0.08);
    border: 1px solid rgba(255, 253, 249, 0.32);
    border-radius: 0;
    padding: 13px 16px;
    color: #fffdf9;
    font-family: Inter, system-ui, sans-serif;
    font-size: 15px;
}

body .ae-search-form input[type="search"]::placeholder {
    color: rgba(255, 253, 249, 0.55);
}

body .ae-search-form .t-btn-primary {
    width: auto;
    flex: 0 0 auto;
    background: var(--ae-gold);
    color: var(--ae-ink);
    white-space: nowrap;
}

body .ae-result-list {
    counter-reset: none;
    list-style: none;
    max-width: 900px;
    margin-inline: auto;
    padding: 0;
    border-top: 1px solid var(--ae-rule);
}

body .ae-result {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0 26px;
    padding: 28px 0;
    border-bottom: 1px solid var(--ae-rule);
}

body .ae-result-index {
    font-family: Fraunces, Georgia, serif;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--ae-gold);
    padding-top: 5px;
}

body .ae-result-title {
    margin: 0 0 8px;
    font-size: 1.35rem;
}

body .ae-result-title a {
    color: var(--ae-ink);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.22s ease;
}

body .ae-result-title a:hover {
    border-bottom-color: var(--ae-gold);
}

body .ae-result-excerpt {
    margin: 0 0 10px;
    max-width: 66ch;
    color: var(--ae-ink-soft);
}

body .ae-result-link {
    font-family: Inter, system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--ae-ink-soft);
    text-decoration: none;
    opacity: 0.75;
}

body .ae-result-link:hover {
    color: var(--ae-gold);
    opacity: 1;
}

body .ae-search-results .pagination,
body .ae-search-results .nav-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

body .ae-search-results .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--ae-rule);
    color: var(--ae-ink);
    text-decoration: none;
}

body .ae-search-results .page-numbers.current,
body .ae-search-results .page-numbers:hover {
    background: var(--ae-ink);
    border-color: var(--ae-ink);
    color: #fffdf9;
}

body .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;
}

body .fx-nav-search-form {
    background: #fffdf9;
    border-top: 1px solid var(--ae-rule);
    box-shadow: 0 14px 30px rgba(15, 42, 68, 0.1);
}

body .fx-nav-search-form form {
    gap: 10px;
    align-items: stretch;
}

body .fx-nav-search-form input[type="search"] {
    flex: 1 1 auto;
    min-width: 0;
    background: var(--ae-paper);
    border-color: var(--ae-rule);
    color: var(--ae-ink);
    font-family: Inter, system-ui, sans-serif;
    font-size: 15px;
}

body .fx-nav-search-form .t-btn-primary {
    width: auto;
    flex: 0 0 auto;
    background: var(--ae-ink);
    color: #fffdf9;
    padding: 11px 22px;
    font-family: Inter, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

body .fx-nav-search-form .t-btn-primary:hover {
    background: var(--ae-gold);
    color: var(--ae-ink);
}

body .ae-strip {
    background: #fffdf9;
    border-block: 1px solid var(--ae-rule);
    padding: 30px 0;
}

body .fx-header + .ae-strip,
body .ae-band + .ae-strip {
    border-top: 0;
}

body .ae-strip-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
}

body .ae-strip-list > div {
    position: relative;
    padding-inline: 24px;
    text-align: center;
}

body .ae-strip-list > div + div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 1px;
    background: var(--ae-rule);
}

body .ae-strip-list dt {
    font-family: Inter, system-ui, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ae-ink-soft);
}

body .ae-strip-list dd {
    margin: 8px 0 0;
    font-family: Fraunces, Georgia, serif;
    font-size: 2.1rem;
    line-height: 1;
    color: var(--ae-ink);
}

body .ae-band {
    display: block;
    line-height: 0;
}

body .ae-band img {
    width: 100%;
    height: clamp(260px, 34vw, 420px);
    object-fit: cover;
    display: block;
}

body .ae-method .t-section-title {
    display: none;
}

body .ae-method-img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
}

body .ae-sector-index {
    max-width: 940px;
    margin-inline: auto;
    border-top: 1px solid var(--ae-rule);
}

body .ae-sector-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 4px;
    border-bottom: 1px solid var(--ae-rule);
    text-decoration: none;
    transition: padding-left 0.25s ease, background 0.25s ease;
}

body .ae-sector-item:hover {
    padding-left: 16px;
    background: rgba(201, 162, 74, 0.07);
}

body .ae-sector-name {
    font-family: Fraunces, Georgia, serif;
    font-size: 1.35rem;
    color: var(--ae-ink);
}

body .ae-sector-count {
    font-family: Inter, system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ae-gold);
    white-space: nowrap;
}

body .ae-quote-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px;
}

body .ae-quote-grid .ae-pullquote {
    text-align: left;
    max-width: none;
}

body .ae-quote-grid .ae-pullquote blockquote {
    font-size: 1.02rem;
    line-height: 1.55;
}

body .ae-quote-grid .ae-pullquote blockquote::before {
    margin: 0 0 22px;
}

body .ae-home-quotes .t-section-title {
    margin-bottom: 52px;
}

body .ae-credentials {
    background: var(--ae-paper);
    padding-block: 46px;
}

body .ae-cred-row {
    display: grid;
    grid-template-columns: minmax(0, 250px) minmax(0, 1fr);
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--ae-rule);
    align-items: baseline;
}

body .ae-cred-row:last-child {
    border-bottom: 1px solid var(--ae-rule);
}

body .ae-cred-label {
    font-family: Inter, system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ae-ink-soft);
}

body .ae-cred-items {
    font-size: 0.95rem;
    color: var(--ae-ink);
}

body .ae-hero-plain {
    min-height: 0;
    padding-block: 92px;
    border-bottom: 2px solid var(--ae-gold);
}

body .ae-hero-plain::before {
    display: none;
}

body .ae-hero-plain .t-lead {
    max-width: 60ch;
}

body .ae-eyebrow {
    color: var(--ae-gold);
    font-family: Inter, system-ui, sans-serif;
    font-weight: 600;
}

body .ae-section-lead {
    max-width: 62ch;
    margin: 0 auto 44px;
    text-align: center;
    font-size: 1.05rem;
    color: var(--ae-ink-soft);
}

body .ae-prose {
    max-width: 68ch;
    margin-inline: auto;
}

body .ae-prose p {
    margin-bottom: 18px;
    font-size: 1.02rem;
}

body .ae-numbered {
    max-width: 940px;
    margin-inline: auto;
}

body .ae-numbered-row {
    display: grid;
    grid-template-columns: 78px 1fr;
    align-items: start;
    gap: 0 28px;
    padding: 30px 0;
    border-top: 1px solid var(--ae-rule);
}

body .ae-numbered-row:last-child {
    border-bottom: 1px solid var(--ae-rule);
}

body .ae-numbered-row::before {
    content: attr(data-ae-index);
    grid-row: 1 / span 2;
    font-family: Fraunces, Georgia, serif;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--ae-gold);
    padding-top: 4px;
}

body .ae-numbered-row h3 {
    grid-column: 2;
    margin: 0 0 6px;
    font-size: 1.3rem;
}

body .ae-numbered-row p {
    grid-column: 2;
    margin: 0;
    max-width: 62ch;
    color: var(--ae-ink-soft);
}

body .ae-split {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    max-width: 1040px;
    margin-inline: auto;
}

body .ae-split-main h2 {
    margin: 0 0 20px;
    text-align: left;
}

body .ae-split-main p {
    margin-bottom: 16px;
    color: var(--ae-ink-soft);
}

body .ae-facts {
    margin: 0;
    border-top: 2px solid var(--ae-ink);
}

body .ae-fact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--ae-rule);
}

body .ae-fact dt {
    font-family: Inter, system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ae-ink-soft);
    padding-top: 3px;
}

body .ae-fact dd {
    margin: 0;
    font-size: 0.96rem;
    color: var(--ae-ink);
}

body .ae-faq {
    max-width: 860px;
    margin-inline: auto;
    border-top: 1px solid var(--ae-rule);
}

body .ae-faq-item {
    border-bottom: 1px solid var(--ae-rule);
}

body .ae-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 44px 22px 0;
    position: relative;
    font-family: Fraunces, Georgia, serif;
    font-size: 1.15rem;
    color: var(--ae-ink);
}

body .ae-faq-item summary::-webkit-details-marker {
    display: none;
}

body .ae-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-family: Inter, system-ui, sans-serif;
    font-size: 1.4rem;
    color: var(--ae-gold);
}

body .ae-faq-item[open] summary::after {
    content: "−";
}

body .ae-faq-item p {
    margin: 0 0 24px;
    max-width: 68ch;
    color: var(--ae-ink-soft);
}

body .ae-table-wrap {
    overflow-x: auto;
    max-width: 1040px;
    margin-inline: auto;
}

body .ae-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.94rem;
}

body .ae-table th,
body .ae-table td {
    text-align: left;
    padding: 14px 18px 14px 0;
    border-bottom: 1px solid var(--ae-rule);
    vertical-align: top;
}

body .ae-table thead th {
    font-family: Inter, system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ae-ink-soft);
    border-bottom: 2px solid var(--ae-ink);
}

body .ae-table tbody th {
    font-family: Fraunces, Georgia, serif;
    font-weight: 600;
    color: var(--ae-ink);
}

body .ae-table tbody td {
    color: var(--ae-ink-soft);
}

body .ae-pullquote {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

body .ae-pullquote blockquote {
    margin: 0 0 26px;
    font-family: Fraunces, Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.5;
    color: #fffdf9;
}

body .ae-pullquote blockquote::before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    margin: 0 auto 26px;
    background: var(--ae-gold);
}

body .ae-quote-name {
    display: block;
    font-family: Inter, system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ae-gold);
}

body .ae-quote-where {
    display: block;
    margin-top: 5px;
    font-size: 0.92rem;
    color: rgba(255, 253, 249, 0.66);
}

body .ae-timeline {
    max-width: 860px;
    margin-inline: auto;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--ae-rule);
}

body .ae-timeline li {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--ae-rule);
}

body .ae-timeline-when {
    font-family: Inter, system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ae-gold);
    padding-top: 4px;
}

body .ae-timeline-what strong {
    font-family: Fraunces, Georgia, serif;
    font-weight: 600;
    color: var(--ae-ink);
}

body .ae-cta-band .t-container {
    text-align: center;
}

body .ae-cta-band p {
    max-width: 60ch;
    margin: 0 auto 30px;
    color: rgba(255, 253, 249, 0.82);
}

body .ae-cta-band .t-hero-btns {
    justify-content: center;
}

body .ae-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
    max-width: 1040px;
    margin-inline: auto;
}

body .ae-contact-grid h2 {
    margin: 0 0 14px;
    font-size: 1.6rem;
}

body .ae-contact-formlede {
    margin: 0 0 28px;
    color: var(--ae-ink-soft);
}

body .ae-contact-urgent {
    margin-top: 26px;
    padding: 18px 20px;
    background: rgba(201, 162, 74, 0.11);
    border-left: 2px solid var(--ae-gold);
    font-size: 0.94rem;
    color: var(--ae-ink);
}

body .ae-contact-details .ae-facts {
    margin-top: 0;
}

body .ae-contact-details .ae-fact {
    grid-template-columns: minmax(0, 130px) minmax(0, 1fr);
}

body .ae-contact-details a {
    color: var(--ae-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ae-gold);
}

body .ae-contact-details a:hover {
    color: var(--ae-gold);
}

body .ae-contact-form .wpcf7-form label {
    display: block;
    margin-bottom: 18px;
    font-family: Inter, system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--ae-ink-soft);
}

body .ae-contact-form .wpcf7-form-control-wrap {
    display: block;
    margin-top: 7px;
}

body .ae-contact-form .wpcf7 input[type="text"],
body .ae-contact-form .wpcf7 input[type="email"],
body .ae-contact-form .wpcf7 input[type="tel"],
body .ae-contact-form .wpcf7 input[type="url"],
body .ae-contact-form .wpcf7 textarea,
body .ae-contact-form .wpcf7 select {
    width: 100%;
    background: #fffdf9;
    border: 1px solid var(--ae-rule);
    border-radius: 0;
    padding: 13px 14px;
    font-family: Inter, system-ui, sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ae-ink);
}

body .ae-contact-form .wpcf7 textarea {
    min-height: 168px;
    resize: vertical;
}

body .ae-contact-form .wpcf7 input:focus,
body .ae-contact-form .wpcf7 textarea:focus,
body .ae-contact-form .wpcf7 select:focus {
    outline: none;
    border-color: var(--ae-gold);
}

body .ae-contact-form .wpcf7 input[type="submit"] {
    width: auto;
    background: var(--ae-ink);
    color: #fffdf9;
    border: 0;
    border-radius: 0;
    padding: 15px 32px;
    font-family: Inter, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

body .ae-contact-form .wpcf7 input[type="submit"]:hover {
    background: var(--ae-gold);
    color: var(--ae-ink);
}

body .ae-contact-form .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: #a4442e;
}

body .ae-contact-form .wpcf7-response-output {
    margin: 24px 0 0;
    padding: 14px 18px;
    border: 1px solid var(--ae-rule);
    border-left: 2px solid var(--ae-gold);
    border-radius: 0;
    font-size: 0.94rem;
}

body .ae-glossary .ae-fact {
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
}

body .ae-glossary .ae-fact dt {
    font-family: Fraunces, Georgia, serif;
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ae-ink);
}

@media (max-width: 900px) {
    body .ae-split {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
    }

    body .ae-numbered-row,
    body .ae-result {
        grid-template-columns: 52px 1fr;
        gap: 0 16px;
    }

    body .ae-fact,
    body .ae-glossary .ae-fact {
        grid-template-columns: minmax(0, 1fr);
        gap: 4px;
    }

    body .ae-timeline li {
        grid-template-columns: minmax(0, 1fr);
        gap: 6px;
    }

    body .ae-contact-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 44px;
    }

    body .ae-note-sheet {
        padding: 36px 24px 34px;
    }

    body .ae-note-meta {
        flex-direction: column;
        gap: 4px;
    }

    body .ae-strip-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 26px;
    }

    body .ae-strip-list > div:nth-child(odd)::before {
        display: none;
    }

    body .ae-quote-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    body .ae-cred-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    body .ae-sector-item {
        flex-direction: column;
        gap: 4px;
    }

    body .t-rich-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px;
    }

    body .ae-contact-details .ae-fact {
        grid-template-columns: minmax(0, 1fr);
    }

    body .ae-sectors .t-grid,
    body .ae-team .t-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    body .ae-services .t-card,
    body .ae-process .t-card,
    body.fx-skin-glass .ae-services .t-card,
    body.fx-skin-glass .ae-process .t-card {
        grid-template-columns: 52px 1fr;
        gap: 0 16px;
    }
}

