﻿@font-face {
    font-family: "S-1-font";
    src: url('../font/Vrdznagir.otf') format('truetype');
    font-weight: 400;
    font-style: normal
}

:root {
    --bg: #deebfd;
    --bg2: #c2d9f5;
    --card: rgba(255, 255, 255, .92);
    --ink: #092f7a;
    --muted: #4d6b95;
    --red: #ef482b;
    --red-deep: #c53b24;
    --accent: #d93e20;
    --gold: #092f7a;
    --gold-soft: rgba(9, 34, 122, .14);
    --line: rgba(9, 34, 122, .15);
    --r: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}


html {
    scroll-behavior: smooth
}

[id] {
    scroll-margin-top: 100px
}

/* SCROLLBAR */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--red) transparent
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--red), var(--accent));
    border-radius: 999px;
    border: 2px solid var(--bg)
}

::-webkit-scrollbar-thumb:hover {
    background: var(--red-deep)
}

body {
    font-family: "Tahoma", sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: visible;
    cursor: default
}

body.menu-open {
    overflow: hidden
}

a {
    color: inherit
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
    border-radius: 4px;
}

/* animated glow blobs + grain */
.bg-fx {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .5;
    animation: float 18s ease-in-out infinite
}

.blob.a {
    width: 46vw;
    height: 46vw;
    background: radial-gradient(circle, rgba(239, 72, 43, .5), transparent 70%);
    top: -12vw;
    left: -8vw
}

.blob.b {
    width: 38vw;
    height: 38vw;
    background: radial-gradient(circle, rgba(223, 237, 254, .45), transparent 70%);
    bottom: -10vw;
    right: -6vw;
    animation-delay: -7s
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(4vw, 3vw) scale(1.12)
    }
}

.grain {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: .05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

/* cursor glow */
#glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(239, 72, 43, .13), transparent 65%);
    transition: opacity .3s;
    opacity: 0
}

@media(hover:hover) {
    #glow {
        opacity: 1
    }
}

.wrap {
    position: relative;
    z-index: 3
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    height: 84px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 3px 5vw;
    background: rgba(6, 6, 6, .5);
    border-bottom: 1px solid var(--line)
}

/* backdrop-filter creates a new containing block for position:fixed descendants —
   the full-screen mobile menu relies on being fixed to the *viewport*, so the blur
   is only safe on desktop where the menu is never position:fixed. */
@media(min-width:1081px) {
    nav {
        backdrop-filter: blur(14px)
    }
}

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

@media(max-width:1080px) {
    .nav-end {
        gap: 0
    }
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    align-items: center;
    gap: 10px
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    transition: .2s
}

.social-links a:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(-2px)
}

.social-links svg {
    width: 16px;
    height: 16px
}

.social-links-header {
    margin-right: 8px
}

@media(max-width:1080px) {
    .social-links-header {
        display: none
    }
}

@media(min-width:1081px) {
    .menu-social {
        display: none
    }
}

.menu-social {
    list-style: none;
    margin-top: 10px
}

.menu-social .social-links {
    justify-content: center
}

.menu-social .social-links a {
    background: rgba(255, 255, 255, .12)
}

.social-links-footer {
    display: none
}

.social-links-footer a {
    color: rgba(255, 255, 255, .85)
}

@media(max-width:900px) {
    .social-links-footer {
        display: flex;
        justify-content: center;
        margin-top: 24px;
        padding-bottom: 24px
    }
}

.brand {
    display: flex;
    align-items: stretch;
    gap: 11px;
    font-weight: 800;
    letter-spacing: .02em;
    text-decoration: none;
    font-size: 16px
}

.brand .seal {
    position: relative;
    width: auto;
    height: 100%;
    aspect-ratio: 1 / 1;
    margin: 0;
    border-radius: 50%;
    border: 0;
    color: var(--gold-soft);
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 800;
    overflow: hidden
}

.burger {
    align-self: center
}

.menu {
    align-self: center
}

.brand .seal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    transition: transform .3s ease;
}

.brand:hover .seal img {
    transform: scale(1.05);
}

.menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    padding: 0;
    margin: 0
}

.menu a {
    text-decoration: none;
    font-size: 13px;
    opacity: .95;
    transition: .2s;
    white-space: nowrap;
    color: #fff
}

.menu a:hover {
    opacity: 1;
    color: rgba(255, 255, 255, .85)
}

.menu .pill {
    border: 1px solid var(--line);
    padding: 9px 18px;
    border-radius: 40px;
    opacity: 1
}

.menu .pill:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 61
}

.burger span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: .3s
}

@media(max-width:1080px) {
    .menu {
        position: fixed;
        inset: 0;
        z-index: 70;
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding-top: 130px;
        background: var(--menu-bg, rgba(10, 20, 64, .55));
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        transform: scale(1.05);
        transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s
    }

    .menu::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
        height: 200px;
        background: url('../img/logo-alt.png') center / contain no-repeat
    }

    .menu.open {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        transition: opacity .35s ease, transform .35s ease, visibility 0s
    }

    .menu a {
        font-size: 26px;
        font-weight: 800;
        color: #fff;
        white-space: normal
    }

    .menu a:hover {
        color: #ff8a68
    }

    .menu .pill {
        border-color: rgba(255, 255, 255, .35);
        margin-top: 10px
    }

    .menu .pill:hover {
        background: var(--red);
        border-color: var(--red);
        color: #fff
    }

    .burger {
        display: flex;
        position: fixed;
        top: 22px;
        right: 5vw;
        z-index: 71;
        background: rgba(6, 6, 6, .35);
        border-radius: 10px;
        padding: 10px
    }

    .burger.open {
        background: transparent
    }

    .burger.open span {
        background: #fff
    }

    .burger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg)
    }

    .burger.open span:nth-child(2) {
        opacity: 0
    }

    .burger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg)
    }
}

/* HERO */
.hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: 120px 5vw 0px;
    position: relative;
    overflow: hidden;
    color: #fff;
    background-image: var(--hero-bg, linear-gradient(180deg, rgba(6, 10, 26, .55) 0%, rgba(6, 10, 26, .3) 42%, rgba(6, 10, 26, .62) 100%), url('../img/banner.png'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media(min-width:761px) {
    .hero {
        background-image: var(--hero-bg-desktop, var(--hero-bg))
    }
}

.hero h3 {
    font-family: "Tahoma", sans-serif;
    font-weight: 900;
    line-height: 1.04;
    margin: 0;
    font-size: 50px;
    letter-spacing: -.02em;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, .35);
}

.hero::before {
    content: "";
    position: absolute;
    right: -10vw;
    top: 8vh;
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .16), transparent 55%);
    pointer-events: none;
    opacity: .75
}

.hero::after {
    content: "";
    position: absolute;
    left: -8vw;
    bottom: -6vw;
    width: 45vw;
    height: 45vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 72, 43, .16), transparent 55%);
    pointer-events: none
}



.hero-modify-s {
    font-family: "S-1-font";
    color: black !important;
    text-align: right;

    top: 4rem;
    right: 5vw;;
    line-height: 1.5;
    font-size: 21px;
    margin-top: 0;

}

.hero-ctas {
    margin-top: clamp(28px, 6vw, 80px);
    display: flex;
    gap: 18px;
    flex-wrap: wrap
}

/* Shared, consistent container for every section's heading (eyebrow + optional "read more" link) */
.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    max-width: 640px;
    margin: 0 auto 24px
}

.section-title .section-more {
    align-self: flex-end
}

.section-more {
    color: var(--red);
    font-weight: 700;
    font-size: 12px;
    white-space: normal;
    text-decoration: none
}

@media(min-width:1081px) {
    .section-more {
        white-space: nowrap
    }
}

.section-more-after {
    display: block;
    width: fit-content;
    margin: 24px 0 0 auto
}

.section-more:hover {
    text-decoration: underline
}

.impact-section {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px
}

.impact-section .section-title {
    grid-column: 1 / -1
}

.impact-section.reveal .impact-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease
}

.impact-section.in .impact-card {
    opacity: 1;
    transform: translateY(0)
}

.impact-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .83));
    border-radius: 28px;
    padding: 32px;
    text-align: center;
    color: #092f7a;
    box-shadow: 0 25px 70px rgba(9, 34, 122, .08);
    border: 1px solid rgba(9, 34, 122, .1)
}

.impact-card .icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(239, 72, 43, .12);
    font-size: 25px;
    margin-bottom: 18px
}

.impact-card strong {
    display: block;
    font-size: 38px;
    line-height: 1;
    color: #092f7a;
    margin-bottom: 10px
}

.impact-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    overflow-wrap: break-word
}

.about-section .bento {
    grid-template-columns: repeat(2, 1fr);
}

.about-section .cell {
    border: 0;
    box-shadow: 0 18px 40px rgba(9, 34, 122, .08);
}

/* OTHER PROGRAMS */
.other-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px
}

.other-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, .95);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 24px 60px rgba(9, 34, 122, .08);
    border: 1px solid rgba(9, 34, 122, .1);
    text-decoration: none;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease
}

.other-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease
}

.other-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 90px rgba(9, 34, 122, .16)
}

.other-card:hover::before {
    transform: scaleX(1)
}

.other-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(239, 72, 43, .18), rgba(217, 62, 32, .1));
    font-size: 26px;
    margin-bottom: 20px;
    transition: transform .3s ease
}

.other-card:hover .other-card-icon {
    transform: scale(1.08) rotate(-4deg)
}

.other-card h3 {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.5;
    color: #092f7a;
    margin: 0
}

.other-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(9, 34, 122, .06);
    color: var(--red);
    font-weight: 800;
    margin-top: 18px;
    transition: transform .3s ease, background .3s ease
}

.other-card:hover .other-card-arrow {
    background: var(--red);
    color: #fff;
    transform: translateX(4px)
}

@media(max-width:1080px) {
    .other-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:760px) {
    .other-grid {
        grid-template-columns: 1fr
    }
}

/* ARMY SECTION (Բանակում) */
.army-section {
    text-align: center
}

.army-image {
    margin: 20px auto 0;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(9, 34, 122, .12)
}

.army-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 6;
    object-fit: cover
}

.army-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    margin: 40px auto 0
}

.army-card {
    background: rgba(255, 255, 255, .95);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 24px 60px rgba(9, 34, 122, .08);
    border: 1px solid rgba(9, 34, 122, .1);
    text-align: center
}

.army-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #092f7a
}

.army-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7
}

.army-btn {
    margin-top: 40px
}

a.feature-btn.btn {
    display: block;
    width: fit-content;
    margin: 32px auto 0
}

@media(max-width:760px) {
    .army-grid {
        grid-template-columns: 1fr
    }
}

.contact-shell {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 40px;
    position: relative
}

.contact-card {
    position: relative;
    z-index: 1;
    padding: 56px 0;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0
}

.contact-info li a {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ink);
    background: #f6faff;
    border: 1px solid rgba(9, 34, 122, .1);
    border-radius: 18px;
    padding: 14px 18px;
    transition: .25s
}

.contact-info li a:hover {
    background: #fff;
    border-color: var(--red);
    color: var(--red);
    transform: translateX(4px)
}

.contact-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(239, 72, 43, .12);
    font-size: 16px
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 15px;
    font-weight: 700
}

.contact-info-text small {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted)
}

.contact-map {
    position: relative;
    z-index: 1;
    min-height: 420px;
    padding: 56px 0;
    line-height: 0
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 28px;
    box-shadow: 0 40px 100px rgba(9, 34, 122, .12);
    border: 1px solid rgba(9, 34, 122, .1)
}

@media(max-width:1080px) {
    .contact-shell {
        grid-template-columns: 1fr
    }

    .contact-card {
        padding: 8px 0 40px
    }

    .contact-map {
        min-height: 320px;
        padding: 0 0 40px
    }

    .contact-map iframe {
        min-height: 320px
    }
}

@media(max-width:1080px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .impact-section {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .about-section .bento {
        grid-template-columns: 1fr
    }
}

@media(max-width:760px) {
    h2.title,
    .page-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto
    }

    .eyebrow {
        justify-content: center
    }

    .hero-right {
        position: absolute;
        right: 4vw;
        bottom: 20px;
        left: 4vw;
        margin-top: 0
    }

    .news-grid {
        grid-template-columns: 1fr
    }

    .impact-section {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .impact-card {
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

    .about-section .bento {
        grid-template-columns: 1fr
    }

    .hero {
        position: relative;
        padding: 100px 4vw 110px
    }

    .contact-card {
        padding: 8px 28px 32px
    }
}

@media(max-width:540px) {

    .nav,
    .topnav {
        padding: 12px 4vw
    }

    .menu {
        gap: 14px
    }

    .hero {
        padding: 80px 4vw 110px
    }

    .hero h3 {
        font-size: 32px
    }

    .hero-modify-s {
        font-size: 15px
    }

    .impact-card strong {
        font-size: 28px
    }

    .impact-card p {
        font-size: 13px
    }

    .section-more {
        white-space: normal
    }

    .other-card h3,
    .army-card h3,
    .cell h3,
    .feature-card strong {
        font-size: 15px
    }

    .feature-card p,
    .other-card p,
    .army-card p,
    .cell p {
        font-size: 13px
    }

    .impact-card,
    .contact-card,
    .cell {
        padding: 24px
    }

    .bento {
        grid-template-columns: 1fr
    }
}

@media(min-width:360px) {
    .brand {
        gap: 8px
    }

    .menu .pill {
        padding: 8px 16px
    }
}

@media(min-width:1081px) {
    .menu a {
        font-size: 14px
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px
}

.feature-card {
    background: rgba(255, 255, 255, .95);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 24px 60px rgba(9, 34, 122, .08);
    border: 1px solid rgba(9, 34, 122, .1);
    transition: transform .3s ease, box-shadow .3s ease
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 70px rgba(9, 34, 122, .12)
}

.feature-card strong {
    display: block;
    font-size: 18px;
    margin-bottom: 18px;
    color: #092f7a;
    text-align: center
}

.feature-card p {
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    max-width: 38ch;
    text-align: center
}

@media(max-width:1080px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:760px) {
    .feature-grid {
        grid-template-columns: 1fr
    }
}

.btn {
    position: relative;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 16px 34px;
    border-radius: 999px;
    transition: .25s;
    font-weight: 700;
    display: inline-block;
    overflow: hidden
}

.btn-red {
    background: var(--red);
    color: #fff
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(239, 72, 43, .3)
}

.btn-out {
    border: 1px solid rgba(9, 34, 122, .2);
    color: #092f7a;
    background: #fff
}

.btn-out:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-3px)
}

/* SECTION */
section {
    position: relative;
    padding: 60px 5vw;
    max-width: 1240px;
    margin: 0 auto
}

@media(max-width:760px) {
    section {
        padding: 24px 4vw
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--accent);
    white-space: normal
}

@media(max-width:540px) {
    .eyebrow {
        font-size: 15px;
        letter-spacing: .16em
    }
}

@media(min-width:1081px) {
    .eyebrow {
        white-space: nowrap
    }
}

/* SINGLE PAGE (page.php) */
.page-hero {
    padding: 150px 5vw 20px;
    max-width: 1240px;
    margin: 0 auto;
    text-align: center
}

.page-hero .eyebrow {
    justify-content: center
}

h2.title.page-title {
    color: var(--ink);
    font-size: 44px;
    max-width: none;
    white-space: normal
}

.page-body {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5vw 100px
}

.page-thumb {
    float: left;
    width: 42%;
    margin: 4px 32px 24px 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(9, 34, 122, .12);
    border: 1px solid rgba(9, 34, 122, .1)
}

.page-thumb img {
    display: block;
    width: 100%;
    height: auto
}

.page-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--ink)
}

.page-content::after {
    content: "";
    display: table;
    clear: both
}

@media(max-width:700px) {
    .page-thumb {
        float: none;
        width: 100%;
        margin: 0 0 24px
    }
}

.page-content p {
    margin: 0 0 22px;
    text-align: justify
}

.page-content h2,
.page-content h3,
.page-content h4 {
    color: var(--ink);
    font-weight: 800;
    margin: 40px 0 16px;
    line-height: 1.3
}

.page-content ul,
.page-content ol {
    margin: 0 0 22px;
    padding-left: 22px
}

.page-content li {
    margin-bottom: 8px
}

.page-content a {
    color: var(--red);
    text-decoration: underline
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(9, 34, 122, .1)
}

.page-content img.alignleft {
    float: left;
    margin: 6px 28px 20px 0
}

.page-content img.alignright {
    float: right;
    margin: 6px 0 20px 28px
}

.page-content img.aligncenter {
    display: block;
    margin: 0 auto 22px
}

.page-content blockquote {
    margin: 28px 0;
    padding: 20px 28px;
    border-left: 4px solid var(--red);
    background: rgba(9, 34, 122, .04);
    border-radius: 0 18px 18px 0;
    font-style: italic;
    color: var(--muted)
}

@media(max-width:760px) {
    .page-hero {
        padding: 100px 4vw 16px
    }

    .page-body {
        padding: 0 4vw 70px
    }

    .page-content img.alignleft,
    .page-content img.alignright {
        float: none;
        margin: 0 auto 20px;
        display: block
    }
    h2.title.page-title {
    font-size: 18px
}
}

h2.title {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: -.01em;
    text-transform: uppercase;
    max-width: 800px;
    margin-bottom: 22px;
    white-space: normal
}


@media(max-width:540px) {
    h2.title {
        font-size: 16px
    }
}

@media(min-width:1081px) {
    h2.title {
        white-space: nowrap
    }
}

.hero-right{
    margin-top: clamp(48px, 12vw, 150px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
/* BENTO */
.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
    margin-top: 42px
}

.cell {
    background: rgba(255, 255, 255, .96);
    border-radius: 28px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 22px 52px rgba(9, 34, 122, .08);
    border: 1px solid rgba(9, 34, 122, .08);
    transition: .35s;
}

.cell:hover {
    transform: translateY(-4px)
}

.cell h3 {
    font-family: "Noto Serif Armenian", serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: #092f7a
}

.cell p {
    color: var(--muted);
    font-size: 16px
}

/* FOOTER */
.bigfoot {
    position: relative;
    color: rgba(255, 255, 255, .85);
    margin-top: 40px
}

.bigfoot-top {
    max-width: 1240px;
    margin: 0 auto;
    padding: 70px 5vw 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px
}

.bigfoot-brand .seal {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    margin-bottom: 18px
}

.bigfoot-brand .seal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease
}

.bigfoot-brand:hover .seal img {
    transform: scale(1.05)
}

.bigfoot-brand p {
    max-width: 34ch;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    font-size: 14px
}

.bigfoot-col h4 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #ff8a68;
    margin-bottom: 20px
}

.bigfoot-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.bigfoot-col a {
    text-decoration: none;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    transition: .2s
}

.bigfoot-col a:hover {
    color: #fff
}

@media(max-width:900px) {
    .bigfoot-top {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center
    }

    .bigfoot-brand {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .bigfoot-brand .seal {
        margin-left: auto;
        margin-right: auto
    }

    .bigfoot-brand p {
        margin-left: auto;
        margin-right: auto
    }

    .bigfoot-col ul {
        align-items: center
    }
}