:root {
    --green-950: #052a1d;
    --green-900: #073525;
    --green-700: #087247;
    --green-500: #00a85a;
    --mint-100: #dff4e9;
    --ink: #15211c;
    --muted: #68736d;
    --paper: #f6f7f3;
    --white: #fff;
    --line: #dfe5e0;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--paper);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.maintenance {
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(390px, .88fr) minmax(560px, 1.12fr);
}

.brand-panel {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 5vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    isolation: isolate;
    background:
        linear-gradient(145deg, rgba(5, 42, 29, .97), rgba(7, 53, 37, .94)),
        url("img/athens-banner2.jpeg") center / cover;
}

.brand-panel::before,
.brand-panel::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.brand-panel::before {
    width: 36vw;
    height: 36vw;
    min-width: 430px;
    min-height: 430px;
    right: -18vw;
    bottom: -12vw;
}

.brand-panel::after {
    width: 24vw;
    height: 24vw;
    min-width: 290px;
    min-height: 290px;
    right: -10vw;
    bottom: -5vw;
}

.brand-panel__glow {
    position: absolute;
    z-index: -1;
    width: 420px;
    height: 420px;
    right: -240px;
    top: 17%;
    border-radius: 50%;
    background: rgba(0, 168, 90, .16);
    filter: blur(3px);
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-logo {
    display: block;
    width: 112px;
    height: auto;
}

.brand-header__line {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, .26);
}

.brand-header__label {
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.brand-message {
    max-width: 620px;
    margin: clamp(70px, 12vh, 140px) 0;
}

.eyebrow {
    margin: 0 0 24px;
    color: #8fe0b4;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.brand-message h1 {
    margin: 0;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(44px, 5.15vw, 78px);
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: 1.06;
}

.lead {
    max-width: 550px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.75;
}

.brand-note {
    margin: 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .52);
    font-size: 12px;
    letter-spacing: .02em;
}

.contact-panel {
    min-height: 100svh;
    padding: clamp(36px, 5vw, 76px) clamp(28px, 7vw, 112px) 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at 92% 4%, rgba(0, 168, 90, .07), transparent 27%),
        var(--paper);
}

.contact-panel__content {
    width: min(100%, 620px);
    margin: auto;
}

.status {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: clamp(50px, 8vh, 88px);
    padding: 9px 14px;
    border: 1px solid #d7e5dc;
    border-radius: 99px;
    color: #506058;
    background: rgba(255, 255, 255, .62);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.status__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 4px rgba(0, 168, 90, .1);
    animation: pulse 2.4s ease-in-out infinite;
}

.eyebrow--dark {
    margin-bottom: 18px;
    color: var(--green-700);
}

.contact-heading h2 {
    margin: 0;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(31px, 3.2vw, 47px);
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 1.1;
}

.contact-heading > p:last-child {
    max-width: 570px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.contact-list {
    display: grid;
    margin-top: clamp(34px, 6vh, 58px);
    border-top: 1px solid var(--line);
    font-style: normal;
}

.contact-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 17px;
    padding: 19px 4px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: color .25s ease, padding .25s ease, border-color .25s ease;
}

.contact-item__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid #dce8e0;
    border-radius: 50%;
    color: var(--green-700);
    background: rgba(255, 255, 255, .74);
    transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.contact-item__icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-item__text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-item small {
    color: #7c8781;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-item strong {
    overflow-wrap: anywhere;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.01em;
}

.contact-item__arrow {
    color: #98a29d;
    font-size: 18px;
    transition: transform .25s ease;
}

.contact-item:hover,
.contact-item:focus-visible {
    padding-left: 8px;
    color: var(--green-700);
    border-color: #c2d4c8;
    outline: none;
}

.contact-item:hover .contact-item__icon,
.contact-item:focus-visible .contact-item__icon {
    color: var(--white);
    border-color: var(--green-700);
    background: var(--green-700);
}

.contact-item:hover .contact-item__arrow,
.contact-item:focus-visible .contact-item__arrow {
    transform: translate(2px, -2px);
}

.site-footer {
    width: min(100%, 620px);
    margin: clamp(48px, 8vh, 90px) auto 0;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: #8a938e;
    font-size: 11px;
    letter-spacing: .03em;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .52; }
}

@media (max-width: 980px) {
    .maintenance {
        grid-template-columns: 1fr;
    }

    .brand-panel {
        min-height: 640px;
        padding: 38px clamp(24px, 8vw, 70px) 42px;
    }

    .brand-message {
        margin: 86px 0;
    }

    .brand-message h1 {
        font-size: clamp(43px, 9vw, 72px);
    }

    .contact-panel {
        min-height: auto;
        padding: 70px clamp(24px, 8vw, 70px) 32px;
    }

    .contact-panel__content {
        margin: 0 auto;
    }

    .status {
        margin-bottom: 60px;
    }
}

@media (max-width: 540px) {
    .brand-panel {
        min-height: 600px;
        padding-top: 28px;
    }

    .brand-logo {
        width: 94px;
    }

    .brand-header__label {
        font-size: 9px;
    }

    .brand-message {
        margin: 70px 0;
    }

    .brand-message h1 {
        font-size: clamp(39px, 12vw, 56px);
    }

    .lead {
        margin-top: 25px;
        font-size: 15px;
    }

    .brand-note {
        max-width: 280px;
        line-height: 1.55;
    }

    .contact-panel {
        padding-top: 56px;
    }

    .status {
        margin-bottom: 46px;
    }

    .contact-item {
        grid-template-columns: 43px minmax(0, 1fr) 18px;
        gap: 13px;
        padding: 17px 0;
    }

    .contact-item__icon {
        width: 42px;
        height: 42px;
    }

    .contact-item strong {
        font-size: 13px;
    }

    .site-footer {
        flex-direction: column;
        gap: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
