/* ==========================================================================
   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: 'TT Travels Next', '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: 'TT Travels Next', '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: 'TT Travels Next', '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: 'TT Travels Next', '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: 'TT Travels Next', '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: 'TT Travels Next', '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: 'TT Travels Next', 'Playfair Display', Georgia, 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; }

/* --------------------------------------------------------------------------
   Two-column split (contact, who-we-work-with intros)
   -------------------------------------------------------------------------- */
.structr-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 900px) {
    .structr-split { grid-template-columns: 1.2fr 1fr; gap: 56px; }
}

.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: 'TT Travels Next', '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; }
