.app-page-shell--static-page,
.app-content-shell--static-page {
    background: #0e0400;
    min-height: 100vh;
    padding: 0;
}

.static-page {
    background: #0e0400;
    color: #fff5e0;
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 68px;
}

.static-page *,
.static-page *::before,
.static-page *::after {
    box-sizing: border-box;
}

.static-page a {
    text-decoration: none;
}

.static-nav {
    align-items: center;
    backdrop-filter: blur(16px);
    background: rgba(14, 4, 0, 0.65);
    border-bottom: 1px solid rgba(255, 245, 224, 0.05);
    display: flex;
    height: 68px;
    justify-content: space-between;
    left: 0;
    padding: 0 clamp(16px, 4vw, 48px);
    position: fixed;
    right: 0;
    top: 0;
    transition: background 0.4s ease, border-color 0.4s ease;
    z-index: 1000;
}

.static-nav--light {
    background: rgba(14, 4, 0, 0.65);
    border-bottom-color: rgba(255, 245, 224, 0.05);
}

.static-brand {
    align-items: center;
    display: flex;
    gap: 10px;
    min-width: 0;
}

.static-brand img {
    height: 40px;
    object-fit: contain;
    width: 40px;
}

.static-brand > span {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    white-space: nowrap;
}

.static-brand__name {
    background: linear-gradient(90deg, #ff6b00, #e8600a 35%, #fff5e0 60%, #138808);
    background-clip: text;
    color: transparent;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.static-nav--light .static-brand__name {
    background: linear-gradient(90deg, #ff6b00, #e8600a 35%, #fff5e0 60%, #138808);
    background-clip: text;
    -webkit-background-clip: text;
}

.static-brand__meta {
    color: rgba(255, 245, 224, 0.42);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1;
    margin-top: 1px;
    text-transform: uppercase;
}

.static-nav--light .static-brand__meta {
    color: rgba(255, 245, 224, 0.42);
}

.static-nav__links {
    align-items: center;
    display: flex;
    gap: 14px;
}

.static-nav__link {
    align-items: center;
    color: rgba(255, 245, 224, 0.62);
    display: inline-flex;
    font-size: 13px;
    font-weight: 500;
    gap: 6px;
    line-height: 1;
}

.static-nav__link:hover,
.static-nav__link:focus {
    color: #e8600a;
}

.static-nav--light .static-nav__link {
    color: rgba(255, 245, 224, 0.62);
}

.static-nav__page {
    color: rgba(255, 245, 224, 0.34);
    display: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.static-btn {
    align-items: center;
    background: #e8600a;
    border: 0;
    border-radius: 28px;
    color: #ffffff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
    justify-content: center;
    min-height: 40px;
    padding: 9px 20px;
}

.static-nav .static-btn {
    border-radius: 22px;
    font-size: 13px;
    font-weight: 600;
    min-height: 0;
    min-width: 0;
    padding: 8px 18px;
}

.static-btn:hover,
.static-btn:focus {
    background: #c84d00;
    color: #ffffff;
}

.static-hero {
    background:
        radial-gradient(ellipse at 18% 50%, rgba(232, 96, 10, 0.14), transparent 55%),
        radial-gradient(ellipse at 85% 30%, rgba(196, 135, 10, 0.08), transparent 50%),
        #0e0400;
    overflow: hidden;
    padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 80px);
    position: relative;
}

.static-hero::after,
.static-legal-hero::after,
.static-strip::before,
.static-strip::after {
    background: linear-gradient(90deg, #ff6b00, #ffffff, #138808);
    content: "";
    height: 3px;
    left: 0;
    opacity: 0.38;
    position: absolute;
    right: 0;
}

.static-hero::after,
.static-strip::after,
.static-legal-hero::after {
    bottom: 0;
}

.static-strip::before {
    top: 0;
}

.static-hero__inner {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(36px, 5vw, 76px);
    justify-content: center;
    margin: 0 auto;
    max-width: 1040px;
}

.static-hero__copy {
    flex: 1 1 320px;
    max-width: 540px;
}

.static-kicker {
    align-items: center;
    background: rgba(232, 96, 10, 0.09);
    border: 1px solid rgba(232, 96, 10, 0.24);
    border-radius: 24px;
    color: #e8600a;
    display: inline-flex;
    font-size: 11.5px;
    font-weight: 700;
    gap: 8px;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    padding: 6px 16px;
}

.static-kicker::before {
    background: #e8600a;
    border-radius: 50%;
    content: "";
    height: 5px;
    width: 5px;
}

.static-hero h1,
.static-section h2,
.static-legal-hero h1 {
    font-family: "Playfair Display", serif;
}

.static-hero h1 {
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.04;
    margin: 0 0 22px;
}

.static-hero h1 em,
.static-hero h1 strong {
    color: #e8600a;
    display: block;
    font-style: normal;
}

.static-hero p {
    color: rgba(255, 245, 224, 0.62);
    font-size: clamp(14px, 1.8vw, 17px);
    line-height: 1.85;
    max-width: 460px;
}

.static-logo-card {
    align-items: center;
    background: linear-gradient(145deg, #1c0800, #0e0400);
    border: 1px solid rgba(232, 96, 10, 0.18);
    border-radius: 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(232, 96, 10, 0.07);
    display: flex;
    height: clamp(200px, 30vw, 260px);
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: clamp(200px, 30vw, 260px);
}

.static-logo-card::before,
.static-logo-card::after {
    background: linear-gradient(90deg, #ff6b00, #ffffff, #138808);
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
}

.static-logo-card::before {
    top: 0;
}

.static-logo-card::after {
    bottom: 0;
    opacity: 0.3;
}

.static-logo-card img {
    height: 62%;
    object-fit: contain;
    width: 62%;
}

.static-section {
    padding: clamp(72px, 9vw, 112px) clamp(20px, 5vw, 64px);
}

.static-section--cream {
    background: #fffaf2;
    color: #1c0800;
}

.static-section--ivory {
    background: #fff5e0;
    color: #1c0800;
}

.static-section--dark {
    background: #0e0400;
    color: #fff5e0;
}

.static-container {
    margin: 0 auto;
    max-width: 1040px;
}

.static-section__header {
    margin: 0 auto 52px;
    max-width: 760px;
    text-align: center;
}

.static-eyebrow {
    color: #e8600a;
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.static-section h2 {
    font-size: clamp(28px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 16px;
}

.static-section p {
    font-size: 14.5px;
    line-height: 1.78;
}

.static-muted {
    color: rgba(28, 8, 0, 0.56);
}

.static-section--dark .static-muted,
.static-strip .static-muted {
    color: rgba(255, 245, 224, 0.58);
}

.static-card-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.static-card {
    background: #ffffff;
    border: 1px solid rgba(28, 8, 0, 0.05);
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(28, 8, 0, 0.06);
    padding: 28px 24px;
}

.static-card h3 {
    color: #1c0800;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
}

.static-card__icon {
    align-items: center;
    background: rgba(232, 96, 10, 0.09);
    border-radius: 14px;
    color: #e8600a;
    display: inline-flex;
    font-size: 24px;
    height: 48px;
    justify-content: center;
    margin-bottom: 14px;
    width: 48px;
}

.static-timeline {
    margin: 0 auto;
    max-width: 760px;
    padding-left: 48px;
    position: relative;
}

.static-timeline::before {
    background: linear-gradient(to bottom, #e8600a, rgba(232, 96, 10, 0.08));
    border-radius: 2px;
    bottom: 8px;
    content: "";
    left: 14px;
    position: absolute;
    top: 8px;
    width: 2px;
}

.static-timeline__item {
    margin-bottom: 42px;
    position: relative;
}

.static-timeline__item::before {
    background: #e8600a;
    border: 2px solid rgba(232, 96, 10, 0.5);
    border-radius: 50%;
    content: "";
    height: 14px;
    left: -40px;
    position: absolute;
    top: 8px;
    width: 14px;
}

.static-timeline__item h3 {
    color: #fff5e0;
    font-family: "Playfair Display", serif;
    font-size: clamp(19px, 2.8vw, 25px);
    font-weight: 700;
}

.team-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card {
    background: #ffffff;
    border: 1px solid rgba(28, 8, 0, 0.05);
    border-radius: 22px;
    box-shadow: 0 2px 18px rgba(28, 8, 0, 0.07);
    overflow: hidden;
}

.team-card__avatar {
    align-items: center;
    color: #ffffff;
    display: flex;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 700;
    height: 180px;
    justify-content: center;
}

.team-card__body {
    padding: 20px 18px 22px;
}

.team-card h3 {
    color: #1c0800;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 700;
}

.team-card strong {
    color: #e8600a;
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
}

.static-strip {
    background: linear-gradient(135deg, #1c0800, #0e0400);
    overflow: hidden;
    padding: clamp(56px, 7vw, 88px) clamp(20px, 5vw, 64px);
    position: relative;
    text-align: center;
}

.static-strip blockquote {
    color: #fff5e0;
    font-family: "Playfair Display", serif;
    font-size: clamp(22px, 4vw, 42px);
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 auto 32px;
    max-width: 760px;
}

.contact-layout {
    align-items: flex-start;
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
}

.contact-card,
.contact-form {
    background: #ffffff;
    border: 1px solid rgba(28, 8, 0, 0.05);
    border-radius: 22px;
    box-shadow: 0 2px 18px rgba(28, 8, 0, 0.07);
    color: #1c0800;
    padding: clamp(24px, 4vw, 40px);
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.contact-item__icon {
    align-items: center;
    background: rgba(232, 96, 10, 0.08);
    border-radius: 10px;
    color: #e8600a;
    display: flex;
    flex: 0 0 38px;
    height: 38px;
    justify-content: center;
}

.contact-form label {
    color: rgba(28, 8, 0, 0.5);
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background: #fafaf8;
    border: 1.5px solid rgba(28, 8, 0, 0.1);
    border-radius: 11px;
    color: #1c0800;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    padding: 12px 14px;
    width: 100%;
}

.contact-form textarea {
    line-height: 1.7;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #e8600a;
    box-shadow: 0 0 0 3px rgba(232, 96, 10, 0.12);
    outline: none;
}

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

.contact-form__stack {
    display: grid;
    gap: 18px;
}

.contact-submit {
    border: 0;
    border-radius: 14px;
    min-height: 48px;
    width: 100%;
}

.contact-status {
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 18px;
    padding: 12px 14px;
}

.contact-status--success {
    background: rgba(19, 136, 8, 0.1);
    border: 1px solid rgba(19, 136, 8, 0.22);
    color: #0f6a08;
}

.contact-status--error {
    background: rgba(232, 96, 10, 0.1);
    border: 1px solid rgba(232, 96, 10, 0.28);
    color: #9a3f05;
}

.contact-status--pending {
    background: rgba(28, 8, 0, 0.06);
    border: 1px solid rgba(28, 8, 0, 0.12);
    color: rgba(28, 8, 0, 0.68);
    text-align: center;
}

.static-legal {
    background: #fffaf2;
    color: #1c0800;
    font-family: "Poppins", sans-serif;
    min-height: 100vh;
    padding-top: 68px;
}

.static-legal *,
.static-legal *::before,
.static-legal *::after {
    box-sizing: border-box;
}

.static-legal-hero {
    background: linear-gradient(135deg, #1c0800, #0e0400);
    overflow: hidden;
    padding: clamp(56px, 7vw, 88px) 0;
    position: relative;
}

.static-legal-hero::before {
    background: linear-gradient(90deg, #ff6b00, #ffffff, #138808);
    content: "";
    height: 3px;
    left: 0;
    opacity: 0.45;
    position: absolute;
    right: 0;
    top: 0;
}

.static-legal-hero__inner,
.legal-body {
    margin: 0 auto;
    max-width: 880px;
    width: min(880px, calc(100% - clamp(40px, 10vw, 128px)));
}

.static-legal-hero h1 {
    color: #fff5e0;
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 14px;
}

.static-legal-hero p {
    color: rgba(255, 245, 224, 0.56);
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.72;
    margin: 0;
    max-width: 720px;
}

.legal-body {
    padding: clamp(48px, 7vw, 78px) 0 clamp(64px, 8vw, 96px);
}

.legal-body h2 {
    color: #1c0800;
    font-family: "Playfair Display", serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    line-height: 1.25;
    margin: 42px 0 12px;
}

.legal-body > h2:first-of-type {
    margin-top: 34px;
}

.legal-body h3 {
    color: #e8600a;
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 600;
    margin: 18px 0 8px;
}

.legal-body p,
.legal-body li {
    color: rgba(28, 8, 0, 0.72);
    font-size: 15px;
    line-height: 1.86;
}

.legal-body p {
    margin-bottom: 14px;
}

.legal-body ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 10px 0 18px 24px;
    padding-left: 14px;
}

.legal-body strong {
    color: #1c0800;
    font-weight: 600;
}

.legal-callout {
    background: rgba(232, 96, 10, 0.06);
    border: 1px solid rgba(232, 96, 10, 0.18);
    border-radius: 16px;
    margin-top: 12px;
    padding: 22px 24px;
}

.legal-links {
    border-top: 1px solid rgba(28, 8, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    padding-top: 28px;
}

.legal-links a {
    border: 1px solid rgba(232, 96, 10, 0.25);
    border-radius: 20px;
    color: #e8600a;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
}

.legal-links a:hover,
.legal-links a:focus {
    background: rgba(232, 96, 10, 0.07);
}

.hsh-site-footer {
    background: #0e0400;
    border-top: 1px solid rgba(255, 245, 224, 0.07);
    color: rgba(255, 245, 224, 0.56);
    font-family: "Poppins", sans-serif;
}

.hsh-site-footer__body {
    display: grid;
    gap: clamp(32px, 4vw, 56px);
    grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(130px, 0.65fr)) minmax(220px, 1fr);
    margin: 0 auto;
    max-width: 1200px;
    padding: clamp(52px, 7vw, 80px) clamp(20px, 5vw, 64px) 40px;
}

.hsh-site-footer__brand {
    max-width: 320px;
}

.hsh-site-footer__logo {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    min-width: 0;
}

.hsh-site-footer__logo img {
    height: 50px;
    object-fit: contain;
    width: 50px;
}

.hsh-site-footer__name {
    background: linear-gradient(90deg, #ff6b00, #e8600a 35%, #fff5e0 60%, #138808);
    background-clip: text;
    color: transparent;
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hsh-site-footer__tag {
    color: rgba(255, 245, 224, 0.45);
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    margin-top: 2px;
    text-transform: uppercase;
}

.hsh-site-footer__description {
    color: rgba(255, 245, 224, 0.38);
    font-size: 13px;
    line-height: 1.78;
    margin: 0 0 18px;
    max-width: 270px;
}

.hsh-site-footer__company {
    border-top: 1px solid rgba(255, 245, 224, 0.06);
    color: rgba(255, 245, 224, 0.28);
    font-size: 11.5px;
    line-height: 1.68;
    margin: 0;
    max-width: 270px;
    padding-top: 14px;
}

.hsh-site-footer__company strong {
    color: rgba(255, 245, 224, 0.48);
    font-weight: 500;
}

.hsh-site-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.hsh-site-footer__social a {
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 245, 224, 0.1);
    border-radius: 50%;
    color: rgba(255, 245, 224, 0.68);
    display: flex;
    height: 36px;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 36px;
}

.hsh-site-footer__social a:hover,
.hsh-site-footer__social a:focus {
    background: rgba(232, 96, 10, 0.25);
    border-color: #e8600a;
    color: #fff5e0;
}

.hsh-site-footer__column h4 {
    color: rgba(255, 245, 224, 0.35);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.hsh-site-footer__column a {
    color: rgba(255, 245, 224, 0.58);
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hsh-site-footer__column a:hover,
.hsh-site-footer__column a:focus {
    color: #e8600a;
}

.hsh-site-footer__cta {
    align-items: center;
    background: #e8600a;
    border-radius: 22px;
    color: #fff !important;
    display: inline-flex !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    gap: 6px;
    margin-top: 8px;
    padding: 9px 18px;
}

.hsh-site-footer__cta:hover,
.hsh-site-footer__cta:focus {
    background: #c84d00;
}

.hsh-site-footer__contact {
    max-width: 280px;
}

.hsh-site-footer__contact-row {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.hsh-site-footer__contact-row i {
    color: #e8600a;
    flex: 0 0 auto;
    font-size: 14px;
    margin-top: 2px;
}

.hsh-site-footer__contact-row p,
.hsh-site-footer__contact-row a {
    color: rgba(255, 245, 224, 0.52);
    font-size: 12.5px;
    line-height: 1.72;
    margin: 0;
}

.hsh-site-footer__contact-row a {
    color: #e8600a;
    font-weight: 500;
}

.hsh-site-footer__bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 245, 224, 0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding: 18px clamp(20px, 5vw, 64px);
}

.hsh-site-footer__bottom p {
    color: rgba(255, 245, 224, 0.28);
    font-size: 11.5px;
    margin: 0;
}

.hsh-site-footer__accent {
    background: linear-gradient(90deg, #ff6b00, #fff, #138808);
    border-radius: 2px;
    height: 3px;
    opacity: 0.35;
    width: 72px;
}

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

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hsh-site-footer__body {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .static-brand__meta,
    .static-nav__page,
    .static-nav .static-btn {
        display: none;
    }

    .static-nav {
        height: 68px;
        padding: 0 18px;
    }

    .static-brand {
        gap: 10px;
    }

    .static-brand img {
        height: 44px;
        width: 44px;
    }

    .static-brand__name {
        font-size: 19px;
    }

    .static-nav__link {
        font-size: 15px;
    }

    .static-hero {
        padding-top: 52px;
    }

    .hsh-site-footer__body {
        grid-template-columns: 1fr;
    }

    .hsh-site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .team-grid,
    .contact-form__grid {
        grid-template-columns: 1fr;
    }
}
