/**
 * Architect Preset — Sovereign Harvest
 *
 * Features: Dark luxury, gold accents, ultra-fine tracking, zero-radius photography.
 *
 * @package LandFNL
 */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;600&display=swap');

:root {
    --lfnl-font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --lfnl-font-heading: 'Lora', -apple-system, BlinkMacSystemFont, Georgia, serif;
}

.landfnl-preset-architect {
    background-color: var(--lfnl-bg-page);
    color: var(--lfnl-text-primary);
    font-family: var(--lfnl-font-body);
}

.landfnl-preset-architect h1,
.landfnl-preset-architect h2,
.landfnl-preset-architect h3,
.landfnl-preset-architect .landfnl-font-heading,
.landfnl-preset-architect .serif {
    font-family: var(--lfnl-font-heading);
    font-weight: 300;
}

/* Ensure em/i tags in titles are gold and italic */
.landfnl-preset-architect h1 em, .landfnl-preset-architect h1 i,
.landfnl-preset-architect h2 em, .landfnl-preset-architect h2 i,
.landfnl-preset-architect h3 em, .landfnl-preset-architect h3 i {
    color: var(--lfnl-primary);
    font-style: italic;
}

/* — Global Subheadings / Eyebrows — */
.landfnl-preset-architect .landfnl-section__eyebrow {
    color: var(--lfnl-text-secondary);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 1.5rem;
    text-align: left !important;
    display: block !important;
}

/* — Header — */
.landfnl-preset-architect .landfnl-header {
    background: transparent !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    padding: 1.5rem 3rem;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    transition: all 0.5s ease;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 75px;
}

.landfnl-preset-architect .landfnl-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landfnl-preset-architect .landfnl-header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landfnl-preset-architect .landfnl-header__logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--lfnl-primary);
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"/></svg>') no-repeat center;
    border-radius: 0;
}

.landfnl-preset-architect .landfnl-header__logo-text {
    font-size: 1.25rem;
    font-family: var(--lfnl-font-heading);
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #fff !important;
    text-transform: uppercase;
}

.landfnl-preset-architect .landfnl-header__menu {
    display: flex;
    gap: 3.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.landfnl-preset-architect .landfnl-header__link {
    font-size: 0.625rem; /* 10px */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--lfnl-text-secondary) !important;
    transition: color 0.3s;
    text-decoration: none;
}

.landfnl-preset-architect .landfnl-header__link:hover {
    color: #fff !important;
}

.landfnl-preset-architect .landfnl-header__cta {
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #fff !important;
    padding: 0.65rem 2rem !important;
    font-size: 0.625rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    transition: all 0.3s !important;
    border-radius: 0 !important;
    text-decoration: none;
}

.landfnl-preset-architect .landfnl-header__cta:hover {
    border-color: #fff !important;
    background: rgba(255,255,255,0.15) !important;
}

/* — Hero Section — */
.landfnl-preset-architect .landfnl-hero {
    position: relative;
    min-height: calc(100vh - 75px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3.5rem 1.5rem 2.5rem;
    overflow: hidden;
    margin: 0;
}

.landfnl-preset-architect .landfnl-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(30%);
    opacity: 0.6 !important;
    z-index: 0;
}
.landfnl-preset-architect .landfnl-hero__content,
.landfnl-preset-architect .landfnl-hero__grid {
    position: relative;
    z-index: 2;
    max-width: 64rem; /* 5xl */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeSlideUp 1s ease-out forwards;
}

@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(2rem); }
    100% { opacity: 1; transform: translateY(0); }
}

.landfnl-preset-architect .landfnl-hero__text-col {
    width: 100%;
}

.landfnl-preset-architect .landfnl-hero__badge {
    /* Used as eyebrow in Hero */
    color: rgba(255,255,255,0.6);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 1.5rem;
    display: block;
}

.landfnl-preset-architect .landfnl-hero__headline {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-family: var(--lfnl-font-heading);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.landfnl-preset-architect .landfnl-hero__subheadline {
    color: rgba(255,255,255,0.75);
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.025em;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.landfnl-preset-architect .landfnl-button {
    border-radius: 0 !important; /* Zero radius */
    padding: 1.25rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.landfnl-preset-architect .landfnl-button--primary {
    background-color: #fff;
    color: #000;
}

.landfnl-preset-architect .landfnl-button--primary:hover {
    background-color: #e7e5e4; /* stone-200 */
}

.landfnl-preset-architect .landfnl-button--secondary {
    background: transparent;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    padding: 0 0 0.25rem 0;
}

.landfnl-preset-architect .landfnl-button--secondary:hover {
    color: var(--lfnl-text-secondary);
    background: transparent;
}

/* Hero Actions / Buttons container */
.landfnl-preset-architect .landfnl-hero__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

/* Side video behavior overrides */
.landfnl-preset-architect .landfnl-hero__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* This allows the children of text-col to act as direct flex children 
   of the grid, enabling `order` to work flawlessly across the video column! */
.landfnl-preset-architect .landfnl-hero__text-col {
    display: contents;
}

.landfnl-preset-architect .landfnl-hero__badge { order: 0; margin-bottom: 1rem; }
.landfnl-preset-architect .landfnl-hero__headline { order: 1; margin-bottom: 1rem; }
.landfnl-preset-architect .landfnl-hero__subheadline { order: 2; margin-bottom: 2rem; }
.landfnl-preset-architect .landfnl-hero__video-col { order: 3; position: relative; margin-top: 0; margin-bottom: 2rem; width: 100%; max-width: 750px; padding: 0; }
.landfnl-preset-architect .landfnl-hero__actions { order: 4; margin-top: 0; margin-bottom: 0; }

/* Purge standard video card styling */
.landfnl-preset-architect .landfnl-hero__video-card {
    background: #000;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid rgba(255,255,255,0.05);
}

.landfnl-preset-architect .landfnl-hero__video-aspect {
    border-radius: 0;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.landfnl-preset-architect .landfnl-hero__video-aspect iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0.8;
    transition: opacity 0.7s;
}

.landfnl-preset-architect .landfnl-hero__video-col:hover iframe {
    opacity: 1;
}

.landfnl-preset-architect .landfnl-hero__video-col::after {
    /* Inner professional border */
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}

/* — Features (Curriculum Grid) — */
.landfnl-preset-architect .landfnl-features,
.landfnl-features.landfnl-preset-architect {
    background: #0c0c0a !important;
    color: #e7e5e4 !important;
    padding: 8rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.landfnl-preset-architect .landfnl-features__header {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 6rem;
    text-align: left;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .landfnl-preset-architect .landfnl-features__header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: flex-end;
        column-gap: 5rem;
        row-gap: 0;
    }

    .landfnl-preset-architect .landfnl-features__header .landfnl-section__eyebrow {
        grid-column: 1;
        grid-row: 1;
    }

    .landfnl-preset-architect .landfnl-features__header .landfnl-section__title {
        grid-column: 1;
        grid-row: 2;
    }

    .landfnl-preset-architect .landfnl-features__subtitle {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: flex-end;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

.landfnl-preset-architect .landfnl-features .landfnl-section__eyebrow {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 1rem;
}

.landfnl-preset-architect .landfnl-section__title,
.landfnl-preset-architect .landfnl-features .landfnl-section__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300 !important;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: #fff;
    text-align: left !important;
}

@media (min-width: 1024px) {
    .landfnl-preset-architect .landfnl-features .landfnl-section__title {
        margin-bottom: 0;
    }
}

.landfnl-preset-architect .landfnl-features__subtitle {
    color: #a8a29e;
    font-weight: 300;
    line-height: 1.65;
    max-width: 32rem;
    margin: 0;
    text-align: left;
    font-size: 0.95rem;
}

.landfnl-preset-architect .landfnl-features__grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .landfnl-preset-architect .landfnl-features__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.landfnl-preset-architect .landfnl-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 3rem;
    background-color: #1c1917;
    border-radius: 0; /* brutalist zero-radius */
    border: none;
    box-shadow: none;
    transition: background-color 0.3s ease;
}

.landfnl-preset-architect .landfnl-feature:hover {
    background-color: #2a2723;
    transform: none !important;
    box-shadow: none !important;
}

.landfnl-preset-architect .landfnl-feature:hover .landfnl-feature__icon-wrapper {
    transform: none !important;
}

.landfnl-preset-architect .landfnl-feature:hover .landfnl-feature__icon-wrapper::before {
    transform: none !important;
    animation: none !important;
}

/* Hijack icon wrapper to display step numbers */
.landfnl-preset-architect .landfnl-feature__icon-wrapper {
    margin-bottom: 2rem;
    display: block;
    width: 100%;
    transition: none;
    background: none !important;
    border-radius: 0 !important;
    height: auto !important;
}
.landfnl-preset-architect .landfnl-feature__icon-wrapper::before {
    /* A hack to show numbers if SVG is present or generic text */
    content: '01';
    color: #52525b; /* stone-600 */
    font-size: 3rem;
    font-family: var(--lfnl-font-heading);
    font-style: italic;
    font-weight: 300;
    transition: none !important;
    transform: none !important;
    display: block;
}
.landfnl-preset-architect .landfnl-feature:nth-child(2) .landfnl-feature__icon-wrapper::before { content: '02'; }
.landfnl-preset-architect .landfnl-feature:nth-child(3) .landfnl-feature__icon-wrapper::before { content: '03'; }
.landfnl-preset-architect .landfnl-feature:nth-child(n+4) .landfnl-feature__icon-wrapper::before { content: '04'; }

.landfnl-preset-architect .landfnl-feature__icon { display: none; } /* Hide standard SVG icon */

.landfnl-preset-architect .landfnl-feature__title {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 1.25rem;
    color: #fff;
    font-family: var(--lfnl-font-heading);
}

.landfnl-preset-architect .landfnl-feature__desc {
    color: #a8a29e;
    font-size: 0.875rem;
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

/* Feature CTA links */
.landfnl-preset-architect .landfnl-feature__cta {
    color: #d4af37;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.landfnl-preset-architect .landfnl-feature__cta::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background-color: #d4af37;
    transition: width 0.4s ease;
    margin-left: 0.5rem;
}

.landfnl-preset-architect .landfnl-feature__cta:hover::after {
    width: 2rem;
}

/* — Hosts (Guardians) — */
.landfnl-preset-architect .landfnl-harmony-hosts {
    background-color: rgba(12, 10, 9, 0.5); /* stone-950/50 */
    padding: 8rem 0;
}

.landfnl-preset-architect .landfnl-harmony-hosts .landfnl-section-intro {
    text-align: center;
    margin-bottom: 6rem;
}

.landfnl-preset-architect .landfnl-harmony-hosts .landfnl-section__eyebrow {
    text-align: center !important;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.landfnl-preset-architect .landfnl-harmony-hosts .landfnl-section__title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 300;
    text-align: center !important;
    margin-bottom: 0;
}

.landfnl-preset-architect .landfnl-harmony-hosts__list {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 5rem;
}

@media (min-width: 768px) {
    .landfnl-preset-architect .landfnl-harmony-hosts__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.landfnl-preset-architect .landfnl-host-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.landfnl-preset-architect .landfnl-host-card__image {
    position: relative !important;
    overflow: hidden !important;
    aspect-ratio: 4/5 !important;
    background-color: #1c1917 !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    margin-bottom: 2rem !important;
    border-radius: 0 !important;
}

.landfnl-preset-architect .landfnl-host-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.7s;
}

.landfnl-preset-architect .landfnl-host-card:hover .landfnl-host-card__image img {
    transform: scale(1.05);
    opacity: 0.9;
}

.landfnl-preset-architect .landfnl-host-card__info {
    text-align: left;
}

.landfnl-preset-architect .landfnl-host-card__name {
    font-size: 1.5rem !important;
    color: #fff !important;
    margin-bottom: 0.5rem !important;
}

.landfnl-preset-architect .landfnl-host-card__role {
    color: #d4af37 !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
}

.landfnl-preset-architect .landfnl-host-card__bio {
    color: #78716c !important;
    font-size: 0.875rem !important;
    font-weight: 300 !important;
    line-height: 2 !important;
    max-width: 28rem !important;
}

/* — Application Form (CTA) — */
.landfnl-preset-architect .lfnl-cta,
.landfnl-preset-architect .landfnl-form-section {
    background-color: #0c0c0a;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 8rem 0;
}

.landfnl-preset-architect .landfnl-form-card,
.landfnl-preset-architect .lfnl-form-card {
    max-width: 56rem;
    margin: 0 auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}

.landfnl-preset-architect .landfnl-form-section .landfnl-section-intro {
    color: #a8a29e;
}

.landfnl-preset-architect .landfnl-form-card h2,
.landfnl-preset-architect .lfnl-form-card h2,
.landfnl-preset-architect .landfnl-form-section .landfnl-section__title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 300;
    font-family: var(--lfnl-font-heading);
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
}

.landfnl-preset-architect .landfnl-form-section .landfnl-inline-form-el {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .landfnl-preset-architect .landfnl-form-section .landfnl-inline-form-el {
        grid-template-columns: 1fr 1fr;
    }
    .landfnl-preset-architect .landfnl-form-section .landfnl-inline-form-el > div:last-child {
        grid-column: 1 / -1;
    }
}

.landfnl-preset-architect .landfnl-form-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a8a29e;
    margin-bottom: 0.5rem;
    display: block;
}

.landfnl-preset-architect .landfnl-input,
.landfnl-preset-architect .landfnl-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #292524; /* stone-800 */
    padding: 0.75rem 0;
    color: #e7e5e4;
    font-size: 1rem;
    transition: border-color 0.3s;
    border-radius: 0;
}

.landfnl-preset-architect .landfnl-input:focus,
.landfnl-preset-architect .landfnl-textarea:focus {
    border-bottom-color: var(--lfnl-primary);
    outline: none;
}

.landfnl-preset-architect .landfnl-inline-form-el button[type="submit"] {
    margin-top: 2rem;
    width: auto;
    padding: 1.25rem 4rem;
    background-color: #d4af37;
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: none;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.landfnl-preset-architect .landfnl-inline-form-el button[type="submit"]:hover {
    background-color: #e5c158;
}

.landfnl-preset-architect .landfnl-form-acknowledgment {
    color: #78716c;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* — Footer — */
.landfnl-preset-architect .landfnl-footer {
    background-color: #000;
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #a8a29e;
}

.landfnl-preset-architect .landfnl-footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
    max-width: var(--lfnl-container-width);
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .landfnl-preset-architect .landfnl-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* Left side: Logo + Description */
.landfnl-preset-architect .landfnl-footer__logo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-family: var(--lfnl-font-heading);
}

/* Logo icon + text on one line */
.landfnl-preset-architect .landfnl-footer__logo-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landfnl-preset-architect .landfnl-footer__logo-icon {
    width: 1.75rem;
    height: 1.75rem;
    background-color: var(--lfnl-primary);
    flex-shrink: 0;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"/></svg>') no-repeat center;
    border-radius: 0;
}

.landfnl-preset-architect .landfnl-footer__logo-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.landfnl-preset-architect .landfnl-footer__logo-desc {
    font-size: 0.875rem;
    color: #78716c;
    font-weight: 300;
    line-height: 1.65;
    max-width: 24rem;
}

.landfnl-preset-architect .landfnl-footer__copyright {
    font-size: 0.625rem;
    font-weight: 700;
    color: #52525b;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 1rem;
}

/* Right side: 3-column Navigation Menu */
.landfnl-preset-architect .landfnl-footer__menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .landfnl-preset-architect .landfnl-footer__menu {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 4rem;
    }
}

.landfnl-preset-architect .landfnl-footer__menu-section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.landfnl-preset-architect .landfnl-footer__menu-title {
    font-size: 0.625rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.25rem;
    font-family: var(--lfnl-font-body);
}

.landfnl-preset-architect .landfnl-footer__link {
    display: block;
    color: #78716c;
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    font-weight: 300;
    transition: color 0.3s;
}

.landfnl-preset-architect .landfnl-footer__link:hover {
    color: #fff;
}
