/* ============================================================
   ABOUT — Black bg, centered white text, luxhabitat style
   ============================================================ */

#about {
    background: #000000;
    text-align: center;
}

.about__centered {
    max-width: 780px;
    margin: 0 auto;
}

.about__centered-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.about__centered-title em {
    font-style: italic;
    color: #ffffff;
}

.about__centered-p {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    font-weight: 400;
    color: #fff;
    line-height: 2;
    margin-bottom: 20px;
}

.about__centered-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: clamp(32px, 4vw, 48px);
    padding-top: clamp(28px, 3vw, 40px);
    border-top: 1px solid #fff;
}

.about__centered-features span {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.2s;
}

.about__centered-features span:hover {
    color: var(--color-gold);
}

@media (max-width: 600px) {
    .about__centered-features {
        gap: 20px;
    }
}

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
    background: var(--color-gold);
    overflow: hidden;
    padding: 14px 0;
}

.marquee__track {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 28s linear infinite;
}

.marquee__item {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-black);
    padding: 0 36px;
    flex-shrink: 0;
}

.marquee__dot {
    color: rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
    font-size: 0.45rem;
    align-self: center;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ============================================================
   AWARDS & RECOGNITION SECTION — white theme
   ============================================================ */

.awards-v1 {
    background: #ffffff;
}
.awards-v1 .eyebrow {
    color: var(--color-gold-dark);
}
.awards-v1 .eyebrow::before {
    background: var(--color-gold-dark);
}
.awards-v1 .section-title {
    color: #0c0a06;
}
.awards-v1 .section-title em {
    color: var(--color-gold-dark);
}
.awards-v1__lead {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: #302b1f;
    line-height: 1.8;
    max-width: 560px;
    margin-top: 16px;
}

.awards-v1__layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
}

.awards-v1__col--offset {
    margin-top: 0;
}

.awards-v1__item {
    position: relative;
    aspect-ratio: 3 / 2.6;
    overflow: hidden;
    background: #f0eee8;
    border: 1px solid var(--color-gold-border);
}

/* Museum-style corner brackets — reads as a "framed" award */
.awards-v1__item::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    border-left: 1px solid rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    border-right: 1px solid rgba(255, 255, 255, 0.55);
    -webkit-mask:
        linear-gradient(#fff, #fff) top left / 26px 26px no-repeat,
        linear-gradient(#fff, #fff) top right / 26px 26px no-repeat,
        linear-gradient(#fff, #fff) bottom left / 26px 26px no-repeat,
        linear-gradient(#fff, #fff) bottom right / 26px 26px no-repeat;
    mask:
        linear-gradient(#fff, #fff) top left / 26px 26px no-repeat,
        linear-gradient(#fff, #fff) top right / 26px 26px no-repeat,
        linear-gradient(#fff, #fff) bottom left / 26px 26px no-repeat,
        linear-gradient(#fff, #fff) bottom right / 26px 26px no-repeat;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.awards-v1__item:hover::before {
    opacity: 1;
}

.awards-v1__index {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #ffffff;
    background: rgba(8, 8, 8, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 5px 11px;
}

.awards-v1__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    transition:
        transform 0.5s var(--ease-smooth, ease),
        filter 0.3s ease;
}
.awards-v1__item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}
.awards-v1__item-fallback {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
    background: #f0eee8;
}
.awards-v1__item.is-empty .awards-v1__item-fallback {
    display: flex;
}
.awards-v1__item.is-empty img {
    display: none;
}
.awards-v1__item.is-empty .awards-v1__index {
    background: rgba(0, 0, 0, 0.12);
    color: var(--color-gold-dark);
    border-color: var(--color-gold-border);
}

.awards-v1__caption {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.awards-v1__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0) 40%
    );
    pointer-events: none;
}
.awards-v1__item.is-empty .awards-v1__caption,
.awards-v1__item.is-empty::after {
    display: none;
}

@media (max-width: 900px) {
    .awards-v1__layout {
        grid-template-columns: 1fr;
    }
    .awards-v1__col--offset {
        margin-top: 0;
    }
    .awards-v1__item {
        aspect-ratio: 16 / 11;
    }
}

/* ============================================================
   SERVICES SECTION — statement + floating stats, then boxed grid
   ============================================================ */

.services-v3 {
    background: #ffffff;
}
.services-v3 .eyebrow {
    color: #000000;
}
.services-v3 .eyebrow::before {
    background: var(--color-gold);
}
.services-v3 .section-title {
    color: #000000;
    font-weight: 500;
    margin-top: var(--space-sm);
}
.services-v3 .section-title em {
    color: var(--color-gold-dark);
    font-weight: 400;
}
.services-v3 .btn--outline {
    border-color: #0c0a06;
    color: #0c0a06;
}
.services-v3 .btn--outline:hover {
    background: #0c0a06;
    border-color: #0c0a06;
    color: #ffffff;
}

/* --- Intro: copy left, floating stats + photo right --- */
.services-v3__intro {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
    margin-bottom: clamp(56px, 7vw, 96px);
    padding-top: clamp(20px, 3vw, 36px);
}

.services-v3__copy {
    padding-top: clamp(50px, 6vw, 90px);
}

.services-v3__copy .section-title {
    margin-bottom: clamp(20px, 2.4vw, 30px);
}

.services-v3__lead {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 480px;
}

.services-v3__copy .btn {
    margin-top: 12px;
}

/* Visual: diamonds floating above the photo — bleeds to the true
   right edge of the viewport for an immersive, full-height feel */
.services-v3__visual {
    display: flex;
    flex-direction: column;
    margin-right: calc(-1 * var(--section-x));
}

.services-v3__stats {
    display: flex;
    justify-content: space-between;
    padding: 0 clamp(6px, 2vw, 24px);
    margin-bottom: -34px;
    z-index: 2;
    position: relative;
}

.services-v3__diamond {
    width: clamp(84px, 9vw, 128px);
    height: clamp(84px, 9vw, 128px);
    border: 1px solid var(--color-gold-border);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(24, 21, 15, 0.07);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}
.services-v3__diamond:hover {
    border-color: var(--color-gold);
    box-shadow: 0 18px 36px rgba(24, 21, 15, 0.12);
}
.services-v3__diamond.is-up {
    margin-top: 0;
}
.services-v3__diamond.is-down {
    margin-top: clamp(20px, 3vw, 40px);
}

.services-v3__diamond-inner {
    transform: rotate(-45deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3px;
    padding: 8px;
}

.services-v3__num {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.6vw, 1.5rem);
    font-weight: 500;
    color: #000000;
    line-height: 1;
    white-space: nowrap;
}

.services-v3__label {
    font-family: var(--font-body);
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #000000;
    line-height: 1.2;
}

.services-v3__photo {
    position: relative;
    height: clamp(420px, 62vh, 720px);
    overflow: hidden;
    z-index: 1;
    background: #e8e5dd;
}
.services-v3__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-v3__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 8, 4, 0.55) 0%,
        rgba(10, 8, 4, 0) 30%
    );
    pointer-events: none;
}
.services-v3__caption {
    position: absolute;
    left: 20px;
    bottom: 16px;
    z-index: 2;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250, 248, 242, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}
.services-v3__caption::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--color-gold);
}

/* --- Bordered box grid — the 6 services --- */
.services-v3__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--color-gold-border);
    border-left: 1px solid var(--color-gold-border);
}

.services-v3__box {
    position: relative;
    border-right: 1px solid var(--color-gold-border);
    border-bottom: 1px solid var(--color-gold-border);
    padding: clamp(28px, 3vw, 40px) clamp(24px, 2.6vw, 34px);
    transition: background 0.25s ease;
    overflow: hidden;
}
.services-v3__box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.services-v3__box:hover {
    background: rgba(255, 255, 255, 0.06);
}
.services-v3__box:hover::before {
    transform: scaleX(1);
}

.services-v3__box-num {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-gold-dark);
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.services-v3__box-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 12px;
}

.services-v3__box-desc {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.75;
}

@media (max-width: 1024px) {
    .services-v3__intro {
        grid-template-columns: 1fr;
    }
    .services-v3__visual {
        order: -1;
        margin-left: calc(-1 * var(--section-x));
        margin-right: calc(-1 * var(--section-x));
    }
    .services-v3__copy {
        padding-top: 0;
    }
    .services-v3__lead {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .services-v3__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-v3__diamond {
        width: 78px;
        height: 78px;
    }
    .services-v3__label {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-v3__grid {
        grid-template-columns: 1fr;
    }
    .services-v3__stats {
        margin-bottom: -20px;
    }
    .services-v3__diamond {
        width: 62px;
        height: 62px;
    }
    .services-v3__num {
        font-size: 0.85rem;
    }
}

/* ============================================================
   PROPERTIES SECTION
   ============================================================ */

#properties .eyebrow {
    color: #ffffff;
}
#properties .eyebrow::before {
    background: #ffffff;
}
#properties .section-title em {
    color: #ffffff;
}

.properties__tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: clamp(32px, 5vw, 60px);
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.properties__tabs::-webkit-scrollbar {
    display: none;
}

.prop-tab {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gray);
    padding: 14px 28px;
    border-bottom: 2px solid transparent;
    transition: all var(--duration-base);
    white-space: nowrap;
    flex-shrink: 0;
}

.prop-tab.is-active {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.prop-tab:hover:not(.is-active) {
    color: var(--color-white);
}

.properties__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

/* --- Desktop: adapt columns to card count so nothing hangs alone ---
   4 cards -> 2x2. 2 cards -> side by side. 1 card -> centered.
   3 (default) and other counts fall back to 3-per-row wrapping. */
@media (min-width: 1025px) {
    .properties__grid:has(.prop-card:nth-child(4):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }
    .properties__grid:has(.prop-card:nth-child(2):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }
    .properties__grid:has(.prop-card:first-child:last-child) {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
}

/* --- Property Card --- */
.prop-card {
    background: var(--color-black-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    transform-style: preserve-3d;
    transition:
        transform var(--duration-base) var(--ease-smooth),
        border-color var(--duration-base) var(--ease-smooth),
        box-shadow var(--duration-base) var(--ease-smooth);
}

.prop-card:hover {
    border-color: var(--color-gold-border);
    box-shadow: var(--shadow-hover);
}

.prop-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.prop-card__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.45s var(--ease-smooth);
}

.prop-card__track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: filter var(--duration-slow);
}

.prop-card:hover .prop-card__track img {
    filter: brightness(1);
}

/* Prev/next arrows */
.prop-card__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(8, 8, 8, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
    z-index: 3;
    padding: 0;
}
.prop-card__nav:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}
.prop-card__nav--prev {
    left: 12px;
}
.prop-card__nav--next {
    right: 12px;
}

/* Dot indicators */
.prop-card__dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}
.prop-card__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition:
        background 0.2s ease,
        width 0.2s ease;
}
.prop-card__dot.is-active {
    background: var(--color-gold);
    width: 16px;
    border-radius: 3px;
}

/* Badge — dark glass pill with gold hairline, not a solid block */
.prop-card__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: rgba(8, 8, 8, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--color-gold-border);
    color: var(--color-gold-light);
    padding: 7px 15px;
}

.prop-card__body {
    padding: clamp(22px, 3vw, 32px);
}

.prop-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.prop-card__name {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

.prop-card__specs {
    display: flex;
    gap: 18px;
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-gray-border);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.prop-spec {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--color-gray-light);
}

.prop-spec__icon {
    color: var(--color-gold);
    flex-shrink: 0;
    opacity: 0.9;
}

.prop-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-sm);
}

.prop-card__price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-gold-light);
    line-height: 1;
}

.prop-card__price span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-top: 6px;
}

.prop-card__footer .btn {
    padding: 11px 24px;
    font-size: 0.62rem;
}

@media (max-width: 1024px) {
    .properties__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Mobile: properties become a swipeable carousel, not a stack --- */
@media (max-width: 600px) {
    .properties__grid {
        display: flex;
        grid-template-columns: unset;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .properties__grid::-webkit-scrollbar {
        display: none;
    }
    .prop-card {
        flex: 0 0 86%;
        scroll-snap-align: center;
    }
    /* On touch devices there's no hover, so keep arrows visible */
    .prop-card__nav {
        opacity: 1;
    }
    /* Cards are swiped through horizontally, not scrolled into view
       vertically — the fade-in-on-scroll "reveal" system was
       causing each card to sit blank for a moment after every
       swipe before catching up and fading in. Cards should just be
       visible immediately here, same as any normal carousel. */
    .prop-card.reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ============================================================
   TEAM SECTION
   ============================================================ */

#team .eyebrow {
    color: #ffffff;
}
#team .eyebrow::before {
    background: #ffffff;
}
#team .section-title em {
    color: #ffffff;
}

.team__grid {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 32px);
}

.team-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 270px) 1fr;
    overflow: hidden;
    background: var(--color-black-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition:
        border-color var(--duration-base),
        transform var(--duration-base) var(--ease-smooth),
        box-shadow var(--duration-base) var(--ease-smooth);
    transform-style: preserve-3d;
}

.team-card:hover {
    border-color: var(--color-gold-border);
    box-shadow: var(--shadow-card);
}

/* Alternate photo side for editorial rhythm across any number of cards */
.team-card:nth-child(even) {
    grid-template-columns: 1fr minmax(220px, 270px);
}
.team-card:nth-child(even) .team-card__photo {
    order: 2;
}
.team-card:nth-child(even) .team-card__photo::after {
    background: linear-gradient(
        to left,
        transparent 55%,
        var(--color-black-card) 100%
    );
}
.team-card:nth-child(even) .team-card__index {
    left: auto;
    right: 20px;
}

.team-card__index {
    display: none;
}

.team-card__photo {
    position: relative;
    overflow: hidden;
    align-self: start;
    display: block;
    min-height: 300px;
}

.team-card__photo-fallback {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        145deg,
        var(--color-black-card) 0%,
        #1c1a12 100%
    );
    color: var(--color-gold);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 3.4rem;
    letter-spacing: 0.05em;
}

.team-card__photo img {
    display: block;
    width: 100%;
    height: auto;
    filter: grayscale(25%);
    transition:
        filter var(--duration-slow),
        transform var(--duration-slow) var(--ease-smooth);
}

.team-card:hover .team-card__photo img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

.team-card__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        transparent 55%,
        var(--color-black-card) 100%
    );
}

.team-card__body {
    padding: clamp(20px, 2.4vw, 30px) clamp(24px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--space-sm);
}

.team-card__role {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.team-card__name {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.team-card__bio {
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--color-gray);
    line-height: 1.65;
    flex: 1;
}

.team-card__langs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.lang-tag {
    font-family: var(--font-body);
    font-size: 0.52rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid var(--color-gold-border);
    padding: 5px 11px;
}

.team-card__cred {
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-gray-border);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-gold);
    line-height: 1;
}

.team-card__cred span {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--color-gray);
    letter-spacing: 0.08em;
    margin-top: 4px;
}

@media (max-width: 600px) {
    .team-card,
    .team-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .team-card:nth-child(even) .team-card__photo {
        order: 0;
    }

    .team-card:nth-child(even) .team-card__index {
        left: 20px;
        right: auto;
    }

    .team-card__photo {
        min-height: unset;
        height: 400px;
        width: 100%;
    }

    .team-card__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }

    .team-card__photo::after,
    .team-card:nth-child(even) .team-card__photo::after {
        background: linear-gradient(
            to bottom,
            transparent 55%,
            var(--color-black-card) 100%
        );
    }
}

/* ============================================================
   WHY US SECTION
   ============================================================ */

.why__intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.why__intro .eyebrow {
    justify-content: center;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: clamp(40px, 6vw, 70px);
}

.why-card {
    padding: clamp(28px, 4vw, 48px) clamp(20px, 2.5vw, 32px);
    background: var(--color-black-card);
    border-bottom: 2px solid transparent;
    text-align: center;
    transition:
        background var(--duration-base),
        border-color var(--duration-base),
        transform var(--duration-base) var(--ease-smooth);
}

.why-card:hover {
    background: #16160e;
    border-bottom-color: var(--color-gold);
    transform: translateY(-4px);
}

.why-card__icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: var(--space-sm);
    filter: grayscale(1) brightness(1.5);
    transition: filter var(--duration-base);
}

.why-card:hover .why-card__icon {
    filter: none;
}

.why-card__num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--color-gold);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.why-card__label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--color-gray-light);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: var(--space-sm);
}

.why-card__desc {
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--color-gray);
    line-height: 1.8;
}

@media (max-width: 900px) {
    .why__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================================
   TESTIMONIALS SECTION — white bg, dark teal cards
   ============================================================ */

.testimonials-v2 {
    background: #ffffff;
}
.testimonials-v2 .eyebrow {
    color: var(--color-gold-dark);
}
.testimonials-v2 .eyebrow::before {
    background: var(--color-gold-dark);
}
.testimonials-v2 .section-title {
    color: #0c0a06;
}
.testimonials-v2 .section-title em {
    color: var(--color-gold-dark);
}

/* Credibility anchor — gives the quotes below something to hang off */
.testimonials-v2__rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
}
.testimonials-v2__rating-stars {
    color: var(--color-gold);
    font-size: 1.05rem;
    letter-spacing: 0.1em;
}
.testimonials-v2__rating-text {
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 400;
    color: #4a4433;
}
.testimonials-v2__rating-text strong {
    color: #0c0a06;
    font-weight: 600;
}

/* Large faint quotation mark spanning behind the row of cards —
   ties the three cards together as one composed "wall of quotes"
   instead of three unrelated boxes */
.testimonials__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}
.testimonials__grid::before {
    content: "\201C";
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 14rem;
    line-height: 1;
    color: rgba(201, 168, 76, 0.08);
    pointer-events: none;
    z-index: 0;
}
.testimonials__grid > * {
    position: relative;
    z-index: 1;
}

.testimonial-card {
    padding: clamp(28px, 3.5vw, 44px) clamp(22px, 3vw, 36px);
    background: var(--color-teal);
    border: none;
    position: relative;
    transition:
        transform var(--duration-base) var(--ease-smooth),
        box-shadow var(--duration-base) var(--ease-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(22, 48, 61, 0.3);
}

.testimonial-card::before {
    display: none;
}

/* Middle card — featured, different color from the two teal side cards */
.testimonial-card:nth-child(2) {
    background: linear-gradient(155deg, var(--color-gold) 0%, #b08f3a 100%);
    border: none;
    box-shadow: 0 30px 60px rgba(139, 111, 38, 0.35);
}
.testimonial-card:nth-child(2):hover {
    transform: translateY(-4px);
}
.testimonial-card:nth-child(2)::after {
    content: "\201C";
    position: absolute;
    top: 6px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: rgba(10, 8, 4, 0.15);
    pointer-events: none;
}
.testimonial-card:nth-child(2) .testimonial-card__text {
    font-size: 1.05rem;
    color: #1a1508;
}
.testimonial-card:nth-child(2) .testimonial-card__stars {
    color: #1a1508;
}
.testimonial-card:nth-child(2) .testimonial-card__name {
    color: #0c0a06;
}
.testimonial-card:nth-child(2) .testimonial-card__from {
    color: rgba(10, 8, 4, 0.6);
}

@media (max-width: 900px) {
    .testimonial-card:nth-child(2) {
        transform: none;
    }
    .testimonial-card:nth-child(2):hover {
        transform: translateY(-4px);
    }
}

.testimonial-card__stars {
    display: flex;
    gap: 3px;
    color: var(--color-gold-light);
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
}

.testimonial-card__text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    font-style: normal;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-card__name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold-light);
}

.testimonial-card__from {
    font-size: var(--text-xs);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

@media (max-width: 900px) {
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================================
   CTA BANNER — white theme, teal accent close
   ============================================================ */

.cta-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: calc(var(--section-y) + 40px) var(--section-x);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.82) 0%,
            rgba(255, 255, 255, 0.55) 45%,
            rgba(255, 255, 255, 0.9) 100%
        ),
        url("https://images.unsplash.com/photo-1748373461646-f6b6d6816f05?w=1800&q=80")
            center / cover no-repeat;
}

/* Soft gradient tint on top of the photo for a bit of brand color */
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(201, 168, 76, 0.08) 0%,
        transparent 65%
    );
    pointer-events: none;
}

.cta-section::after {
    display: none;
}

.cta-section > * {
    position: relative;
    z-index: var(--z-above);
}

.cta-section .eyebrow {
    color: var(--color-gold-dark);
}
.cta-section .eyebrow::before {
    background: var(--color-gold-dark);
}

.cta-section__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    font-weight: 400;
    color: #0c0a06;
    line-height: 1.1;
    margin-top: var(--space-sm);
}

.cta-section__title em {
    font-style: italic;
    color: var(--color-gold-dark);
}

.cta-section__sub {
    font-size: var(--text-base);
    font-weight: 400;
    color: #3c3627;
    letter-spacing: 0.02em;
    line-height: 1.85;
    margin-top: var(--space-md);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section__line {
    width: 50px;
    height: 1px;
    background: var(--color-gold-dark);
    margin: var(--space-md) auto;
}

.cta-section__actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

/* Primary — teal fill, matches the Testimonials/Review close */
.cta-section .btn--primary {
    background: var(--color-teal);
    color: #ffffff;
}
.cta-section .btn--primary::before {
    background: var(--color-teal-light);
}

/* Secondary — dark outline, readable on the light wash */
.cta-section .btn--outline {
    border: 1px solid #0c0a06;
    color: #0c0a06;
}
.cta-section .btn--outline:hover {
    background: #0c0a06;
    border-color: #0c0a06;
    color: #ffffff;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

#contact .eyebrow {
    color: #ffffff;
}
#contact .eyebrow::before {
    background: #ffffff;
}
#contact .section-title em {
    color: #ffffff;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: start;
}

/* --- Info --- */
.contact-info__item {
    display: flex;
    gap: var(--space-md);
    padding-bottom: var(--space-lg);
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-gray-border);
}

.contact-info__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info__icon {
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold);
}

.contact-info__label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 6px;
}

.contact-info__value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-white);
    transition: color var(--duration-fast);
}

a.contact-info__value:hover {
    color: var(--color-gold);
    opacity: 1;
}

/* --- Form --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    border-radius: 0;
    padding: clamp(24px, 3vw, 36px);
    background: #000000 !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
}

.form-control {
    width: 100%;
    background: var(--color-black-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    padding: 13px 16px;
    outline: none;
    transition: border-color var(--duration-base);
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.form-control:focus {
    border-color: var(--color-gold-border);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.form-control--textarea {
    resize: vertical;
    min-height: 120px;
}

.form-control option {
    background: var(--color-black-mid);
}

.form-submit {
    width: 100%;
    background: var(--color-gold);
    color: #000000;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 17px;
    cursor: pointer;
    transition:
        background var(--duration-base),
        transform var(--duration-fast);
    margin-top: 8px;
    border: none;
    border-radius: 0;
}

.form-submit:hover {
    background: var(--color-gold-light);
}

.form-submit:active {
    transform: scale(0.99);
}

.form-submit.is-sent {
    background: #2a5225;
    color: #fff;
    letter-spacing: 0.1em;
}

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

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: #000000;
    padding: clamp(28px, 4vw, 44px) var(--section-x) clamp(40px, 5vw, 56px);
}

.footer__panel {
    border-radius: 0;
    padding: clamp(28px, 3.5vw, 44px) clamp(24px, 3vw, 40px);
    background: #000000 !important;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    margin-bottom: clamp(40px, 5vw, 60px);
}

.footer__brand-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white);
    line-height: 1;
}

.footer__brand-logo span {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.5em;
    color: var(--color-gold);
    margin-top: 5px;
}

.footer__brand-desc {
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--color-gray);
    line-height: 1.85;
    margin-top: var(--space-md);
    max-width: 280px;
}

.footer__col-title {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--color-gray);
    transition: color var(--duration-fast);
}

.footer__link:hover {
    color: var(--color-gold);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-gray-border);
    flex-wrap: wrap;
}

.footer__copy {
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--color-gray);
    letter-spacing: 0.04em;
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__social {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    font-size: 14px;
    transition: all var(--duration-base);
}

.footer__social:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

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

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

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */

.wa-float {
    position: fixed;
    bottom: clamp(20px, 4vw, 32px);
    right: clamp(16px, 3vw, 32px);
    z-index: var(--z-float);
}

.wa-float__btn {
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.35);
    transition:
        transform var(--duration-fast) var(--ease-bounce),
        box-shadow var(--duration-fast);
    animation: wa-pulse 3s ease-in-out infinite;
}

.wa-float__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}

.wa-float__btn svg {
    width: 26px;
    height: 26px;
    fill: white;
}

@keyframes wa-pulse {
    0%,
    100% {
        box-shadow: 0 6px 28px rgba(37, 211, 102, 0.35);
    }
    50% {
        box-shadow:
            0 6px 48px rgba(37, 211, 102, 0.5),
            0 0 0 8px rgba(37, 211, 102, 0.07);
    }
}

/* Custom cursor styles live in base.css (single source of truth —
   a duplicate block here was overriding it with a lower z-index,
   which is why the cursor wasn't rendering above other elements) */
