/* ==========================================================================
   STRUCTR — components.css
   Reusable component styles: header, footer, cards, hero, stat bar,
   testimonials, CTA band, process steps, FAQ accordion.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Site header / primary nav
   -------------------------------------------------------------------------- */
/* Fixed topbar wrapper (announcement strip + nav) */
.structr-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.structr-header {
    position: relative;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Solid state (default, and on every page once scrolled) */
.structr-header.is-sticky {
    border-bottom: 1px solid #B6A690;
    box-shadow: 0 2px 14px rgba(33, 33, 33, 0.06);
}

/* Default: offset content below the fixed topbar (also the no-JS fallback). */
.structr-main { padding-top: 105px; }

/* Hero pages let the hero sit behind the transparent topbar (JS adds the
   class once it confirms a hero is at the top of the page). */
body.has-hero .structr-main { padding-top: 0; }

/* Logo variants: show Jet by default, White when transparent over hero */
.structr-header__logo .logo-white { display: none; }
.structr-header__logo .logo-jet { display: block; }

/* Transparent-over-hero state (only before scrolling on hero pages) */
body.has-hero:not(.is-scrolled) .structr-topbar { background-color: transparent; }
body.has-hero:not(.is-scrolled) .structr-header {
    background-color: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}
body.has-hero:not(.is-scrolled) .structr-header__logo .logo-jet { display: none; }
body.has-hero:not(.is-scrolled) .structr-header__logo .logo-white { display: block; }
body.has-hero:not(.is-scrolled) .structr-nav > ul > li > a { color: #ffffff; }
body.has-hero:not(.is-scrolled) .structr-nav > ul > li > a::before { background: #ffffff; }
body.has-hero:not(.is-scrolled) .structr-hamburger span { background: #ffffff; }

.structr-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.structr-header__logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.08em;
    color: #212121;
    text-transform: uppercase;
}

.structr-header__logo img { max-height: 44px; width: auto; display: block; }

.structr-header__logo:hover { color: #904028; }

/* Primary navigation list */
.structr-nav {
    display: none;
}

@media (min-width: 992px) {
    .structr-nav {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

.structr-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.structr-nav li { position: relative; }

.structr-nav a {
    position: relative;
    display: block;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 500;
    color: #212121;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

/* Chestnut underline that slides in on hover */
.structr-nav > ul > li > a::before {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: #904028;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.structr-nav > ul > li > a:hover::before,
.structr-nav > ul > li.current-menu-item > a::before,
.structr-nav > ul > li.current-page-ancestor > a::before {
    transform: scaleX(1);
}

.structr-nav a:hover,
.structr-nav .current-menu-item > a,
.structr-nav .current-page-ancestor > a {
    color: #904028;
}

/* The sliding underline shouldn't appear on dropdown sub-items */
.structr-nav .sub-menu a::before { display: none; }

/* Dropdown */
.structr-nav .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    opacity: 0.7;
}

.structr-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #ffffff;
    border: 1px solid #B6A690;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(33, 33, 33, 0.12);
    padding: 8px 0;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1001;
}

.structr-nav li:hover > .sub-menu,
.structr-nav li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.structr-nav .sub-menu a {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

.structr-nav .sub-menu a:hover {
    background: #F3F0EB;
}

/* Header CTA */
.structr-header__cta {
    display: none;
}

@media (min-width: 992px) {
    .structr-header__cta { display: inline-block; }
}

/* Hamburger */
.structr-hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

@media (min-width: 992px) {
    .structr-hamburger { display: none; }
}

.structr-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #212121;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

body.nav-open .structr-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .structr-hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .structr-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile full-screen overlay nav */
.structr-mobile-nav {
    position: fixed;
    inset: 0;
    background: #212121;
    color: #F3F0EB;
    z-index: 1100;
    padding: 90px 24px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    visibility: hidden;
}

body.nav-open .structr-mobile-nav {
    transform: translateX(0);
    visibility: visible;
}

.structr-mobile-nav__logo { display: block; margin-bottom: 28px; }
.structr-mobile-nav__logo img { max-height: 36px; width: auto; }
.structr-mobile-nav__logo span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 24px; letter-spacing: 0.08em;
    text-transform: uppercase; color: #F3F0EB;
}

.structr-mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.structr-mobile-nav > ul > li { border-bottom: 1px solid rgba(182, 166, 144, 0.25); }

.structr-mobile-nav a {
    display: block;
    padding: 16px 4px;
    color: #F3F0EB;
    font-size: 20px;
    font-weight: 500;
}

.structr-mobile-nav a:hover { color: #AD712A; }

.structr-mobile-nav .sub-menu a {
    font-size: 16px;
    padding: 10px 4px 10px 20px;
    color: #B6A690;
}

.structr-mobile-nav__close {
    position: absolute;
    top: 24px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: #F3F0EB;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.structr-mobile-nav__cta {
    margin-top: 28px;
}

/* CTA bar (announcement strip above header content) */
.structr-cta-bar {
    background: #904028;
    color: #ffffff;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.04em;
    padding: 8px 16px;
}

.structr-cta-bar a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
}

.structr-cta-bar a:hover { color: #F3F0EB; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.structr-hero {
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    min-height: 600px;
    padding: 100px 0;
}

/* Full-viewport hero with vertically-centered content */
.structr-hero--full {
    min-height: 100vh;
    min-height: 100svh;
    padding: 96px 0;
}

.structr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(33, 33, 33, 0.55);
}

.structr-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.structr-hero h1 {
    color: #ffffff;
    font-size: 36px;
    margin: 0 0 18px;
}

@media (min-width: 768px) {
    .structr-hero h1 { font-size: 52px; }
}

@media (min-width: 1200px) {
    .structr-hero h1 { font-size: 64px; }
}

.structr-hero__subhead {
    font-size: 17px;
    color: #F3F0EB;
    max-width: 600px;
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .structr-hero__subhead { font-size: 18px; }
}

.structr-hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Buttons stack full-width on mobile, inline-auto on larger screens */
.structr-hero__ctas .btn-primary,
.structr-hero__ctas .btn-secondary,
.structr-hero__ctas .btn-ghost {
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .structr-hero__ctas {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .structr-hero__ctas .btn-primary,
    .structr-hero__ctas .btn-secondary,
    .structr-hero__ctas .btn-ghost {
        width: auto;
    }
}

/* Scroll indicator arrow at the bottom of full heroes */
.structr-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 2;
    width: 30px;
    height: 30px;
    color: #ffffff;
    opacity: 0.85;
    animation: structr-bounce 2s infinite;
}

.structr-hero__scroll svg { width: 100%; height: 100%; }

@keyframes structr-bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

@media (prefers-reduced-motion: reduce) {
    .structr-hero__scroll { animation: none; }
}

/* --------------------------------------------------------------------------
   Service / feature cards
   -------------------------------------------------------------------------- */
.structr-card {
    background: #ffffff;
    border: 1px solid #ece7df;
    border-radius: 4px;
    padding: 32px 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    height: 100%;
}

.structr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(33, 33, 33, 0.08);
    border-color: #B6A690;
}

.structr-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    color: #904028;
}

.structr-card__icon svg { width: 100%; height: 100%; }

.structr-card h3 {
    font-size: 20px;
    margin: 0 0 10px;
}

.structr-card p {
    color: #4A5A54;
    font-size: 15px;
    margin-bottom: 16px;
}

.structr-card__link {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.structr-card__link::after {
    content: ' →';
}

/* --------------------------------------------------------------------------
   Stat bar
   -------------------------------------------------------------------------- */
.structr-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 on mobile */
    gap: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .structr-stats { grid-template-columns: repeat(4, 1fr); gap: 32px; } /* single row */
}

.structr-stat__num {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #904028;
    line-height: 1;
    margin-bottom: 8px;
}

.structr-stat__label {
    font-size: 14px;
    letter-spacing: 0.04em;
    color: #4A5A54;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.structr-testimonial {
    background: #ffffff;
    border: 1px solid #ece7df;
    border-radius: 4px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.structr-testimonial__quote {
    font-size: 17px;
    color: #212121;
    font-style: italic;
    margin-bottom: 22px;
    flex: 1;
}

.structr-testimonial__quote::before { content: '“'; color: #B6A690; }
.structr-testimonial__quote::after { content: '”'; color: #B6A690; }

.structr-testimonial__name {
    font-weight: 600;
    color: #212121;
}

.structr-testimonial__meta {
    font-size: 13px;
    color: #AD712A;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.structr-cta-band {
    text-align: center;
}

.structr-cta-band h2 {
    color: #ffffff;
    font-size: 32px;
    margin: 0 0 14px;
}

.structr-cta-band p {
    color: #F3F0EB;
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto 28px;
}

.structr-cta-band .btn-quote {
    background: #ffffff;
    color: #904028;
}

.structr-cta-band .btn-quote:hover {
    background: #F3F0EB;
    color: #904028;
}

/* --------------------------------------------------------------------------
   Process steps (How it works)
   -------------------------------------------------------------------------- */
.structr-steps {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    counter-reset: step;
}

@media (min-width: 768px) {
    .structr-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

.structr-step { position: relative; padding-top: 8px; }

.structr-step__num {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #B6A690;
    line-height: 1;
    margin-bottom: 12px;
}

.structr-step h3 { font-size: 20px; margin: 0 0 8px; }
.structr-step p { color: #4A5A54; font-size: 15px; }

/* --------------------------------------------------------------------------
   Checklist (What's included / what we handle)
   -------------------------------------------------------------------------- */
.structr-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) { .structr-checklist { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .structr-checklist { grid-template-columns: repeat(3, 1fr); } }

.structr-checklist li {
    position: relative;
    padding-left: 34px;
    font-size: 16px;
    color: #212121;
}

.structr-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #904028;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px;
}

.structr-checklist li strong { display: block; font-weight: 600; }
.structr-checklist li span { font-size: 14px; color: #4A5A54; }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.structr-faq {
    max-width: 820px;
    margin: 0 auto;
}

.structr-faq__item {
    border-bottom: 1px solid #B6A690;
}

.structr-faq__q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 40px 22px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #212121;
    position: relative;
}

.structr-faq__q::after {
    content: '+';
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #904028;
    font-family: 'Poppins', sans-serif;
}

.structr-faq__item.is-open .structr-faq__q::after { content: '–'; }

.structr-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.structr-faq__a-inner {
    padding: 0 0 22px;
    color: #4A5A54;
    font-size: 16px;
}

/* --------------------------------------------------------------------------
   Three-column intro blocks (audiences / value props)
   -------------------------------------------------------------------------- */
.structr-feature {
    text-align: left;
}

.structr-feature__icon {
    width: 44px;
    height: 44px;
    color: #904028;
    margin-bottom: 16px;
}

.structr-feature__icon svg { width: 100%; height: 100%; }

.structr-feature h3 { font-size: 20px; margin: 0 0 8px; }
.structr-feature p { color: #4A5A54; font-size: 15px; }

.bg-jet .structr-feature p,
.bg-feldgrau .structr-feature p { color: rgba(243, 240, 235, 0.82); }

/* --------------------------------------------------------------------------
   Service areas strip
   -------------------------------------------------------------------------- */
.structr-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.structr-areas__item {
    flex: 1 1 50%;
    text-align: center;
    padding: 18px 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

@media (min-width: 768px) {
    .structr-areas__item {
        flex: 1;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.18);
    }
    .structr-areas__item:last-child { border-right: none; }
}

/* --------------------------------------------------------------------------
   Blog cards
   -------------------------------------------------------------------------- */
.structr-postcard {
    background: #ffffff;
    border: 1px solid #ece7df;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.structr-postcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(33, 33, 33, 0.08);
}

.structr-postcard__thumb {
    /* Fixed aspect ratio via padding-top ratio-box (no layout shift) */
    height: 0;
    padding-top: 62.5%; /* 16:10 */
    background: #B6A690;
    background-size: cover;
    background-position: center;
    transition: transform 0.45s ease;
}

/* Subtle image zoom on hover (container already clips via overflow:hidden) */
.structr-postcard:hover .structr-postcard__thumb {
    transform: scale(1.03);
}

.structr-postcard__body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }

.structr-postcard__cat {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #AD712A;
    margin-bottom: 10px;
}

.structr-postcard h3 { font-size: 19px; margin: 0 0 10px; }
.structr-postcard h3 a { color: #212121; }
.structr-postcard h3 a:hover { color: #904028; }

.structr-postcard__excerpt { color: #4A5A54; font-size: 14px; margin-bottom: 14px; flex: 1; }

.structr-postcard__more { font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.structr-footer {
    background: #212121;
    color: #F3F0EB;
    padding-top: 64px;
}

.structr-footer a { color: #F3F0EB; }
.structr-footer a:hover { color: #AD712A; }

.structr-footer__cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 48px;
}

@media (min-width: 600px) { .structr-footer__cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .structr-footer__cols { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }

.structr-footer__brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #F3F0EB;
    margin-bottom: 14px;
    display: block;
}

.structr-footer__brand-name img {
    max-height: 36px;
    width: auto;
    display: block;
}

.structr-footer__desc { color: #B6A690; font-size: 14px; max-width: 280px; }

.structr-footer h4 {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.structr-footer ul { list-style: none; margin: 0; padding: 0; }
.structr-footer li { margin-bottom: 10px; font-size: 15px; }

.structr-footer__social {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.structr-footer__social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(182, 166, 144, 0.4);
    border-radius: 50%;
}

.structr-footer__social svg { width: 18px; height: 18px; }

.structr-footer__contact li { color: #B6A690; }
.structr-footer__contact .btn-primary { margin-top: 8px; }

.structr-footer__bottom {
    border-top: 1px solid rgba(182, 166, 144, 0.25);
    padding: 28px 0;
    font-size: 13px;
    color: #B6A690;
}

.structr-footer__bottom p { margin: 0 0 8px; }

.structr-footer__legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 12px 0;
    list-style: none;
    padding: 0;
}

.structr-footer__legal-links a { font-size: 13px; }

.structr-info-list { list-style: none; margin: 0; padding: 0; }
.structr-info-list li { margin-bottom: 16px; padding-left: 30px; position: relative; }
.structr-info-list li strong { display: block; }

/* Studio teaser mock card */
.structr-studio-mock {
    background: linear-gradient(135deg, #2b2b2b, #161616);
    border: 1px solid rgba(182, 166, 144, 0.3);
    border-radius: 6px;
    padding: 56px 32px;
    text-align: center;
}

.structr-studio-mock__wordmark {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 0.06em;
    color: #F3F0EB;
}

.structr-studio-mock__wordmark span { color: #AD712A; }

/* --------------------------------------------------------------------------
   Contact form
   -------------------------------------------------------------------------- */
.structr-contact-form .structr-field { margin-bottom: 18px; }

.structr-contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #212121;
}

.structr-contact-form input[type="text"],
.structr-contact-form input[type="email"],
.structr-contact-form input[type="tel"],
.structr-contact-form select,
.structr-contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #B6A690;
    border-radius: 2px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #212121;
}

.structr-contact-form input:focus,
.structr-contact-form select:focus,
.structr-contact-form textarea:focus {
    outline: none;
    border-color: #904028;
    box-shadow: 0 0 0 3px rgba(144, 64, 40, 0.12);
}

.structr-fieldset {
    border: none;
    padding: 0;
    margin: 0 0 24px;
}

.structr-fieldset legend { margin-bottom: 12px; font-size: 16px; }

.structr-radio {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 15px;
    padding: 8px 0;
    cursor: pointer;
}

.structr-radio input { margin-top: 4px; }

.structr-contact-form [data-intake-group][hidden] { display: none; }

/* --------------------------------------------------------------------------
   Header phone number (desktop inline + mobile menu)
   -------------------------------------------------------------------------- */
.structr-header__phone {
    display: none;
}

@media (min-width: 992px) {
    .structr-header__phone {
        display: inline-block;
        color: var(--structr-tigers-eye);
        font-weight: 600;
        font-size: 15px;
        white-space: nowrap;
        margin-left: auto;
        margin-right: 20px;
    }
}

.structr-header__phone:hover { color: #904028; }

/* Phone is the first item in the mobile overlay menu */
.structr-mobile-nav__phone {
    display: block;
    color: var(--structr-tigers-eye);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 12px;
}
.structr-mobile-nav__phone:hover { color: #ffffff; }

/* --------------------------------------------------------------------------
   Client Portal link (desktop inline + mobile overlay)
   Sits between the phone number and the Get a Quote button.
   -------------------------------------------------------------------------- */
.structr-header__portal {
    display: none;
}

@media (min-width: 992px) {
    .structr-header__portal {
        display: inline-block;
        color: var(--structr-jet);
        font-weight: 600;
        font-size: 15px;
        white-space: nowrap;
        margin-right: 20px;
    }
    body.has-hero:not(.is-scrolled) .structr-header__portal { color: #ffffff; }
}

.structr-header__portal:hover { color: var(--structr-tigers-eye); }

.structr-mobile-nav__portal {
    display: block;
    color: var(--structr-isabelline);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 16px;
}
.structr-mobile-nav__portal:hover { color: var(--structr-tigers-eye); }

/* --------------------------------------------------------------------------
   Thank You page (post-submission confirmation)
   -------------------------------------------------------------------------- */
.structr-thankyou {
    text-align: center;
}
.structr-thankyou__logo img,
.structr-thankyou__logo span {
    max-width: 220px;
    height: auto;
    margin: 0 auto;
}
.structr-thankyou__accent {
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 2px;
    background: var(--structr-tigers-eye);
    margin: 28px auto 32px;
}
.structr-thankyou__title {
    margin: 0 0 14px;
}
.structr-thankyou__msg {
    color: var(--structr-jet);
    font-size: 19px;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 36px;
}

/* --------------------------------------------------------------------------
   STRUCTR form embeds (WPForms) — Tiger's Eye submit, Chestnut on hover
   -------------------------------------------------------------------------- */
.structr-form-embed,
.structr-contact-form-embed {
    max-width: 680px;
    margin: 0 auto;
}
.structr-form-embed .wpforms-submit:hover,
.structr-contact-form-embed .wpforms-submit:hover {
    background-color: var(--structr-chestnut) !important;
    border-color: var(--structr-chestnut) !important;
}

/* --------------------------------------------------------------------------
   Team member cards (circular photo, name, title, bio)
   -------------------------------------------------------------------------- */
.structr-team-grid { justify-items: center; }

.structr-team-card { text-align: center; max-width: 360px; }

.structr-team-card__photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 18px;
    background: #B6A690;
}

.structr-team-card__name { margin: 0 0 2px; font-size: 20px; }

.structr-team-card__title {
    color: var(--structr-tigers-eye);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.structr-team-card__bio { color: #4A5A54; font-size: 15px; margin: 0; }

/* --------------------------------------------------------------------------
   Inline lead-capture (free rental analysis) on PM sub-pages
   -------------------------------------------------------------------------- */
.structr-leadcap__inner { max-width: 600px; text-align: left; }

.structr-leadcap__sub {
    font-size: 18px;
    color: #4A5A54;
    margin: 0 0 28px;
}

.structr-leadcap__notice {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 15px;
}
.structr-leadcap__notice.is-success { background: #e7f1ec; color: #2f5d4a; }
.structr-leadcap__notice.is-error { background: #f6e7e3; color: #8a3b28; }

.structr-leadcap__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.structr-leadcap__field { margin: 0 0 18px; }

.structr-leadcap__field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #212121;
}

.structr-leadcap__field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d8d2c7;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    background: #ffffff;
}

.structr-leadcap__field input:focus {
    outline: none;
    border-color: var(--structr-tigers-eye);
    box-shadow: 0 0 0 3px rgba(173, 113, 42, 0.15);
}

.structr-leadcap__form .btn-primary { margin-top: 4px; }

/* ============================================
   KEYSTONE SECTION — designed to spec
   ============================================ */

.structr-keystone {
  background-color: #212121;
  padding: 100px 24px;
  width: 100%;
}

.keystone-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.keystone-eyebrow {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #AD712A;
  margin-bottom: 16px;
}

.keystone-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 16px 0;
}

.keystone-subline {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: #AD712A;
  margin: 0 0 48px 0;
}

.keystone-brandmark {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 48px auto;
}

.keystone-brandmark img {
  width: auto;
  height: 160px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.keystone-rule {
  width: 100%;
  height: 1px;
  border: none;
  border-top: 1px dashed #AD712A;
  opacity: 0.6;
  margin: 0 0 0 0;
}

.keystone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  border-left: 1px dashed rgba(173, 113, 42, 0.6);
  border-right: 1px dashed rgba(173, 113, 42, 0.6);
  margin: 0;
}

.keystone-quadrant {
  padding: 48px;
  text-align: left;
  border-bottom: 1px dashed rgba(173, 113, 42, 0.6);
}

/* Vertical divider between left and right columns */
.keystone-quadrant:nth-child(odd) {
  border-right: 1px dashed rgba(173, 113, 42, 0.6);
}

.keystone-q-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #AD712A;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.keystone-q-body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  margin: 0;
}

.keystone-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  color: #AD712A;
  text-align: center;
  margin: 48px 0 0 0;
  letter-spacing: 0.01em;
}

/* Mobile */
@media (max-width: 768px) {
  .structr-keystone {
    padding: 60px 20px;
  }

  .keystone-heading {
    font-size: 36px;
  }

  .keystone-grid {
    grid-template-columns: 1fr;
    border-left: none;
    border-right: none;
  }

  .keystone-quadrant {
    padding: 32px 20px;
    border-right: none !important;
    border-left: 3px solid rgba(173, 113, 42, 0.4);
  }

  .keystone-tagline {
    font-size: 18px;
  }
}

/* ============================================
   SPLIT SECTIONS
   ============================================ */

.structr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  width: 100%;
}

.structr-split.reverse {
  direction: rtl;
}

.structr-split.reverse > * {
  direction: ltr;
}

.split-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.split-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background-color: #F3F0EB;
}

.split-content.dark {
  background-color: #4A5A54;
}

.split-content .eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #AD712A;
  margin-bottom: 16px;
  display: block;
}

.split-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #212121;
  line-height: 1.15;
  margin: 0 0 32px 0;
  max-width: 480px;
}

.split-content.dark h2 {
  color: #ffffff;
}

.split-proof-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-proof {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.split-proof-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #212121;
  letter-spacing: 0.03em;
}

.split-content.dark .split-proof-title {
  color: #F3F0EB;
}

.split-proof-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4A5A54;
  line-height: 1.65;
}

.split-content.dark .split-proof-desc {
  color: rgba(243,240,235,0.75);
}

@media (max-width: 900px) {
  .structr-split {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }

  .structr-split.reverse > * {
    direction: ltr;
  }

  .split-image {
    min-height: 280px;
  }

  .split-content {
    padding: 48px 24px;
  }

  .split-content h2 {
    font-size: 28px;
  }
}

/* ============================================
   LEADERSHIP QUOTE
   ============================================ */

.structr-leadership-quote {
  background-color: #F3F0EB;
  padding: 100px 24px;
}

.leadership-quote-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: center;
}

.leadership-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.leadership-photo img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  border: 3px solid #B6A690;
}

.leadership-name {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #212121;
  text-align: center;
  margin: 0;
}

.leadership-title {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #4A5A54;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.leadership-quote-content {
  position: relative;
}

.leadership-quote-mark {
  font-family: Georgia, serif;
  font-size: 96px;
  line-height: 0.8;
  color: #AD712A;
  display: block;
  margin-bottom: 16px;
  font-weight: 700;
}

.leadership-quote-text {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #212121;
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .leadership-quote-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .leadership-photo {
    margin: 0 auto;
  }

  .leadership-quote-mark {
    font-size: 64px;
  }

  .leadership-quote-text {
    font-size: 18px;
  }
}
