:root {
    --page-background: #f6f4ef;
    --card-background: #ffffff;

    --text-color: #171a29;
    --muted-color: #626773;

    --border-color: #dedbd3;

    --brand-gold: #b28a59;
    --accent-color: #86643f;

    --dark-surface: #171a29;
    --dark-surface-soft: #25293b;
    --text-on-dark: #ffffff;
}

* {
    box-sizing: border-box;
}
[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-background);
    color: var(--text-color);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

.projects-section {
    padding: 90px 0;
}

.section-heading {
    margin-bottom: 36px;
}

.section-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.1;
}

.eyebrow {
    margin: 0;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.project-card {
    overflow: hidden;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 18px;
}

.project-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    padding: 26px;
}

.project-type {
    margin: 0 0 10px;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-content h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
}

.project-location {
    margin: 12px 0 0;
    color: var(--muted-color);
    font-weight: 700;
}

.project-summary {
    margin: 14px 0 0;
    color: var(--muted-color);
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .projects-section {
        padding: 60px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-content {
        padding: 20px;
    }
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgb(246 244 239 / 92%);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(14px);
}

.navbar {
    min-height: 84px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
}

.brand {
    width: 150px;
    display: block;
}

.brand-logo {
    width: 100%;
    height: auto;
    display: block;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
}

.navigation a {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        opacity 180ms ease;
}

.navigation a:hover {
    color: var(--accent-color);
    background: rgba(155, 117, 72, 0.06);
}

.navigation a[aria-current="page"] {
    color: var(--accent-color);
    background: rgba(155, 117, 72, 0.12);
    font-weight: 700;
}

.language-switch {
    justify-self: end;
    display: flex;
    align-items: center;
}

.language-switch-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    background: #ffffff;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(23, 32, 28, 0.04);
    transition:
        background-color 220ms ease,
        border-color 220ms ease,
        color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.language-switch-icon {
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    transition: transform 300ms ease;
}

.language-switch-link:hover {
    background: var(--text-color);
    color: #ffffff;
    border-color: var(--text-color);
    box-shadow: 0 6px 18px rgba(23, 32, 28, 0.12);
    transform: translateY(-1px);
}

.language-switch-link:hover .language-switch-icon {
    transform: rotate(25deg) scale(1.1);
}

.hero {
    display: flex;
    min-height: calc(100vh - 84px);
    align-items: center;
    padding: 90px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 70px;
}

.hero-content {
    max-width: 760px;
}

.hero-content h1 {
    max-width: 760px;
    margin: 20px 0 26px;
    font-size: clamp(42px, 5.5vw, 76px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -4px;
}

.hero-description {
    max-width: 560px;
    margin: 0;
    color: var(--muted-color);
    font-size: 19px;
}

.primary-button {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 38px;
    padding: 15px 24px;
    background: var(--text-color);
    color: #ffffff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.primary-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.hero-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    background:
    linear-gradient(
        145deg,
        var(--dark-surface-soft),
        var(--dark-surface)
    );
}

.hero-card span {
    color: rgb(255 255 255 / 65%);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-card strong {
    max-width: 240px;
    font-size: 34px;
    line-height: 1.1;
}

.site-footer {
    padding: 45px 0;
    background: var(--text-color);
    color: #ffffff;
}

.site-footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-footer-logo {
    width: 170px;
    height: auto;
    display: block;
    filter: invert(1);
}

.site-footer p {
    margin: 0;
    color: rgb(255 255 255 / 65%);
}

.site-footer-brand,
.site-footer-info {
    display: grid;
    gap: 10px;
}

.site-footer-info {
    justify-items: end;
    max-width: 430px;
    text-align: end;
}

.site-footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.site-footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-footer-social svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.site-footer-social-dot {
    fill: currentColor;
    stroke: none;
}

.site-footer-whatsapp-icon {
    fill: currentColor !important;
    stroke: none !important;
}

.site-footer-social:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 4px;
}

.site-footer-address {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    max-width: 430px;
    margin: 2px 0 0;
    color: rgb(255 255 255 / 72%);
    font-size: 14px;
    font-style: normal;
    line-height: 1.75;
    min-width: 0;
}

.site-footer-address svg {
    flex: 0 0 auto;
    margin-top: 2px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.site-footer-address span {
    display: grid;
    gap: 2px;
    min-width: 0;
    overflow-wrap: anywhere;
}

.site-footer-address strong {
    color: #ffffff;
    font-weight: 700;
}

.site-footer-privacy {
    color: rgb(255 255 255 / 72%);
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer-privacy:hover,
.site-footer-privacy:focus-visible {
    color: #ffffff;
}

.site-footer-newsletter {
    display: grid;
    gap: 10px;
    width: 100%;
    max-width: 360px;
    margin-top: 8px;
}

.site-footer-newsletter label {
    color: rgb(255 255 255 / 72%);
    font-size: 14px;
}

.site-footer-newsletter-row,
.newsletter-cta-row {
    display: flex;
    gap: 10px;
    /* Without this the input's default size attribute sets the row's
       min-content width, and the surrounding grid track refuses to
       shrink below it, overflowing very narrow phones. */
    min-width: 0;
}

.site-footer-newsletter input,
.newsletter-cta-row input {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 46px;
    padding: 10px 14px;
    background: rgb(255 255 255 / 8%);
    color: #ffffff;
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: 12px;
    outline: none;
    font: inherit;
    font-size: 14px;
    transition:
        background 180ms ease,
        border-color 180ms ease;
}

.site-footer-newsletter input::placeholder,
.newsletter-cta-row input::placeholder {
    color: rgb(255 255 255 / 45%);
}

.site-footer-newsletter input:focus,
.newsletter-cta-row input:focus {
    background: rgb(255 255 255 / 12%);
    border-color: var(--brand-gold);
}

.site-footer-newsletter button,
.newsletter-cta-row button {
    min-height: 46px;
    padding: 10px 22px;
    background: var(--brand-gold);
    color: #ffffff;
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 180ms ease;
}

.site-footer-newsletter button:hover,
.newsletter-cta-row button:hover {
    background: var(--accent-color);
}

.site-footer-newsletter button:focus-visible,
.newsletter-cta-row button:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* Same off-screen hiding as the contact form honeypot; duplicated
   here because contact.css only loads on the contact page while
   these forms appear everywhere. */
.newsletter-honeypot {
    position: absolute;
    inset-inline-start: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* The prominent signup band (includes/newsletter_cta.html), shown
   on the news pages. */
.newsletter-cta {
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, 1fr);
    align-items: center;
    gap: 34px;
    margin-top: 70px;
    padding: 42px 46px;
    background: var(--dark-surface);
    color: #ffffff;
    border-radius: 24px;
}

.newsletter-cta-eyebrow {
    margin: 0;
    color: var(--brand-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.newsletter-cta h2 {
    margin: 8px 0 0;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.15;
}

.newsletter-cta-text > p:last-child {
    margin: 12px 0 0;
    color: rgb(255 255 255 / 65%);
}

.newsletter-cta-form {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.newsletter-cta-hint {
    margin: 0;
    color: rgb(255 255 255 / 55%);
    font-size: 12.5px;
}

.newsletter-cta-hint a {
    color: var(--brand-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

[dir="rtl"] .newsletter-cta-eyebrow {
    letter-spacing: 0;
}

[dir="rtl"] .newsletter-cta h2 {
    line-height: 1.35;
}

/* Newsletter pages reuse the contact form styling; the card stands
   alone there, so it is narrowed instead of sitting in a two-column
   grid. The h1 takes the size contact.css gives its h2. */
.newsletter-page .newsletter-container {
    max-width: 640px;
}

.newsletter-page .contact-form-heading h1,
.newsletter-page .contact-success h1 {
    margin: 0;
    font-size: 32px;
    line-height: 1.15;
}

.newsletter-page .contact-form-heading .eyebrow {
    margin-bottom: 10px;
}

.newsletter-page .contact-success {
    min-height: 320px;
}

[dir="rtl"] .newsletter-page .contact-form-heading h1,
[dir="rtl"] .newsletter-page .contact-success h1 {
    line-height: 1.35;
}

.site-footer-bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgb(255 255 255 / 14%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.site-footer-copyright {
    margin: 0;
    color: rgb(255 255 255 / 65%);
    font-size: 0.84rem;
}

.site-footer-credit {
    margin: 0;
}

.site-footer-credit a {
    color: rgb(255 255 255 / 48%);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    line-height: 1.5;
    text-decoration: none;
    transition: color 180ms ease;
}

.site-footer-credit a:hover,
.site-footer-credit a:focus-visible {
    color: rgb(255 255 255 / 88%);
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-underline-offset: 6px;
}

[dir="rtl"] .eyebrow {
    letter-spacing: 0;
}

/* Arabic glyphs carry ascenders, descenders and tashkeel, so the tight
   Latin display leading collapses the lines into each other. */
[dir="rtl"] .hero-content h1 {
    font-size: clamp(36px, 4.4vw, 62px);
    line-height: 1.25;
    letter-spacing: 0;
}

[dir="rtl"] .section-heading h2 {
    line-height: 1.35;
}

[dir="rtl"] .hero-card strong {
    line-height: 1.35;
}

@media (max-width: 720px) {
    .navbar {
        min-height: auto;
        grid-template-columns: 1fr auto;
        padding-block: 18px;
    }

    .navigation {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: center;
        padding-top: 14px;
        border-top: 1px solid var(--border-color);
    }

    .hero {
        min-height: auto;
        padding: 70px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hero-content h1 {
        font-size: clamp(34px, 10vw, 50px);
        letter-spacing: -2px;
    }

    [dir="rtl"] .hero-content h1 {
        font-size: clamp(28px, 8.5vw, 42px);
        letter-spacing: 0;
    }

    .hero-card {
        min-height: 210px;
    }

    .site-footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer-info {
        justify-items: start;
        text-align: start;
    }

    .site-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .newsletter-cta {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 52px;
        padding: 30px 22px;
    }
}
.skip-link {
    position: fixed;
    top: 12px;
    inset-inline-start: 12px;
    z-index: 1000;
    padding: 10px 16px;
    background: var(--text-color);
    color: #ffffff;
    border-radius: 8px;
    transform: translateY(calc(-100% - 24px));
    transition: transform 180ms ease;
}
.skip-link:focus {
    transform: translateY(0);
}
.project-card {
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.project-card-link {
    height: 100%;
    display: block;
    color: inherit;
}

.project-card-link:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: -3px;
}

.project-image img {
    transition: transform 350ms ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgb(155 117 72 / 45%);
    box-shadow: 0 20px 45px rgb(23 32 28 / 12%);
}

.project-card:hover .project-image img {
    transform: scale(1.035);
}

.project-card-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 700;
}
.menu-toggle {
    display: none;
}

@media (max-width: 720px) {
    .navbar {
        grid-template-columns:
            minmax(0, 1fr)
            auto
            auto;
        gap: 14px;
    }

    .brand {
        grid-column: 1;
        grid-row: 1;
    }

    .language-switch {
        grid-column: 2;
        grid-row: 1;
    }

    .language-switch-link {
        min-height: 42px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .menu-toggle {
        grid-column: 3;
        grid-row: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        min-height: 42px;
        padding: 8px 12px;
        background: transparent;
        color: var(--text-color);
        border: 1px solid var(--border-color);
        border-radius: 999px;
        font: inherit;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
    }

    .menu-toggle:hover {
        border-color: var(--accent-color);
    }

    .menu-toggle:focus-visible {
        outline: 3px solid var(--accent-color);
        outline-offset: 3px;
    }

    .menu-toggle-icon {
        position: relative;
        width: 20px;
        height: 14px;
        display: block;
    }

    .menu-toggle-icon span {
        position: absolute;
        inset-inline: 0;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        transition:
            top 180ms ease,
            bottom 180ms ease,
            transform 180ms ease;
    }

    .menu-toggle-icon span:first-child {
        top: 3px;
    }

    .menu-toggle-icon span:last-child {
        bottom: 3px;
    }

    .menu-toggle[aria-expanded="true"]
        .menu-toggle-icon span:first-child {
        top: 6px;
        transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"]
        .menu-toggle-icon span:last-child {
        bottom: 6px;
        transform: rotate(-45deg);
    }

    .navigation {
        width: 100%;
        grid-column: 1 / -1;
        grid-row: 2;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        margin-top: 4px;
        padding-top: 12px;
        border-top: 1px solid var(--border-color);
    }

    .navigation[hidden] {
        display: none;
    }

    .navigation a {
        padding: 12px 14px;
        border-bottom: 1px solid var(--border-color);
        border-radius: 8px;
    }

    .navigation a[aria-current="page"] {
        color: var(--accent-color);
        background: rgba(155, 117, 72, 0.1);
        font-weight: 700;
    }

    .navigation a:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 420px) {
    .menu-toggle {
        width: 42px;
        padding-inline: 0;
    }

    .menu-toggle-text {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip-path: inset(50%);
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .menu-toggle-icon span {
        transition: none;
    }
}
.home-partners {
    padding: 90px 0;
    background: #ffffff;
    border-block:
        1px solid
        var(--border-color);
}

/*
 * Wrapping flex rather than grid. A grid row that is not full leaves
 * its last logos pinned to the start of the row, and grid has no way
 * to centre a partial row, so seven partners read as a row that ran
 * out. Flex items centre, whatever the count.
 */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/*
 * Fixed width rather than a growing one. Letting the boxes stretch
 * to fill their row makes a lone logo on the last row noticeably
 * wider than the six above it, which reads as a mistake.
 */
.partner-item {
    flex: 0 0 190px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 150px;
    padding: 26px 20px;
    background: var(--page-background);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

/*
 * Partner logos arrive at whatever size the partner sends, so the
 * box is fixed and the image is contained inside it. Without that a
 * single tall or very wide logo sets the height of the whole row.
 */
.partner-logo {
    width: auto;
    max-width: 100%;
    height: 64px;
    object-fit: contain;
}

.partner-name {
    margin: 0;
    color: var(--muted-color);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 720px) {
    .home-partners {
        padding: 70px 0;
    }

    .partners-grid {
        gap: 14px;
    }

    .partner-item {
        flex-basis: 140px;
        gap: 12px;
        min-height: 130px;
        padding: 20px 14px;
    }

    .partner-logo {
        height: 52px;
    }
}
.home-contact-cta {
    padding: 90px 0;
    background: var(--text-color);
    color: #ffffff;
}

.home-contact-cta-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
}

.home-contact-cta .eyebrow {
    color: #c49a69;
}

.home-contact-cta h2 {
    max-width: 800px;
    margin: 12px 0 0;
    font-size:
        clamp(38px, 5vw, 64px);
    line-height: 1.02;
}

.home-contact-button {
    flex: 0 0 auto;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: #ffffff;
    color: var(--text-color);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition:
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.home-contact-button:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.home-contact-button:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 4px;
}

[dir="rtl"]
.home-contact-cta h2 {
    line-height: 1.25;
    letter-spacing: 0;
}

@media (max-width: 720px) {
    .home-contact-cta {
        padding: 70px 0;
    }

    .home-contact-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 32px;
    }
}

@media (
    prefers-reduced-motion: reduce
) {
    .home-contact-button {
        transition: none;
    }
}
.hero-has-video {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--dark-surface);
    color: var(--text-on-dark);
    align-items: flex-end;
    padding-top: 140px;
    padding-bottom: 70px;
}

.hero-media {
    position: absolute;
    z-index: -2;
    inset: 0;
    overflow: hidden;
}

.hero-media::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            180deg,
            rgb(15 18 28 / 0%) 0%,
            rgb(15 18 28 / 15%) 50%,
            rgb(15 18 28 / 45%) 100%
        ),
        linear-gradient(
            90deg,
            rgb(15 18 28 / 45%) 0%,
            rgb(15 18 28 / 15%) 45%,
            rgb(15 18 28 / 0%) 100%
        );
}

[dir="rtl"] .hero-media::after {
    background:
        linear-gradient(
            180deg,
            rgb(15 18 28 / 0%) 0%,
            rgb(15 18 28 / 15%) 50%,
            rgb(15 18 28 / 45%) 100%
        ),
        linear-gradient(
            270deg,
            rgb(15 18 28 / 45%) 0%,
            rgb(15 18 28 / 15%) 45%,
            rgb(15 18 28 / 0%) 100%
        );
}

.hero-video-fallback,
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 5%;
}

.hero-video-fallback {
    z-index: 0;
}

.hero-video {
    z-index: 1;
}

.hero-has-video .hero-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline-start: 0;
    margin-inline-end: auto;
    padding-inline-start: clamp(24px, 5.5vw, 72px);
}

.hero-has-video .hero-content h1 {
    text-shadow: 0 2px 18px rgb(0 0 0 / 65%), 0 1px 4px rgb(0 0 0 / 75%);
}

.hero-has-video .eyebrow {
    color: var(--brand-gold);
    text-shadow: 0 1px 8px rgb(0 0 0 / 70%);
}

.hero-has-video .hero-description {
    color: rgb(255 255 255 / 92%);
    text-shadow: 0 1px 12px rgb(0 0 0 / 65%);
}

.hero-has-video .primary-button {
    background: rgb(23 26 41 / 45%);
    color: #ffffff;
    border: 1px solid rgb(255 255 255 / 32%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgb(0 0 0 / 18%);
}

.hero-has-video .primary-button:hover,
.hero-has-video .primary-button:focus-visible {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-has-video .hero-card {
    background: rgb(23 26 41 / 50%);
    color: var(--text-on-dark);
    border: 1px solid rgb(255 255 255 / 20%);
    box-shadow: 0 22px 60px rgb(0 0 0 / 24%);
    backdrop-filter: blur(14px);
}

.hero-has-video .hero-card span {
    color: rgb(255 255 255 / 68%);
}

.hero-video-toggle {
    position: absolute;
    z-index: 3;
    inset-inline-end: clamp(18px, 4vw, 60px);
    bottom: 30px;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgb(23 26 41 / 50%);
    color: var(--text-on-dark);
    border: 1px solid rgb(255 255 255 / 34%);
    border-radius: 50%;
    font: inherit;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.hero-video-toggle:not([hidden]) {
    display: inline-flex;
}

.hero-video-toggle:hover {
    background: var(--accent-color);
    transform: scale(1.06);
}

.hero-video-toggle:focus-visible {
    outline: 3px solid var(--brand-gold);
    outline-offset: 4px;
}

.hero-video-toggle [hidden] {
    display: none;
}

@media (max-width: 720px) {
    .hero-has-video {
        min-height: max(
            560px,
            calc(100svh - 70px)
        );
        padding-top: 90px;
        padding-bottom: 80px;
        align-items: flex-end;
    }

    .hero-has-video .hero-grid {
        padding-inline-start: 16px;
    }

    .hero-media::after,
    [dir="rtl"] .hero-media::after {
        background:
            linear-gradient(
                180deg,
                rgb(15 18 28 / 0%) 0%,
                rgb(15 18 28 / 20%) 50%,
                rgb(15 18 28 / 55%) 100%
            );
    }

    .hero-video-toggle {
        inset-inline-end: 18px;
        bottom: 18px;
        width: 48px;
        height: 48px;
    }
}

.sales-progress {
    display: grid;
    gap: 10px;
}

.sales-progress strong {
    color: var(--text-color);
    font-size: 14px;
}

.sales-progress progress {
    width: 100%;
    height: 9px;
    overflow: hidden;
    appearance: none;
    border: 0;
    border-radius: 999px;
    background: var(--border-color);
}

.sales-progress progress::-webkit-progress-bar {
    background: var(--border-color);
    border-radius: 999px;
}

.sales-progress progress::-webkit-progress-value {
    background: var(--accent-color);
    border-radius: 999px;
}

.sales-progress progress::-moz-progress-bar {
    background: var(--accent-color);
    border-radius: 999px;
}

.sales-progress--card {
    margin-top: 20px;
}
