

/* ============================================================
   ARE.PT
   TOKENS
   ============================================================ */
:root {
    --are-gold:        #C9A96E;
    --are-gold-light:  #E2C99A;
    --are-dark:        #1A1A1A;
    --are-charcoal:    #071c32ee;
    --are-mid:         #555555;
    --are-light:       #F7F5F1;
    --are-white:       #FFFFFF;
    --are-border:      #E0DAD0;

    --are-font-head:   'Cormorant Garamond', 'Georgia', serif;
    --are-font-body:   'Jost', 'Helvetica Neue', sans-serif;

    --are-radius:      6px;
    --are-radius-lg:   12px;
    --are-shadow:      0 2px 16px rgba(0,0,0,0.08);
    --are-shadow-lg:   0 8px 40px rgba(0,0,0,0.13);

    --are-max:         1200px;
    --are-pad:         clamp(24px, 5vw, 80px);
}

/* ============================================================
   GOOGLE FONTS — add to wp_head or @import in functions.php:
   @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Jost:wght@300;400;500&display=swap');
   ============================================================ */

/* ============================================================
   BASE
   ============================================================ */
.are-pt-main {
    font-family: var(--are-font-body);
    color: var(--are-dark);
    background: var(--are-white);
}

.are-container {
    max-width: var(--are-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.are-section {
    padding: clamp(60px, 8vw, 120px) 0;
}

.are-section__header {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 72px);
}

.are-section__h2 {
    font-family: var(--are-font-head);
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 500;
    color: var(--are-dark);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.are-section__intro {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--are-mid);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.are-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--are-radius);
    font-family: var(--are-font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.22s ease;
    cursor: pointer;
}

.are-btn--primary {
    background: var(--are-gold);
    color: var(--are-white);
    border: 2px solid var(--are-gold);
}
.are-btn--primary:hover {
    background: #b8925a;
    border-color: #b8925a;
    color: var(--are-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201,169,110,0.35);
}

.are-btn--outline {
    background: transparent;
    color: var(--are-white);
    border: 2px solid rgba(255,255,255,0.7);
}
.are-btn--outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--are-white);
    color: var(--are-white);
}

/* ============================================================
   HERO
   ============================================================ */
.are-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.are-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.are-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
}

.are-hero__overlay {
    position: absolute;
    inset: 0;
    background: #071c32ee;
}

.are-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--are-white);
    padding: clamp(40px, 8vw, 100px) clamp(20px, 4vw, 60px);
    max-width: 780px;
    animation: heroin 1s ease both;
}

@keyframes heroin {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.are-hero__badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 28px;
}

.are-hero__badge {
    font-family: var(--are-font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 20px;
    color: var(--are-white);
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.08);
}

.are-hero__badge--gold {
    border-color: var(--are-gold-light);
    color: var(--are-gold-light);
}

.are-hero__logo-wrap {
    margin-bottom: 28px;
}

.are-hero__logo {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
}

.are-hero__tagline {
    font-family: var(--are-font-head);
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 500;
    line-height: 1.12;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
    color: var(--are-white);
}

.are-hero__subline {
    font-size: clamp(15px, 1.8vw, 19px);
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    margin: 0 0 40px;
    font-weight: 300;
}

.are-hero__ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   WHO WE ARE
   ============================================================ */
.are-who {
    background: var(--are-light);
}

.are-who__founded {
    text-align: center;
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--are-mid);
    max-width: 640px;
    margin: -32px auto 56px;
    line-height: 1.7;
    font-style: italic;
}

.are-who__pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.are-who__pillar {
    background: var(--are-white);
    border-radius: var(--are-radius-lg);
    padding: clamp(28px, 4vw, 44px);
    box-shadow: var(--are-shadow);
    border: 1px solid var(--are-border);
    transition: box-shadow 0.22s, transform 0.22s;
}

.are-who__pillar:hover {
    box-shadow: var(--are-shadow-lg);
    transform: translateY(-3px);
}

.are-who__pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(201,169,110,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--are-gold);
    margin-bottom: 20px;
}

.are-who__pillar-title {
    font-family: var(--are-font-head);
    font-size: 22px;
    font-weight: 500;
    color: var(--are-dark);
    margin: 0 0 12px;
}

.are-who__pillar-text {
    font-size: 15px;
    color: var(--are-mid);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   OUR SITES
   ============================================================ */
.are-sites {
    background: var(--are-white);
}

.are-sites__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.are-site-card {
    position: relative;
    border-radius: var(--are-radius-lg);
    padding: clamp(28px, 3.5vw, 40px);
    border: 1px solid var(--are-border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.22s, transform 0.22s;
}

.are-site-card--live {
    background: var(--are-white);
    box-shadow: var(--are-shadow);
}

.are-site-card--live:hover {
    box-shadow: var(--are-shadow-lg);
    transform: translateY(-3px);
}

.are-site-card--soon {
    background: var(--are-light);
    opacity: 0.75;
}

.are-site-card__label {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    width: fit-content;
}

.are-site-card__label--live {
    background: rgba(201,169,110,0.15);
    color: #8a6830;
}

.are-site-card__label--soon {
    background: rgba(100,100,100,0.1);
    color: var(--are-mid);
}

.are-site-card__region {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--are-gold);
}

.are-site-card__name {
    font-family: var(--are-font-head);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 500;
    color: var(--are-dark);
    margin: 0;
    line-height: 1.2;
}

.are-site-card__desc {
    font-size: 14px;
    color: var(--are-mid);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.are-site-card .are-btn {
    margin-top: 8px;
    align-self: flex-start;
}

/* ============================================================
   OFFICES
   ============================================================ */
.are-offices {
    background: var(--are-charcoal);
}

.are-offices .are-section__h2 {
    color: var(--are-white);
}

.are-offices .are-section__intro {
    color: rgba(255,255,255,0.65);
}

.are-offices__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2px;
    border-radius: var(--are-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.are-office {
    padding: clamp(28px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
    background: rgba(255,255,255,0.04);
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.22s;
}

.are-office:last-child {
    border-right: none;
}

.are-office:hover {
    background: rgba(201,169,110,0.08);
}

.are-office__region {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--are-gold);
    margin-bottom: 10px;
}

.are-office__name {
    font-family: var(--are-font-head);
    font-size: 22px;
    font-weight: 500;
    color: var(--are-white);
    margin: 0 0 10px;
}

.are-office__desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.are-contact {
    background: var(--are-light);
}

.are-contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.are-contact__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(28px, 3.5vw, 44px) 24px;
    background: var(--are-white);
    border-radius: var(--are-radius-lg);
    border: 1px solid var(--are-border);
    box-shadow: var(--are-shadow);
    text-decoration: none;
    gap: 10px;
    transition: box-shadow 0.22s, transform 0.22s;
}

.are-contact__card:hover {
    box-shadow: var(--are-shadow-lg);
    transform: translateY(-3px);
}

.are-contact__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201,169,110,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--are-gold);
}

.are-contact__icon--whatsapp {
    background: rgba(37,211,102,0.1);
    color: #25D366;
}

.are-contact__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--are-mid);
}

.are-contact__value {
    font-family: var(--are-font-head);
    font-size: 18px;
    color: var(--are-dark);
    font-weight: 500;
}

.are-contact__sites {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.are-contact__license {
    text-align: center;
    font-size: 14px;
    color: var(--are-mid);
    letter-spacing: 0.04em;
    margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .are-hero {
        min-height: 100svh;
    }

    .are-offices__grid {
        grid-template-columns: 1fr 1fr;
    }

    .are-office {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .are-sites__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .are-hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .are-offices__grid {
        grid-template-columns: 1fr;
    }

    .are-contact__sites {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================================
   ANIMATION FOR HOMEPAGE HERO_SUBLINE - JAVASCRIPT
   ============================================================ */
.are-cursor {
    display: inline-block;
    width: 2px;
    height: 0.85em;
    background: var(--are-gold);
    margin-left: 2px;
    vertical-align: baseline;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}