/* Archers Placements — #f95738 | #141414 | #ffffff | #b0b2bd */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f95738;
    --dark: #101010;
    --white: #ffffff;
    --grey: #3f3f46;
    --grey-light: #f1f2f4;
    --grey-border: #d9dce2;

    /* Navbar logo — tweak here (header uses height + max-width; width is auto) */
    --nav-logo-height: 72px;
    --nav-logo-max-width: 280px;
    /* Hides a top strip of the PNG (e.g. accidental “Logo-1” text from Figma export). Set to 0% when your file has no label. */
    --logo-crop-top: 14%;
    --nav-padding-y: 12px;
    --header-offset: calc(var(--nav-logo-height) + (var(--nav-padding-y) * 2) + 16px);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.75;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-wide {
    max-width: none;
    width: 100%;
    padding-left: clamp(18px, 4vw, 56px);
    padding-right: clamp(18px, 4vw, 56px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--grey-light);
    transition: box-shadow 0.3s ease;
}

.nav {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: var(--nav-padding-y) clamp(18px, 4vw, 56px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(16px, 2vw, 24px);
    flex-wrap: wrap;
    row-gap: 10px;
    min-height: calc(var(--nav-logo-height) + (var(--nav-padding-y) * 2));
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.logo img {
    height: var(--nav-logo-height);
    width: auto;
    max-width: var(--nav-logo-max-width);
    display: block;
    object-fit: contain;
    object-position: left center;
    -webkit-clip-path: inset(var(--logo-crop-top) 0 0 0);
    clip-path: inset(var(--logo-crop-top) 0 0 0);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.2vw, 18px);
    list-style: none;
    flex-wrap: wrap;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    margin-left: auto;
    row-gap: 8px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px !important;
}

.btn-nav:hover {
    opacity: 0.92;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
    padding-top: var(--header-offset);
    background: linear-gradient(180deg, var(--white) 0%, rgba(176, 178, 189, 0.08) 100%);
}

.hero-inner {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 56px clamp(18px, 4vw, 56px) 40px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 34px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(1.85rem, 4.2vw, 2.85rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    max-width: 920px;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--grey);
    max-width: 720px;
    margin-bottom: 32px;
}

.hero-content .highlight {
    color: var(--primary);
}

.hero-media {
    min-width: 0;
}

.hero-media img {
    width: 100%;
    max-width: 640px;
    height: auto;
    display: block;
    margin-left: auto;
    border-radius: 16px;
    border: 1px solid var(--grey-border);
    box-shadow: 0 12px 38px rgba(16, 16, 16, 0.08);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: #e04a2d;
    border-color: #e04a2d;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-full {
    width: 100%;
    text-align: center;
    border: none;
}

.trust-strip {
    background: transparent;
    color: var(--dark);
    padding: 14px 0 0;
    margin-top: 0;
}

.trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.trust-item {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 22px 20px;
    background: var(--grey-light);
    border: 1px solid var(--grey-border);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(249, 87, 56, 0.12);
}

.trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
    line-height: 1;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(249, 87, 56, 0.24);
}

.trust-item-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.trust-item-text span {
    font-size: 0.98rem;
    color: var(--grey);
    line-height: 1.45;
    display: block;
}

/* Section titles */
.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.45rem);
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 18px;
}

.section-subtitle {
    text-align: center;
    color: var(--grey);
    font-size: 18px;
    max-width: 760px;
    margin: 0 auto 52px;
}

/* Leadership */
.leadership {
    padding: 108px 0;
    background: var(--white);
}

.leadership-grid {
    display: flex;
    flex-direction: column;
    gap: 38px;
    width: 100%;
    margin: 0;
}

.leadership-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
    min-height: 0;
    padding: 36px;
    background: var(--grey-light);
    border-radius: 20px;
    border: 1px solid var(--grey-border);
    box-shadow: 0 12px 30px rgba(16, 16, 16, 0.06);
}

.team-card.reverse {
    flex-direction: row-reverse;
}

.team-card.reverse .leadership-photo {
    order: initial;
}

.team-card.reverse .leadership-body {
    order: initial;
}

.leadership-photo {
    flex: 0 0 40%;
    width: 40%;
    max-width: 40%;
    min-width: 0;
    min-height: 420px;
    margin: 0;
    position: relative;
    align-self: stretch;
    overflow: hidden;
    border-radius: 16px;
}

.leadership-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 16px;
}

.leadership-scroll {
    flex: 0 0 60%;
    width: 60%;
    max-width: 60%;
    min-width: 0;
    min-height: 0;
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
}

.leadership-body {
    border-left: 4px solid var(--primary);
    padding-left: 28px;
}

.leadership-body h3 {
    font-size: 1.28rem;
    color: var(--dark);
    margin-bottom: 6px;
    text-align: left;
    line-height: 1.3;
}

.designation {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 18px;
    text-align: left;
    line-height: 1.4;
}

.leadership-body p {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 14px;
}

.leadership-body p strong {
    color: var(--dark);
}

.leadership-body h4 {
    font-size: 1rem;
    color: var(--dark);
    margin: 22px 0 12px;
}

.leadership-body .content-list.team-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0 8px 0;
    color: var(--dark);
    font-size: 15px;
    line-height: 1.5;
}

.leadership-body .content-list.team-list li::before {
    content: none;
    display: none;
}

.leadership-body .content-list.team-list li i {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--primary);
    font-size: 1rem;
    line-height: 1;
}

.leadership-body .content-list.team-list li span {
    flex: 1;
    min-width: 0;
}

.content-list {
    list-style: none;
    margin-bottom: 8px;
}

.content-list li {
    padding: 6px 0 6px 22px;
    position: relative;
    color: var(--grey);
    font-size: 16px;
    line-height: 1.5;
}

.content-list li::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 10px;
    top: 10px;
}

.inline-dots li {
    display: inline-block;
    margin-right: 16px;
}

.founder-quote,
.vision-quote {
    margin-top: 20px;
    padding: 18px 20px;
    border-left: 4px solid var(--primary);
    background: var(--white);
    color: var(--dark);
    font-style: italic;
    font-size: 1.02rem;
    line-height: 1.55;
    border-radius: 0 10px 10px 0;
}

/* Philosophy */
.philosophy {
    padding: 96px 0;
    background: var(--grey-light);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-block {
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    border: 1px solid var(--grey-border);
}

.philosophy-block h3 {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.philosophy-block p {
    color: var(--grey);
    margin-bottom: 12px;
}

/* Why choose */
.why-choose {
    padding: 96px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}

.why-card {
    background: var(--grey-light);
    padding: 26px 18px;
    border-radius: 14px;
    border: 1px solid var(--grey-border);
    transition: border-color 0.25s, transform 0.25s;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.why-card-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 14px;
    border: 1px solid var(--grey-border);
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(249, 87, 56, 0.1);
}

.why-icon {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--grey);
    line-height: 1.5;
    flex: 1;
}

.why-closing {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    padding: 40px clamp(18px, 3.5vw, 44px);
    background: var(--grey-light);
    border-radius: 16px;
}

.why-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    max-width: 980px;
    margin-bottom: 16px;
    text-align: justify;
}

.why-closing > p {
    color: var(--grey);
    margin-bottom: 8px;
}

.why-closing .content-list {
    text-align: left;
    max-width: 980px;
    margin: 12px 0 0;
}

/* Services */
.services {
    padding: 96px 0 80px;
    background: var(--grey-light);
}

.services-intro {
    font-size: 1.05rem;
    line-height: 1.65;
}

.services-hint {
    text-align: center;
    color: var(--grey);
    font-size: 1rem;
    margin: -24px 0 28px;
}

.services-tiles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    align-items: stretch;
}

.service-tile {
    font-family: inherit;
    appearance: none;
    border: 2px solid var(--grey-border);
    background: var(--white);
    border-radius: 12px;
    padding: 18px 16px;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-height: 124px;
    height: 100%;
    color: var(--dark);
    box-sizing: border-box;
}

.service-tile:hover,
.service-tile:focus-visible {
    border-color: var(--primary);
    box-shadow: 0 10px 32px rgba(249, 87, 56, 0.18);
    transform: translateY(-3px);
    outline: none;
}

.service-tile-num {
    display: none;
}

.service-tile-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(249, 87, 56, 0.12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.service-tile-title {
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--dark);
}

.service-tile-cta {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
}

.service-store {
    display: none;
}

.service-num {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    margin-right: 10px;
}

.modal-service-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 14px;
}

.service-lead {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.08rem;
    line-height: 1.65;
    opacity: 0.9;
}

.service-parts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-modal-body h4 {
    font-size: 1.05rem;
    color: var(--dark);
    margin: 22px 0 12px;
    font-weight: 600;
}

.service-modal-body .modal-list li {
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--dark);
    padding-left: 24px;
}

.service-modal-body .modal-list li::before {
    font-size: 8px;
    top: 11px;
}

/* Service floating modal */
.service-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-modal[hidden] {
    display: none !important;
}

.service-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.58);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.service-modal-float {
    position: relative;
    z-index: 1;
    background: var(--white);
    width: 100%;
    max-width: 760px;
    max-height: min(90vh, 920px);
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    display: flex;
    flex-direction: column;
}

.service-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 12px;
    background: var(--grey-light);
    color: var(--dark);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.service-modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

.service-modal-body {
    padding: 40px 40px 44px;
    overflow-y: auto;
    flex: 1;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Journey */
.journey {
    padding: 96px 0;
    background: var(--white);
}

.journey-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.journey-hero-img {
    max-width: 980px;
    margin: 0 auto 28px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--grey-border);
    box-shadow: 0 10px 24px rgba(16, 16, 16, 0.08);
}

.journey-hero-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.journey-card {
    display: block;
    padding: 36px 32px;
    background: var(--grey-light);
    border: 2px solid var(--grey-border);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

.journey-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 36px rgba(249, 87, 56, 0.12);
}

.journey-card h3 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.journey-card p {
    color: var(--grey);
    font-size: 15px;
    margin-bottom: 16px;
}

.journey-cta {
    font-weight: 600;
    color: var(--primary);
}

/* Contact */
.contact {
    padding: 108px 0 82px;
    background: var(--grey-light);
}

.contact-layout {
    max-width: 1120px;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 28px;
    align-items: stretch;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-visual {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--grey-border);
    box-shadow: 0 10px 24px rgba(16, 16, 16, 0.08);
    min-height: 100%;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-top: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 14px 18px;
    border: 1px solid var(--grey-border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    background: var(--white);
    transition: border-color 0.2s;
    color: var(--dark);
}

.contact-form select {
    cursor: pointer;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.map-block {
    max-width: 900px;
    margin: 0 auto;
}

.map-title {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.map-note {
    text-align: center;
    color: var(--grey);
    font-size: 15px;
    margin-bottom: 16px;
}

.map-embed {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--grey-border);
    line-height: 0;
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    display: block;
}

/* Footer — explicit light text on dark bands (avoid inheriting body dark color) */
.footer {
    color: var(--white);
}

.footer-main {
    background: var(--dark);
    color: var(--white);
    padding: 62px 0 52px;
}

.footer-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.footer-brand-block {
    flex: 0 0 40%;
    width: 40%;
    max-width: 40%;
    min-width: 0;
}

.footer-info-grid {
    flex: 0 0 60%;
    width: 60%;
    max-width: 60%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 24px;
    padding-left: 12px;
    border-left: 3px solid var(--primary);
}

.footer-brand-block p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.6;
}

.footer-tagline {
    font-weight: 500;
    color: var(--white) !important;
}

.footer-tagline-sub {
    font-size: 13px !important;
}

.footer-logo-link {
    display: inline-block;
    overflow: hidden;
}

.footer-logo-img {
    height: var(--nav-logo-height);
    width: auto;
    max-width: var(--nav-logo-max-width);
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    -webkit-clip-path: inset(var(--logo-crop-top) 0 0 0);
    clip-path: inset(var(--logo-crop-top) 0 0 0);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-col p > i {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--primary);
    width: 1em;
}

.footer-col p span {
    flex: 1;
    min-width: 0;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.footer-col a.email-one-line {
    white-space: normal;
    overflow-wrap: anywhere;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-heading {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin-bottom: 14px;
}

.footer-list {
    list-style: none;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
}

.footer-list li {
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
}

.footer-list li i {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--primary);
    width: 1em;
}

.footer-mid {
    background: #0f0f0f;
    color: var(--white);
    padding: 34px 0 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-mid-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 34px 46px;
}

.footer-mid-col {
    flex: 1 1 0;
    min-width: 0;
}

.footer-mid-social {
    flex: 0 0 38%;
    max-width: 420px;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 0;
    padding: 0;
}

.footer-link-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
}

.footer-link-list a:hover {
    color: var(--primary);
}

.footer-social-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 12px;
    line-height: 1.6;
}

.social-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-links a:hover {
    color: var(--primary);
}

.footer-premium {
    background: var(--primary);
    padding: 18px 0;
    text-align: center;
}

.footer-premium-line {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    color: var(--white);
}

.footer-bottom {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.85);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--primary);
}

.sep {
    margin: 0 10px;
    opacity: 0.5;
}

/* Reveal animation (JS) */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .services-tiles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 52px;
    }

    .footer-brand-block,
    .footer-info-grid {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .footer-info-grid {
        border-left: none;
        border-top: 3px solid var(--primary);
        padding-left: 0;
        padding-top: 36px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-layout {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .contact-visual img {
        min-height: 300px;
    }

    .trust-strip-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .leadership-card {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        padding: 28px;
    }

    .team-card.reverse {
        flex-direction: column;
    }

    .leadership-photo,
    .leadership-scroll {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    .leadership-photo {
        min-height: 0;
        align-self: auto;
    }

    .leadership-photo img {
        position: relative;
        inset: auto;
        flex: 0 0 auto;
        height: 320px;
        min-height: 280px;
    }

    .leadership-body {
        border-left: none;
        border-top: 4px solid var(--primary);
        padding-left: 0;
        padding-top: 18px;
    }

    .leadership-body h3 {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
}

@media (max-width: 900px) {
    .photo-placeholder {
        max-height: 240px;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journey-hero-img img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 88vw);
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        flex: none;
        margin-left: 0;
        justify-content: flex-start;
        padding: calc(var(--header-offset) + 20px) 28px 32px;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
        transition: right 0.3s ease;
        gap: 4px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 10px 0;
    }

    .nav-links .btn-nav {
        margin-top: 12px;
        text-align: center;
        display: block;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
        z-index: 1001;
    }

    .hero-inner {
        padding: 40px clamp(18px, 4vw, 56px) 32px;
    }

    .footer-mid-inner {
        flex-direction: column;
        gap: 28px;
    }

    .footer-mid-social {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .services-tiles {
        grid-template-columns: 1fr;
    }

    .why-card-img {
        height: 100px;
    }

    .journey-hero-img img {
        height: 160px;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
    }

    .trust-item-text strong {
        margin-top: 4px;
    }

    .service-modal-body {
        padding: 36px 22px 40px;
    }

    .modal-service-title {
        font-size: 1.35rem;
        padding-right: 48px;
    }
}
