:root {
    --ink: #0c0b09;
    --blue: #001fd1;
    --blue-dark: #020735;
    --orange: #ff9800;
    --orange-deep: #e16400;
    --pink: #ff4f93;
    --mint: #34f5c6;
    --paper: #fbf7ef;
    --cream: #eee6d8;
    --white: #ffffff;
    --muted: #756b60;
    --line: rgba(12, 11, 9, 0.14);
    --shadow: 0 26px 80px rgba(2, 7, 53, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background:
        linear-gradient(115deg, rgba(255, 152, 0, 0.16), transparent 32%),
        linear-gradient(250deg, rgba(0, 31, 209, 0.09), transparent 42%),
        linear-gradient(180deg, var(--paper) 0%, #f3eadb 48%, var(--paper) 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

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

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

.noise {
    display: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(251, 247, 239, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand,
.nav {
    display: flex;
    align-items: center;
}

.brand {
    gap: 13px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 950;
}

.brand-logo {
    width: 64px;
    height: 44px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav {
    gap: 24px;
    color: rgba(12, 11, 9, 0.78);
    font-size: 14px;
    font-weight: 850;
}

.nav a {
    transition: color 0.18s ease, transform 0.18s ease;
}

.nav a:hover {
    color: var(--blue);
    transform: translateY(-1px);
}

.nav-cta {
    min-height: 42px;
    padding: 10px 16px;
    color: var(--paper) !important;
    background: var(--ink);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(7, 20, 216, 0.18);
}

main {
    position: relative;
}

.section-grid,
.section,
.dashboard,
.profile-detail,
.auth-shell {
    padding-inline: clamp(20px, 5vw, 72px);
}

.section-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 72px;
    align-items: center;
}

.hero {
    min-height: calc(100vh - 73px);
    padding-top: 68px;
    padding-bottom: 110px;
}

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

.eyebrow {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: 0;
}

h1,
h2,
.profile-intro h1,
.auth-card h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 800;
    line-height: 0.95;
}

.hero h1 {
    max-width: 900px;
    color: var(--ink);
    font-size: 96px;
}

.hero p:not(.eyebrow) {
    max-width: 660px;
    margin: 28px 0;
    color: #51483f;
    font-size: 22px;
    line-height: 1.65;
}

.hero-actions,
.contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button,
button {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    font: inherit;
    font-weight: 950;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
button:hover {
    transform: translateY(-2px);
}

.button.primary {
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 14px 38px rgba(12, 11, 9, 0.22);
}

.button.secondary {
    color: var(--ink);
    border: 1px solid rgba(12, 11, 9, 0.24);
    background: rgba(255, 255, 255, 0.45);
}

.hero-visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.95) 0%, rgba(255, 179, 56, 0.86) 34%, rgba(0, 31, 209, 0.95) 100%);
    border: 1px solid rgba(12, 11, 9, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 28px;
    z-index: 2;
    border: 2px solid rgba(251, 247, 239, 0.66);
    border-radius: 8px;
    pointer-events: none;
}

.hero-visual::after {
    content: "MODE";
    position: absolute;
    right: -22px;
    bottom: -10px;
    z-index: 3;
    color: rgba(251, 247, 239, 0.18);
    font-size: 132px;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 0.8;
}

.hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.48;
    filter: saturate(0.9) contrast(1.18);
}

.hero-logo {
    position: absolute;
    left: 50%;
    top: 41%;
    z-index: 4;
    display: grid;
    width: min(62%, 420px);
    aspect-ratio: 742 / 407;
    place-items: center;
    padding: 20px;
    background: rgba(251, 247, 239, 0.88);
    border: 1px solid rgba(12, 11, 9, 0.16);
    border-radius: 8px;
    box-shadow: 0 28px 54px rgba(2, 7, 53, 0.28);
    transform: translate(-50%, -50%) rotate(-4deg);
}

.hero-logo img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    mix-blend-mode: multiply;
    filter: none;
}

.fashion-card {
    position: absolute;
    z-index: 5;
    width: min(68%, 320px);
    padding: 22px;
    color: var(--white);
    background: rgba(12, 11, 9, 0.82);
    border: 1px solid rgba(251, 247, 239, 0.45);
    border-radius: 8px;
    box-shadow: 0 16px 50px rgba(2, 8, 94, 0.18);
    backdrop-filter: blur(18px);
}

.fashion-card span,
.feature-grid span,
.card-number {
    display: block;
    color: var(--orange);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.fashion-card strong {
    display: block;
    margin-top: 10px;
    font-size: 25px;
    line-height: 1.04;
}

.card-a {
    top: 58px;
    left: 38px;
    transform: rotate(-5deg);
}

.card-b {
    right: 32px;
    top: 276px;
    background: rgba(0, 31, 209, 0.76);
    transform: rotate(4deg);
}

.card-c {
    left: 70px;
    bottom: 58px;
    background: rgba(225, 100, 0, 0.82);
    transform: rotate(-2deg);
}

.section,
.dashboard,
.profile-detail,
.auth-shell {
    padding-top: 84px;
    padding-bottom: 84px;
}

.page-hero {
    padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 92px);
    background: linear-gradient(135deg, rgba(12, 11, 9, 0.96), rgba(2, 7, 53, 0.96));
    color: var(--white);
    border-bottom: 1px solid rgba(255, 152, 0, 0.28);
}

.page-hero h1 {
    max-width: 1050px;
    color: var(--white);
    font-size: 84px;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    color: rgba(251, 247, 239, 0.82);
    font-size: 21px;
    line-height: 1.7;
}

.page-hero .eyebrow,
.dark-band .eyebrow {
    color: var(--orange);
}

.legal-page {
    min-height: 58vh;
}

.legal-content {
    display: grid;
    gap: 28px;
    max-width: 980px;
}

.legal-block {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.legal-block h2 {
    color: var(--ink);
    font-size: clamp(34px, 5vw, 58px);
}

.legal-block p,
.legal-block address {
    max-width: 760px;
    margin: 12px 0 0;
    color: #51483f;
    font-size: 19px;
    font-style: normal;
    line-height: 1.75;
}

.legal-block a {
    color: var(--blue);
    font-weight: 900;
}

.privacy-hero {
    min-height: 48vh;
}

.legal-version {
    margin-top: 24px;
    color: var(--orange) !important;
    font-size: 15px !important;
    font-weight: 950;
    text-transform: uppercase;
}

.privacy-index {
    display: grid;
    grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    padding-block: 42px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.privacy-index > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 36px;
}

.privacy-index a {
    padding: 14px 0;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    font-weight: 900;
}

.privacy-index a:hover,
.privacy-index a:focus-visible {
    color: var(--blue);
}

.privacy-content {
    max-width: 1120px;
    gap: 44px;
}

.privacy-content .legal-block {
    scroll-margin-top: 120px;
    padding-bottom: 44px;
}

.privacy-content .legal-block h2 {
    max-width: 900px;
    font-size: clamp(32px, 4vw, 48px);
}

.privacy-content .legal-block p,
.privacy-content .legal-block address,
.legal-list {
    max-width: 900px;
}

.legal-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding-left: 24px;
    color: #51483f;
    font-size: 18px;
    line-height: 1.7;
}

.legal-sources {
    gap: 14px;
}

.legal-sources a {
    color: var(--blue);
    font-weight: 900;
}

.legal-update-note {
    margin-top: 28px !important;
    padding: 18px 20px;
    color: var(--ink) !important;
    background: rgba(255, 152, 0, 0.12);
    border-left: 4px solid var(--orange);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(300px, 1fr);
    gap: 60px;
    align-items: start;
}

.rich-copy {
    display: grid;
    gap: 16px;
    max-width: 780px;
}

.rich-copy p,
.section-heading > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.75;
}

.dark-band,
.cta-panel {
    margin-inline: clamp(20px, 5vw, 72px);
    border-radius: 8px;
}

.dark-band {
    color: var(--white);
    background: linear-gradient(135deg, var(--ink), var(--blue-dark));
    box-shadow: var(--shadow);
}

.dark-band h2,
.cta-panel h2 {
    max-width: 980px;
    color: var(--white);
    font-size: 64px;
}

.dark-band p,
.dark-band .process-grid p {
    color: rgba(251, 247, 239, 0.78);
}

.process-grid,
.check-grid,
.service-list,
.dashboard-tabs,
.account-types {
    display: grid;
    gap: 16px;
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 34px;
}

.process-grid article,
.service-list article {
    min-height: 220px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(251, 247, 239, 0.16);
    border-radius: 8px;
}

.process-grid h3,
.service-list h3 {
    margin-top: 40px;
    color: inherit;
    font-size: 24px;
}

.cta-panel {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange-deep), var(--orange) 42%, var(--blue));
    box-shadow: var(--shadow);
}

.cta-panel p:not(.eyebrow) {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

.check-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.check-grid div,
.status-panel,
.dashboard-tabs a,
.account-types div,
.faq-list details,
.empty-state,
.overview-card,
.portfolio-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(12, 11, 9, 0.06);
}

.check-grid div::before {
    content: "✓";
    display: inline-grid;
    width: 26px;
    height: 26px;
    margin-right: 10px;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 950;
}

.service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-list article {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--line);
}

.service-list article:nth-child(7) {
    background: rgba(255, 152, 0, 0.14);
    border-color: rgba(225, 100, 0, 0.32);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list summary {
    cursor: pointer;
    color: var(--ink);
    font-size: 20px;
    font-weight: 900;
}

.faq-list p {
    color: var(--muted);
}

.auth-shell {
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 460px);
    gap: 44px;
    align-items: center;
}

.auth-intro h1 {
    font-size: 58px;
}

.auth-intro p {
    max-width: 640px;
    color: var(--muted);
    font-size: 18px;
}

.account-types {
    margin-top: 22px;
}

.account-types strong,
.status-panel strong {
    display: block;
    color: var(--ink);
    font-size: 18px;
}

.account-types span,
.status-panel span {
    color: var(--muted);
}

.contact-shell {
    grid-template-columns: minmax(320px, 1440px);
    justify-content: center;
    align-items: start;
}

.contact-form {
    width: min(1440px, calc(100vw - 96px));
}

.contact-form .form-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-form .checkbox-group {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.subtle-link {
    color: var(--blue);
    font-weight: 850;
}

.back-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 42px;
    margin-bottom: 28px;
    padding: 0 15px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 950;
    box-shadow: 0 12px 34px rgba(12, 11, 9, 0.08);
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.back-link::before {
    content: "←";
    margin-right: 8px;
}

.back-link:hover {
    border-color: rgba(225, 100, 0, 0.42);
    transform: translateY(-2px);
}

.status-panel {
    display: grid;
    gap: 8px;
    border-left: 6px solid var(--orange);
}

.dashboard-tabs {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.dashboard-tabs a {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 850;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.dashboard-tabs a:hover,
.dashboard-tabs a.active {
    background: rgba(255, 152, 0, 0.14);
    border-color: rgba(225, 100, 0, 0.42);
    transform: translateY(-2px);
}

.dashboard-tabs strong {
    font-size: 17px;
}

.dashboard-tabs span {
    color: var(--muted);
    font-weight: 700;
}

.compact {
    padding-top: 52px;
}

.section-heading {
    max-width: 920px;
    margin-bottom: 38px;
}

.section-heading h1,
.section-heading h2,
.auth-card h1,
.profile-intro h1 {
    color: var(--ink);
    font-size: 64px;
}

.feature-grid,
.profile-grid {
    display: grid;
    gap: 18px;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.profile-card,
.search-bar,
.profile-form,
.auth-card,
.contact-card,
.process-step {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(12, 11, 9, 0.08);
}

.feature-grid article {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.feature-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(145deg, rgba(255, 152, 0, 0.2), transparent 46%, rgba(12, 11, 9, 0.1));
}

.feature-grid article > * {
    position: relative;
    z-index: 1;
}

.feature-grid h3 {
    margin-top: 70px;
    color: var(--ink);
    font-size: 30px;
}

.feature-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.leadership-section {
    padding-top: 92px;
}

.leadership-section > .section-heading {
    max-width: 1040px;
}

.leadership-section > .section-heading > p:last-child {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
}

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

.leadership-profile {
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 54px rgba(12, 11, 9, 0.1);
}

.leadership-photo {
    position: relative;
    height: clamp(375px, 45vw, 638px);
    min-height: 0;
    align-self: start;
    overflow: hidden;
    background: #17191e;
}

.leadership-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center top;
}

.leadership-copy {
    display: flex;
    flex-direction: column;
    padding: 34px 36px 38px;
}

.leadership-copy h3 {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.05;
}

.leadership-copy .eyebrow {
    min-height: 36px;
}

.leadership-name-note {
    margin: 10px 0 22px;
    color: var(--orange-deep);
    font-weight: 900;
}

.leadership-copy > p:not(.eyebrow, .leadership-name-note) {
    color: var(--muted);
    font-size: 17px;
}

.leadership-email {
    display: inline-block;
    margin-top: auto;
    padding-top: 10px;
    color: var(--blue);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: rgba(0, 31, 209, 0.3);
    text-underline-offset: 4px;
}

.leadership-email:hover {
    color: var(--orange-deep);
}

.profile-grid {
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
}

.internal-user-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.internal-user-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--paper);
    box-shadow: 0 16px 45px rgba(2, 7, 53, 0.1);
}

.internal-user-card h2 {
    overflow-wrap: anywhere;
}

.profile-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 60px rgba(12, 11, 9, 0.14);
}

.profile-image {
    position: relative;
    display: grid;
    flex: 0 0 360px;
    height: 360px;
    min-height: 360px;
    max-height: 360px;
    overflow: hidden;
    place-items: center;
    color: var(--paper);
    background: linear-gradient(145deg, var(--ink), var(--blue));
    text-decoration: none;
}

.profile-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.gallery img,
.photo-manager img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-image span {
    font-size: 92px;
    font-weight: 950;
}

.profile-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.profile-card h3 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 24px;
}

.profile-card-body > p:last-of-type {
    color: var(--muted);
}

.favorite-form {
    margin: 0;
}

.profile-card-body .favorite-form {
    margin-top: auto;
    padding-top: 18px;
}

.favorite-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 9px 13px;
    border: 1px solid rgba(12, 11, 9, 0.24);
    border-radius: 6px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.profile-card-body .favorite-button {
    width: 100%;
}

.favorite-button:hover,
.favorite-button:focus-visible {
    border-color: var(--orange-deep);
    background: rgba(255, 152, 0, 0.14);
    transform: translateY(-1px);
}

.favorite-button.active {
    color: var(--white);
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

.favorite-button.active:hover,
.favorite-button.active:focus-visible {
    color: var(--ink);
    background: var(--orange);
    border-color: var(--orange-deep);
}

.favorite-star {
    flex: 0 0 auto;
    color: var(--orange-deep);
    font-size: 22px;
    line-height: 1;
}

.favorite-button.active .favorite-star {
    color: var(--orange);
}

.favorites-panel {
    display: grid;
    grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: 28px;
    padding: 24px;
    color: var(--white);
    background: var(--blue-dark);
    border-top: 5px solid var(--orange);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(2, 7, 53, 0.2);
}

.favorites-heading .eyebrow {
    margin-bottom: 7px;
    color: var(--orange);
}

.favorites-heading h2 {
    color: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 27px;
    line-height: 1.15;
}

.favorites-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.favorites-list li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.favorites-list a {
    min-width: 0;
    overflow-wrap: anywhere;
    color: var(--white);
    font-weight: 850;
}

.favorites-list a:hover,
.favorites-list a:focus-visible {
    color: var(--orange);
}

.favorite-form.icon-only .favorite-button {
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border-color: transparent;
}

.favorite-form.icon-only .favorite-button:hover,
.favorite-form.icon-only .favorite-button:focus-visible {
    color: var(--ink);
    background: var(--orange);
    border-color: var(--orange);
}

.favorite-form.icon-only .favorite-button:hover .favorite-star,
.favorite-form.icon-only .favorite-button:focus-visible .favorite-star {
    color: var(--ink);
}

.favorites-empty {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 750;
}

.search-bar {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(180px, 260px) auto;
    align-items: end;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
}

.network-search {
    margin-top: 34px;
}

.search-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.search-actions .button {
    min-height: 48px;
    padding-inline: 18px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 850;
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

legend {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(12, 11, 9, 0.16);
    border-radius: 8px;
    padding: 12px 13px;
    color: var(--ink);
    background: rgba(251, 247, 239, 0.9);
    font: inherit;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(255, 159, 0, 0.44);
    border-color: var(--orange);
}

.auth-shell {
    min-height: 70vh;
    display: grid;
    place-items: center;
}

.auth-card {
    width: min(460px, 100%);
    display: grid;
    gap: 16px;
    padding: 36px;
}

.auth-card.contact-form {
    width: min(1440px, calc(100vw - 96px));
    padding: 42px;
}

.muted {
    color: var(--muted);
}

.form-privacy-notice {
    margin: 4px 0 2px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.form-privacy-notice a {
    color: var(--blue);
    font-weight: 850;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.notice {
    margin: 18px clamp(18px, 5vw, 70px) 0;
    padding: 14px 16px;
    color: #0c3b24;
    background: #dff6e9;
    border-left: 4px solid #1f9d5b;
    border-radius: 8px;
}

.notice.error {
    color: #651b16;
    background: #ffe0dc;
    border-left-color: #d92d20;
}

.dashboard {
    display: grid;
    gap: 28px;
}

.dashboard-overview,
.portfolio-grid {
    display: grid;
    gap: 18px;
}

.dashboard-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.overview-card {
    display: grid;
    min-height: 230px;
    align-content: end;
    gap: 12px;
    color: var(--ink);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 60px rgba(12, 11, 9, 0.14);
}

.overview-card span {
    color: var(--orange-deep);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.16em;
}

.overview-card strong {
    font-size: 30px;
    line-height: 1.05;
}

.overview-card p,
.empty-state span {
    margin: 0;
    color: var(--muted);
}

.profile-form {
    padding: 28px;
}

.profile-photo-editor {
    display: grid;
    grid-template-columns: 132px minmax(220px, 1fr);
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.profile-photo-editor .muted {
    grid-column: 2;
    margin: -8px 0 0;
}

.profile-photo-preview {
    display: grid;
    width: 132px;
    aspect-ratio: 1;
    place-items: center;
    overflow: hidden;
    color: var(--paper);
    background: linear-gradient(145deg, var(--ink), var(--blue));
    border: 1px solid rgba(12, 11, 9, 0.18);
    border-radius: 999px;
    box-shadow: 0 18px 42px rgba(12, 11, 9, 0.14);
}

.profile-photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-photo-preview span {
    font-size: 54px;
    font-weight: 950;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.full {
    grid-column: 1 / -1;
}

.upload-box {
    padding: 18px;
    background: rgba(255, 152, 0, 0.12);
    border: 1px dashed rgba(12, 11, 9, 0.34);
    border-radius: 8px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.44);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.checkbox-group legend {
    grid-column: 1 / -1;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    font-size: 14px;
}

.checkbox-group input {
    width: 18px;
    min-height: 18px;
    accent-color: var(--blue);
}

.photo-manager {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}

.portfolio-shell {
    display: grid;
    gap: 24px;
}

.portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.portfolio-item {
    display: grid;
    gap: 14px;
}

.portfolio-item > img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
}

.caption-form {
    display: grid;
    gap: 12px;
}

.delete-form button {
    min-height: 38px;
    padding: 8px 13px;
    color: var(--white);
    background: rgba(17, 16, 13, 0.78);
    font-size: 12px;
}

.empty-state {
    display: grid;
    gap: 10px;
}

.empty-state strong {
    color: var(--ink);
    font-size: 24px;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.48;
    transform: none;
}

.photo-manager figure {
    position: relative;
    aspect-ratio: 1;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.photo-manager form {
    position: absolute;
    right: 8px;
    bottom: 8px;
}

.photo-manager button {
    min-height: 34px;
    padding: 7px 11px;
    color: var(--white);
    background: rgba(17, 16, 13, 0.78);
    font-size: 12px;
}

.profile-detail {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr);
    gap: 70px;
}

.profile-intro {
    align-self: start;
    position: sticky;
    top: 96px;
}

.profile-portrait {
    width: min(230px, 58vw);
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 28px;
    border-radius: 999px;
    box-shadow: 0 18px 52px rgba(12, 11, 9, 0.16);
}

.profile-intro p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
}

.profile-favorite-action {
    margin-top: 20px;
}

.profile-favorite-action .favorite-button {
    width: min(100%, 290px);
}

.profile-data {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.profile-data section,
.profile-info-block {
    padding: 18px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.profile-data span,
.profile-info-block > span {
    display: block;
    color: var(--blue);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.profile-data strong {
    display: block;
    margin-top: 8px;
    color: var(--ink);
    font-size: 18px;
}

.profile-info-block {
    margin-top: 16px;
}

.profile-info-block p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin: 14px 0 0;
}

.contact-list div {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 14px;
    align-items: baseline;
    padding-top: 12px;
    border-top: 1px solid rgba(12, 11, 9, 0.1);
}

.contact-list dt,
.contact-list dd {
    margin: 0;
}

.contact-list dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.contact-list dd {
    min-width: 0;
    overflow-wrap: anywhere;
}

.contact-list a {
    color: var(--blue);
    font-weight: 900;
}

.agency-request-panel,
.request-target {
    display: grid;
    gap: 10px;
    margin-top: 26px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 38px rgba(12, 11, 9, 0.08);
}

.agency-request-panel strong,
.request-target strong {
    color: var(--ink);
    font-size: 20px;
}

.agency-request-panel span,
.request-target span {
    color: var(--muted);
}

.agency-request-panel .button {
    width: fit-content;
    margin-top: 4px;
}

.agency-request-shell {
    align-items: start;
}

.agency-request-form {
    width: min(560px, 100%);
}

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

.gallery figure {
    margin: 0;
}

.gallery-open {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    background: transparent;
    cursor: zoom-in;
}

.gallery-open:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 4px;
}

.gallery-open img {
    display: block;
    aspect-ratio: 4 / 5;
    box-shadow: 0 14px 36px rgba(12, 11, 9, 0.12);
    transition: transform 180ms ease;
}

.gallery-open:hover img {
    transform: scale(1.015);
}

.gallery figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.portfolio-lightbox {
    width: min(1100px, calc(100vw - 48px));
    max-width: none;
    max-height: calc(100vh - 48px);
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 8px;
    background: transparent;
}

.portfolio-lightbox::backdrop {
    background: rgba(5, 7, 18, 0.88);
    backdrop-filter: blur(5px);
}

.portfolio-lightbox-shell {
    position: relative;
    max-height: calc(100vh - 48px);
    overflow: auto;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.portfolio-lightbox figure {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    margin: 0;
}

.portfolio-lightbox img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 180px);
    object-fit: contain;
    background: #080a13;
}

.portfolio-lightbox figcaption {
    padding: 22px 26px 24px;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.6;
    white-space: pre-wrap;
}

.portfolio-lightbox-close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    display: grid;
    width: 44px;
    height: 44px;
    min-height: 0;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    color: var(--white);
    background: rgba(8, 10, 19, 0.76);
    font-size: 30px;
    line-height: 1;
}

.portfolio-lightbox-close:hover,
.portfolio-lightbox-close:focus-visible {
    color: var(--ink);
    background: var(--orange);
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(240px, 0.9fr) minmax(220px, 0.8fr);
    align-items: start;
    gap: 20px;
    padding: 36px clamp(20px, 5vw, 72px);
    color: var(--ink);
    border-top: 1px solid var(--line);
}

.site-footer p {
    margin: 8px 0 0;
    color: var(--muted);
}

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

.footer-links a {
    color: var(--ink);
    font-weight: 850;
}

.footer-claim {
    color: var(--blue) !important;
    font-weight: 950;
}

@media (max-width: 1120px) {
    .hero h1 {
        font-size: 76px;
    }

    .hero-visual {
        min-height: 540px;
    }
}

@media (max-width: 900px) {
    .section-grid,
    .split-section,
    .search-bar,
    .form-grid,
    .profile-detail,
    .auth-shell {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .feature-grid,
    .leadership-grid,
    .gallery,
    .service-list,
    .process-grid,
    .dashboard-overview,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .profile-intro {
        position: static;
    }

    .leadership-profile {
        grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
        grid-template-rows: 1fr;
    }

    .profile-data,
    .contact-list div {
        grid-template-columns: 1fr;
    }

    .favorites-panel {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-form .form-grid,
    .contact-form .checkbox-group {
        grid-template-columns: 1fr;
    }

    .privacy-index {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .portfolio-lightbox {
        width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
    }

    .portfolio-lightbox-shell {
        max-height: calc(100vh - 24px);
    }

    .portfolio-lightbox img {
        max-height: calc(100vh - 150px);
    }

    .portfolio-lightbox figcaption {
        padding: 18px 20px 20px;
        font-size: 16px;
    }
}

@media (max-width: 720px) {
    .site-header,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav {
        flex-wrap: wrap;
        gap: 14px;
    }

    .leadership-section {
        padding-top: 64px;
    }

    .leadership-profile {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }

    .leadership-photo {
        height: auto;
        aspect-ratio: 2 / 3;
    }

    .leadership-copy {
        padding: 28px 24px 32px;
    }

    .leadership-copy h3 {
        font-size: 36px;
    }

    .hero h1,
    .page-hero h1,
    .dark-band h2,
    .cta-panel h2,
    .auth-intro h1,
    .section-heading h1,
    .section-heading h2,
    .auth-card h1,
    .profile-intro h1 {
        font-size: 46px;
    }

    .hero p:not(.eyebrow) {
        font-size: 18px;
    }

    .hero-visual {
        min-height: 470px;
    }

    .hero-logo {
        width: 78%;
        height: auto;
        padding: 14px;
    }

    .fashion-card {
        width: 78%;
        padding: 18px;
    }

    .fashion-card strong {
        font-size: 21px;
    }

    .card-a {
        left: 20px;
        top: 46px;
    }

    .card-b {
        right: 18px;
        top: 220px;
    }

    .card-c {
        left: 28px;
        bottom: 42px;
    }

    .auth-card,
    .profile-form {
        padding: 22px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .profile-image {
        flex-basis: 330px;
        height: 330px;
        min-height: 330px;
        max-height: 330px;
    }

    .profile-photo-editor {
        grid-template-columns: 1fr;
    }

    .profile-photo-editor .muted {
        grid-column: auto;
    }

    .privacy-index > div {
        grid-template-columns: 1fr;
    }

    .privacy-content .legal-block p,
    .privacy-content .legal-block address,
    .legal-list {
        font-size: 17px;
    }
}
