


/* ==========================================================
   U47GUR Design System
   Version 0.1
   ========================================================== */


/* ==========================================================
   Variables
   ========================================================== */

:root {
    --silver: #a7a9ac;
    --black: #111111;
    --white: #f7f7f5;
    --muted: #666666;
    --border: #ddddda;
    --site-nav-width: 272px;
}


/* ==========================================================
   Reset & Base
   ========================================================== */

* {
    box-sizing: border-box;
}

html {
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--black);
}


/* ==========================================================
   Header & Navigation
   ========================================================== */

.site-header {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 28px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);
}

.brand {
    color: var(--black);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.brand:hover {
    opacity: 0.65;
}

.site-nav {
    display: flex;
    width: var(--site-nav-width);
    gap: 0;
    justify-content: space-between;
}

.site-nav a {
    position: relative;
    color: var(--muted);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-nav a:hover {
    color: var(--black);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: currentColor;
    transition: width 0.25s ease;
}

.site-nav a:hover::after {
    width: 100%;
}


/* ==========================================================
   Home Hero
   ========================================================== */

.home-hero {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 96px 0 48px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
}

.home-hero-content {
    padding-top: 0;
}

.home-hero h1 {
    max-width: 620px;
    margin: 0;

    font-size: clamp(3rem, 4.2vw, 4.6rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1;
}

.home-intro {
    max-width: 580px;
    margin: 42px 0 0;

    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.home-intro a {
    color: var(--black);
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.home-intro a:hover {
    opacity: 0.6;
}

.home-hero-media {
    width: 100%;
}

.home-hero-media img {
    display: block;
    width: 100%;
    height: 420px;

    object-fit: cover;
    object-position: center 30%;
}

.eyebrow {
    margin: 0 0 24px;
    color: var(--silver);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}


/* ==========================================================
   Shared Page Layout
   ========================================================== */

.page-intro {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 96px 0;
}

.page-intro h1 {
    max-width: 1100px;
    margin: 0;

    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1;
}

.page-description {
    max-width: 620px;
    margin: 26px 0 0;

    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
}


/* ==========================================================
   Hub Items
   ========================================================== */

.hub-item {
    display: block;
    margin-top: 48px;
    padding: 22px 0;

    border-top: 1px solid var(--border);

    color: inherit;
    text-decoration: none;

    transition:
        padding-left 0.25s ease,
        border-color 0.25s ease;
}

.hub-item:hover {
    padding-left: 12px;
    border-color: var(--black);
}

.hub-item h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 500;
}

.hub-item p {
    max-width: 520px;
    margin: 12px 0 0;

    color: var(--muted);
    line-height: 1.7;
}


/* ==========================================================
   Studio Directory
   ========================================================== */

.studio-directory {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 72px;

    margin-top: 64px;
}

.studio-item {
    display: flex;
    min-height: 240px;
    padding: 28px 0 26px;
    flex-direction: column;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    color: var(--black);
    text-decoration: none;

    transition: border-color 0.25s ease;
}

.studio-item:hover {
    border-color: var(--black);
}

.studio-item h2 {
    margin: 0;

    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.studio-item p {
    max-width: 480px;
    margin: 16px 0 0;

    color: var(--muted);
    line-height: 1.7;
}

.studio-item-arrow {
    display: inline-block;
    margin-top: auto;

    font-size: 1.25rem;

    transition: transform 0.25s ease;
}

.studio-item:hover .studio-item-arrow {
    transform: translateX(8px);
}


/* ==========================================================
   Expertise Page
   ========================================================== */

.expertise-page {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.expertise-hero {
    padding: 96px 0 88px;
    border-bottom: 1px solid var(--border);
}

.expertise-hero h1 {
    max-width: none;
    margin: 0;

    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.98;
    white-space: normal;
    text-wrap: balance;
}

.expertise-lead {
    max-width: 720px;
    margin: 36px 0 0;

    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

.expertise-content {
    width: min(760px, 100%);
    padding-bottom: 112px;
}

.expertise-section {
    padding: 56px 0;
    border-bottom: 1px solid var(--border);
}

.expertise-section h2 {
    max-width: 680px;
    margin: 0;

    font-size: clamp(1.6rem, 2.4vw, 2.25rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.expertise-section p {
    max-width: 680px;
    margin: 24px 0 0;

    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

@media (max-width: 720px) {

    .studio-directory {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 48px;
    }

    .studio-item {
        min-height: 220px;
    }

    .studio-item + .studio-item {
        border-top: 0;
    }

    .expertise-hero {
        padding: 72px 0 64px;
    }

    .expertise-hero h1 {
        white-space: normal;
    }

    .expertise-lead {
        margin-top: 28px;
        font-size: 1.05rem;
    }

    .expertise-content {
        padding-bottom: 80px;
    }

    .expertise-section {
        padding: 44px 0;
    }

}


/* ==========================================================
   Fisheries Engineering Page
   ========================================================== */

.fisheries-page {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.fisheries-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 96px;
    align-items: end;

    padding: 96px 0 104px;
    border-bottom: 1px solid var(--border);
}

.fisheries-hero h1 {
    margin: 0;

    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-wrap: balance;
}

.fisheries-lead {
    margin: 0;

    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

.fisheries-content {
    padding-bottom: 112px;
}

.fisheries-section {
    border-bottom: 1px solid var(--border);
}

.fisheries-editorial-row,
.fisheries-systems-section {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.4fr);
    gap: 88px;

    padding: 80px 0;
}

.fisheries-section h2,
.fisheries-subsection h2 {
    margin: 0;

    font-size: clamp(1.6rem, 2.4vw, 2.25rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.fisheries-section p,
.fisheries-subsection p {
    max-width: 680px;
    margin: 0;

    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.fisheries-systems-copy p {
    margin-top: 24px;
}

.fisheries-tool-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 32px;

    margin: 36px 0 0;
    padding: 0;
    border-top: 1px solid var(--border);

    list-style: none;
}

.fisheries-tool-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);

    font-size: 0.95rem;
}

.fisheries-projects-section {
    padding: 104px 0;
}

.fisheries-projects-section h2 {
    max-width: 820px;

    font-size: clamp(2.25rem, 4vw, 3.75rem);
    letter-spacing: -0.045em;
    line-height: 1.03;
}

.fisheries-projects-section p {
    max-width: 760px;
    margin-top: 32px;
}

.fisheries-paired-sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    border-bottom: 1px solid var(--border);
}

.fisheries-subsection {
    padding: 80px 56px 80px 0;
}

.fisheries-subsection + .fisheries-subsection {
    padding-right: 0;
    padding-left: 56px;
    border-left: 1px solid var(--border);
}

.fisheries-subsection p {
    margin-top: 24px;
}

.fisheries-resources-section {
    border-bottom: 0;
}

@media (max-width: 900px) {

    .fisheries-hero {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .fisheries-editorial-row,
    .fisheries-systems-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 720px) {

    .fisheries-hero {
        padding: 72px 0 64px;
    }

    .fisheries-content {
        padding-bottom: 80px;
    }

    .fisheries-editorial-row,
    .fisheries-systems-section {
        padding: 56px 0;
    }

    .fisheries-projects-section {
        padding: 72px 0;
    }

    .fisheries-paired-sections {
        grid-template-columns: 1fr;
    }

    .fisheries-subsection {
        padding: 56px 0;
    }

    .fisheries-subsection + .fisheries-subsection {
        padding: 56px 0;
        border-top: 1px solid var(--border);
        border-left: 0;
    }
}

@media (max-width: 480px) {

    .fisheries-tool-list {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================
   Hub Page
   ========================================================== */

.hub-page {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.hub-hero {
    padding: 64px 0 110px;
}

.hub-hero-image {
    display: block;
    width: 100%;
    height: 520px;

    object-fit: cover;
    object-position: center;
}

.hub-placeholder {
    display: grid;
    place-items: center;

    background: #ececea;
    border: 1px solid var(--border);

    color: var(--muted);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.hub-feature-image {
    display: block;
    width: 100%;
    height: 360px;

    object-fit: cover;
}

.hub-hero-content {
    padding-top: 72px;
}

.hub-hero h1 {
    max-width: 920px;
    margin: 0;

    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.hub-hero-content > p {
    max-width: 620px;
    margin: 32px 0 0;

    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hub-section {
    padding: 96px 0;
    border-top: 1px solid var(--border);
}

.hub-section--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: 80px;
    align-items: start;
}

.section-label {
    margin: 0 0 20px;

    color: var(--muted);
    font-size: 0.85rem;
}

.hub-section h2 {
    max-width: 720px;
    margin: 0;

    font-size: clamp(2.25rem, 4vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1;
}

.section-copy {
    max-width: 520px;
    margin: 0;

    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}


/* ==========================================================
   Services
   ========================================================== */

.service-list {
    margin-top: 48px;
}

.service-item {
    display: grid;
    grid-template-columns: minmax(200px, 0.7fr) minmax(320px, 1fr);
    gap: 64px;

    padding: 28px 0;
    border-top: 1px solid var(--border);
}

.service-item:last-child {
    border-bottom: 1px solid var(--border);
}

.service-item h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 500;
}

.service-item p {
    max-width: 520px;
    margin: 0;

    color: var(--muted);
    line-height: 1.7;
}


/* ==========================================================
   Hub Feature Sections
   ========================================================== */

.hub-feature {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 96px;
    align-items: start;
}

.hub-feature:not(.professional-standards-section)
.hub-feature-content > p:last-child {
    max-width: 520px;
    margin: 28px 0 0;

    color: var(--muted);
    line-height: 1.7;
}


/* ==========================================================
   Philosophy
   ========================================================== */

.philosophy-section {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.philosophy-section .hub-feature-image {
    width: 100%;
    height: 360px;

    object-fit: cover;
    object-position: center;
}

.philosophy-section .hub-feature-content {
    max-width: 520px;
}

.philosophy-section h2 {
    margin: 14px 0 22px;
}


/* ==========================================================
   Professional Standards
   ========================================================== */

.professional-standards-section {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 72px;
    align-items: start;
}

.professional-standards-section .hub-feature-content {
    max-width: 680px;
}

.professional-standards-section h2 {
    max-width: 560px;
    margin: 14px 0 32px;
}

.standards-list {
    margin-top: 40px;
}

.standards-item + .standards-item {
    margin-top: 34px;
}

.standards-item h3 {
    margin: 0 0 10px;

    color: var(--black);
    font-size: 1.1rem;
    font-weight: 500;
}

.standards-item p {
    max-width: 640px;
    margin: 0;

    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.qualifications-item {
    margin-top: 34px;
}

.qualifications-intro {
    max-width: 520px;
    margin: 0 0 22px;

    color: var(--muted);
    line-height: 1.7;
}

.qualification-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 16px 0;
    border-top: 1px solid var(--border);
}

.qualification-row:last-child {
    border-bottom: 1px solid var(--border);
}

.qualification-row span {
    color: var(--black);
    font-weight: 500;
}

.qualification-row a {
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.qualification-row a:hover {
    opacity: 0.65;
}

.standards-media {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.standards-media img {
    display: block;
    width: 100%;
    height: 240px;

    object-fit: cover;
    object-position: center;
}


/* ==========================================================
   Booking
   ========================================================== */

.booking-section {
    width: 100%;
    max-width: none;
    padding: 96px 0;

    align-items: start;
}

.booking-section .hub-feature-image {
    width: 100%;
    height: 360px;

    object-fit: cover;
    object-position: center;
}

.booking-section .hub-feature-content {
    max-width: 520px;
}

.booking-section .hub-feature-content > p:not(.section-label) {
    max-width: 520px;
    margin: 28px 0 0;

    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.booking-link {
    display: inline-block;
    margin-top: 32px;

    color: var(--black);
    text-decoration: none;

    border-bottom: 1px solid var(--border);
    transition: border-color 0.2s ease;
}

.booking-link:hover {
    border-color: var(--black);
}


/* ==========================================================
   Vault
   ========================================================== */

.vault-hero,
.vault-directory {
    width: min(1180px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}

.vault-hero {
    padding: 96px 0 80px;
}

.vault-hero h1 {
    max-width: 760px;
    margin: 0;

    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1;
}

.vault-intro {
    max-width: 680px;
    margin: 28px 0 0;

    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.vault-directory {
    padding-bottom: 112px;
    border-top: 1px solid var(--border);
}

.vault-item {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(320px, 1fr);
    gap: 72px;

    padding: 32px 0;
    border-bottom: 1px solid var(--border);

    color: var(--black);
    text-decoration: none;

    transition: opacity 0.25s ease;
}

.vault-item:hover {
    opacity: 0.6;
}

.vault-item h2 {
    margin: 0;

    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.vault-item p {
    margin: 0;

    color: var(--muted);
    line-height: 1.7;
}


/* ==========================================================
   Contact Page
   ========================================================== */

.contact-page {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.contact-intro {
    width: 100%;
    padding: 96px 0 80px;
}

.contact-directory {
    padding: 0 0 112px;
}

.contact-links-row {
    display: flex;
    align-items: center;
    gap: 34px;
}

.contact-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    color: var(--black);
    text-decoration: none;

    transition: opacity 0.25s ease;
}

.contact-icon-link:hover {
    opacity: 0.6;
}

.contact-icon-link svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.contact-links-copy {
    max-width: 620px;
    margin: 22px 0 0;

    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 720px) {

    .contact-intro {
        padding: 72px 0 56px;
    }

    .contact-directory {
        padding-bottom: 80px;
    }

    .contact-links-row {
        gap: 24px;
    }

    .contact-links-copy {
        margin-top: 18px;
    }
}


/* ==========================================================
   Footer
   ========================================================== */

.site-footer {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 56px 0;

    border-top: 1px solid var(--border);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-signature {
    margin: 0;

    color: var(--black);
    font-size: 1rem;
    line-height: 1.5;
}

.footer-copyright {
    margin: 0;

    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-right a {
    color: var(--black);
    text-decoration: none;

    transition: opacity 0.25s ease;
}

.footer-right a:hover {
    opacity: 0.65;
}




/* ==========================================================
   Hive
   ========================================================== */

.hive-page {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 96px 0 112px;
}

.hive-hero {
    padding-bottom: 52px;
}

.hive-visual {
    width: 100%;
    margin: 28px 0 24px;
    overflow: hidden;
}

.hive-visual img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
}

.hive-intro {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hive-work {
    border-top: 1px solid var(--border);
    padding-top: 22px;
}

.hive-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.hive-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.hive-table th,
.hive-table td {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.hive-table th {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 400;
}

.hive-table td {
    color: var(--black);
    line-height: 1.55;
}

.hive-table th:nth-child(1),
.hive-table td:nth-child(1) {
    width: 58%;
    padding-right: 40px;
}

.hive-table th:nth-child(2),
.hive-table td:nth-child(2) {
    width: 24%;
    padding-right: 32px;
}

.hive-table th:nth-child(3),
.hive-table td:nth-child(3) {
    width: 18%;
}

.hive-work-link {
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--black);
    transition: opacity 0.25s ease;
}

.hive-work-link:hover {
    opacity: 0.6;
}

.hive-elsewhere {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.hive-secondary-title {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 400;
}

.elsewhere-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 30px;
}

.elsewhere-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.elsewhere-link:hover {
    color: var(--black);
}

.elsewhere-link svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex: 0 0 auto;
}

.elsewhere-link span {
    font-size: 0.92rem;
}


/* Hive Responsive */

@media (max-width: 720px) {

    .hive-page {
        padding: 72px 0 80px;
    }

    .hive-hero {
        padding-bottom: 40px;
    }

    .hive-visual {
        margin: 24px 0 22px;
    }

    .hive-visual img {
        height: 220px;
    }

    .hive-work {
        padding-top: 18px;
    }

    .hive-elsewhere {
        margin-top: 44px;
        padding-top: 24px;
    }

    .hive-table {
        min-width: 560px;
    }

    .elsewhere-links {
        gap: 14px 22px;
    }
}




/* ==========================================================
   Grove
   ========================================================== */

.grove-page {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 96px 0 112px;
}

.grove-intro {
    max-width: none;
    padding-bottom: 72px;
}

.grove-intro h1 {
    max-width: none;
    margin: 0;

    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1;
}

.grove-index {
    border-top: 1px solid var(--border);
}

.grove-entry {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 28px;

    padding: 22px 0;
    border-bottom: 1px solid var(--border);

    color: var(--black);
}

.grove-entry-date {
    padding-top: 3px;

    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.4;
    white-space: nowrap;
}

.grove-entry-main {
    min-width: 0;
}

.grove-entry h2 {
    max-width: 760px;
    margin: 0;

    font-size: 1.18rem;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.35;
}

.grove-entry-title-link {
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.grove-entry-title-link:hover {
    opacity: 0.6;
}

.grove-entry-taxonomy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 22px;

    margin-top: 8px;
}

.grove-entry-taxonomy-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.grove-entry-taxonomy-icon {
    display: block;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;

    fill: currentColor;
}

.grove-taxonomy-link {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.grove-taxonomy-link:hover {
    color: var(--black);
}

.grove-taxonomy-separator {
    margin: 0 0.35rem;
    color: var(--muted);
}

.grove-entry-tags {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;

    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}


/* Grove Responsive */

@media (max-width: 720px) {

    .grove-page {
        padding: 72px 0 80px;
    }

    .grove-intro {
        padding-bottom: 52px;
    }

    .grove-entry {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 20px 0;
    }

    .grove-entry-date {
        padding-top: 0;
    }

    .grove-entry-taxonomy {
        gap: 7px 18px;
    }
}


/* ==========================================================
   Grove Entry
   ========================================================== */

.grove-entry-page {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 96px 0 112px;
}

.grove-entry-header {
    max-width: 820px;
    padding-bottom: 48px;
}

.grove-entry-header h1 {
    max-width: 820px;
    margin: 0;

    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.grove-entry-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;

    margin-top: 28px;

    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.grove-entry-meta > time,
.grove-entry-meta > span {
    flex: 0 0 auto;
}

.grove-entry-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.grove-entry-meta .grove-entry-taxonomy-icon {
    display: block;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    fill: currentColor;
}

.grove-entry-meta-icon {
    display: block;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    fill: currentColor;
}

.grove-entry-meta-separator {
    color: var(--muted);
}

.grove-entry-body {
    max-width: 720px;
    padding-top: 44px;

    border-top: 1px solid var(--border);

    font-size: 1.04rem;
    line-height: 1.82;
}

.grove-entry-body > *:first-child {
    margin-top: 0;
}

.grove-entry-body p {
    margin: 0 0 1.45em;
}

.grove-entry-body h2 {
    margin: 2.6em 0 0.8em;

    font-size: 1.45rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.grove-entry-body h3 {
    margin: 2.2em 0 0.7em;

    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
}

.grove-entry-body ul,
.grove-entry-body ol {
    margin: 0 0 1.45em;
    padding-left: 1.35em;
}

.grove-entry-body li + li {
    margin-top: 0.45em;
}

.grove-entry-body blockquote {
    margin: 2em 0;
    padding-left: 20px;

    border-left: 1px solid var(--border);

    color: var(--muted);
}

.grove-entry-body a {
    color: var(--black);
    text-decoration: none;

    border-bottom: 1px solid var(--black);
}

.grove-entry-body a:hover {
    opacity: 0.6;
}

.grove-entry-body img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;

    margin: 2.4em 0;
}

.grove-entry-body hr {
    margin: 3em 0;

    border: 0;
    border-top: 1px solid var(--border);
}

.grove-entry-footer {
    max-width: 720px;
    margin-top: 64px;
    padding-top: 22px;

    border-top: 1px solid var(--border);
}

.grove-entry-footer a {
    color: var(--muted);
    font-size: 0.9rem;
    text-decoration: none;
}

.grove-entry-footer a:hover {
    color: var(--black);
}


/* Grove Entry Responsive */

@media (max-width: 720px) {

    .grove-entry-page {
        padding: 72px 0 80px;
    }

    .grove-entry-header {
        padding-bottom: 36px;
    }

    .grove-entry-meta {
        gap: 7px 14px;
        margin-top: 24px;
    }

    .grove-entry-body {
        padding-top: 34px;

        font-size: 1rem;
        line-height: 1.75;
    }

    .grove-entry-footer {
        margin-top: 52px;
    }
}


/* ==========================================================
   Responsive
   ========================================================== */

@media (max-width: 720px) {

    .site-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

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


    /* Home */

    .home-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 64px 0 72px;
    }

    .home-hero-content {
        padding-top: 0;
    }

    .home-hero-media {
        width: 100%;
    }

    .home-hero-media img {
        width: 100%;
        height: 280px;

        object-fit: cover;
        object-position: center 30%;
    }


    /* Hub */

    .hub-feature,
    .professional-standards-section,
    .booking-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hub-feature-image {
        height: 280px;
    }

    .philosophy-section {
        grid-template-columns: 1fr;
    }

    .philosophy-section .hub-feature-image {
        height: 280px;
    }

    .standards-media {
        order: 2;
        gap: 20px;
    }

    .standards-media img {
        height: 240px;
    }

    .booking-section {
        padding: 72px 0 80px;
    }

    .booking-section .hub-feature-content {
        max-width: none;
    }

    .qualification-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }


    /* Vault */

    .vault-hero {
        padding: 72px 0 56px;
    }

    .vault-directory {
        padding-bottom: 80px;
    }

    .vault-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 0;
    }


    /* Footer */

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .footer-right {
        align-items: flex-start;
        justify-content: flex-start;
    }
}


/* ==========================================================
   Current
   ========================================================== */

.current-page {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 96px 0 112px;
}

.current-header {
    padding-bottom: 72px;
}

.current-header h1 {
    max-width: 900px;
    margin: 0;

    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1;
}

.current-list {
    border-top: 1px solid var(--border);
}

.current-item {
    display: grid;
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
    gap: 72px;

    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.current-item-heading {
    display: flex;
    align-items: center;
    gap: 10px;

    align-self: start;
}

.current-item-heading h2 {
    margin: 0;

    font-size: 1.18rem;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.35;
}

.current-section-icon {
    display: block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    flex: 0 0 16px;

    color: var(--muted);
}

.current-item-body {
    min-width: 0;
    max-width: 680px;
}

.current-item-body > p {
    margin: 0;

    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.current-item-body > p a {
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--black);
    transition: opacity 0.2s ease;
}

.current-item-body > p a:hover {
    opacity: 0.6;
}

.current-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 24px;

    margin-top: 14px;
}

.current-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
    text-decoration: none;

    transition: color 0.2s ease;
}

.current-profile-link:hover {
    color: var(--black);
}


.current-brand-icon {
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    object-fit: contain;
}

.current-tool {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.current-external-mark {
    margin-left: -3px;
    font-size: 0.8em;
    line-height: 1;
}

.current-tool {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.current-links--using {
    gap: 10px 20px;
}



/* Current Responsive */

@media (max-width: 720px) {

    .current-page {
        padding: 72px 0 80px;
    }

    .current-header {
        padding-bottom: 52px;
    }

    .current-item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 24px 0;
    }

    .current-item-body {
        max-width: none;
    }

    .current-links {
        gap: 9px 20px;
        margin-top: 12px;
    }
}

/* Grove entry cover */

.grove-entry-cover {
    max-width: 720px;
    margin: 0 0 2.5rem;
    padding: 0;
}

.grove-entry-cover img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 480px;
    height: auto;
    object-fit: contain;
}

/* ==========================================================
   CV
   ========================================================== */

.cv-page {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 96px 0 112px;
}

.cv-header {
    padding-bottom: 72px;
}

.cv-header h1 {
    max-width: 900px;
    margin: 0;

    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1;
}

.cv-intro {
    max-width: 680px;
    margin: 28px 0 0;

    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.cv-section {
    display: grid;
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
    gap: 72px;

    padding: 42px 0 0;
    border-top: 1px solid var(--border);
}

.cv-section + .cv-section {
    margin-top: 72px;
}

.cv-section > h2 {
    margin: 0;

    font-size: 1.18rem;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.35;
}

.cv-list {
    min-width: 0;
}

.cv-entry {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 28px;

    padding: 0 0 28px;
}

.cv-entry + .cv-entry {
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.cv-entry-period {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

.cv-entry-main h3 {
    margin: 0;

    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.45;
}

.cv-entry-place {
    margin: 4px 0 0;

    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.cv-entry-main > p:not(.cv-entry-place) {
    max-width: 620px;
    margin: 12px 0 0;

    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.cv-facts {
    max-width: 680px;
}

.cv-facts > div {
    display: flex;
    justify-content: space-between;
    gap: 32px;

    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}

.cv-facts > div:first-child {
    padding-top: 0;
}

.cv-facts span,
.cv-facts strong {
    font-size: 0.94rem;
    line-height: 1.5;
}

.cv-facts strong {
    color: var(--muted);
    font-weight: 400;
}

.cv-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;

    max-width: 680px;
}

.cv-skills span {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.55;
}


/* CV Responsive */

@media (max-width: 720px) {

    .cv-page {
        padding: 72px 0 80px;
    }

    .cv-header {
        padding-bottom: 52px;
    }

    .cv-section {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 30px;
    }

    .cv-section + .cv-section {
        margin-top: 52px;
    }

    .cv-entry {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .cv-entry + .cv-entry {
        padding-top: 24px;
    }

    .cv-entry-period {
        order: 2;
    }

    .cv-entry-main {
        order: 1;
    }
}

/* ==========================================================
   Home Emblem
   Added without changing any existing rules
   ========================================================== */

.home-hero {
    min-height: 484px;
    grid-template-rows: auto minmax(0, 1fr);
    column-gap: 72px;
    row-gap: 0;
    align-items: stretch;
    align-content: stretch;
}

.home-hero-content {
    grid-column: 1;
    grid-row: 1;
}

.home-hero-emblem {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    position: relative;
    overflow: visible;
}

.home-hero-media img.u47gur-emblem {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;

    width: var(--site-nav-width);
    max-width: none;
    height: auto;

    object-fit: contain;
    object-position: center;
    overflow: visible;

    transform: translateY(-50%) scale(1.28);
}

.u47gur-emblem .emblem-cycle {
    stroke: var(--black);
    stroke-width: 7;
}

.u47gur-emblem .emblem-intersection {
    color: var(--black);
    stroke: var(--black);
    stroke-width: 5;
}

.u47gur-emblem .emblem-aperture {
    stroke: var(--silver);
    stroke-width: 5;
}

@media (max-width: 720px) {

    .site-nav {
        width: auto;
        gap: 14px 22px;
        justify-content: flex-start;
    }

    .home-hero {
        min-height: 0;
        grid-template-rows: auto;
        align-items: start;
        align-content: normal;
    }

    .home-hero-content,
    .home-hero-emblem {
        grid-column: 1;
        grid-row: auto;
    }

    .home-hero-emblem {
        min-height: 280px;

        display: flex;
        align-items: center;
        justify-content: center;

        overflow: visible;
    }

    .home-hero-media img.u47gur-emblem {
        position: static;

        width: min(78vw, 320px);
        height: auto;
        max-width: 100%;

        transform: none;
    }
}
/* ==========================================================
   CV Portrait
   ========================================================== */

.cv-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 56px;
    align-items: start;
}

.cv-portrait {
    width: 100%;
}

.cv-portrait img {
    display: block;
    width: 100%;
    height: 320px;

    object-fit: cover;
    object-position: center 28%;
}

@media (max-width: 720px) {

    .cv-header {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cv-portrait {
        width: 100%;
        max-width: 360px;
    }

    .cv-portrait img {
        height: auto;
    }
}
/* ==========================================================
   Records Private Access
   ========================================================== */

.records-private-page {
    width: min(
        680px,
        calc(100% - 48px)
    );
    margin: 0 auto;
    padding: 88px 0 72px;
}

.records-private-page--wide {
    width: min(
        1180px,
        calc(100% - 48px)
    );
}

.records-private-page h1 {
    margin: 0;
    font-size: clamp(
        2.75rem,
        5vw,
        4.5rem
    );
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1;
}

.records-private-intro {
    max-width: 620px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.records-requested-record {
    margin-top: 40px;
    padding: 22px 0 24px;
    border-top:
        1px solid var(--border);
    border-bottom:
        1px solid var(--border);
}

.records-requested-record-label {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.4;
}

.records-requested-record h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.25;
}

.records-requested-record h2 + p {
    margin: 9px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.records-access-form {
    margin-top: 36px;
}

.records-form-field + .records-form-field {
    margin-top: 24px;
}

.records-form-field label {
    display: block;
    margin-bottom: 9px;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.4;
}

.records-form-field input,
.records-form-field textarea {
    display: block;
    width: 100%;
    margin: 0;
    border:
        1px solid var(--border);
    border-radius: 0;
    padding: 13px 14px;
    background: transparent;
    color: var(--black);
    font: inherit;
}

.records-form-field input {
    min-height: 48px;
}

.records-form-field textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}

.records-form-field input:focus,
.records-form-field textarea:focus {
    border-color: var(--black);
    outline:
        1px solid var(--black);
    outline-offset: 2px;
}

.records-honeypot {
    position: fixed !important;
    top: -10000px !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.records-form-submit,
.records-text-button {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--black);
    font: inherit;
    cursor: pointer;
}

.records-form-submit {
    margin-top: 30px;
    padding: 0 0 5px;
    border-bottom:
        1px solid var(--black);
}

.records-access-form
.records-form-submit {
    min-height: 44px;
    padding: 11px 18px;
    border:
        1px solid var(--black);
    background: transparent;
    transition:
        background-color .2s ease,
        color .2s ease;
}

.records-access-form
.records-form-submit:hover,
.records-access-form
.records-form-submit:focus-visible {
    background: var(--black);
    color: var(--white);
}

.records-text-button {
    padding: 7px 0;
}

.records-form-submit:hover,
.records-text-button:hover {
    opacity: .65;
}

.records-access-form
.records-form-submit:hover,
.records-access-form
.records-form-submit:focus-visible {
    opacity: 1;
}

.records-form-error {
    margin: 28px 0 0;
    color: var(--black);
    line-height: 1.6;
}

.records-private-return {
    margin: 42px 0 0;
}

.records-private-return a {
    color: var(--black);
    text-decoration: none;
}

.records-private-return a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.records-private-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 56px;
}

.records-admin-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
}

.records-private-page
.records-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.records-admin-table th,
.records-admin-table td {
    padding: 12px 14px 12px 0;
    border-bottom:
        1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.records-admin-table th {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 400;
    line-height: 1.35;
}

.records-admin-table td {
    font-size: .9rem;
    line-height: 1.5;
}

.records-admin-reason {
    min-width: 220px;
    max-width: 360px;
    overflow-wrap: anywhere;
}

@media (max-width: 720px) {
    .records-private-page {
        width: min(
            100% - 40px,
            680px
        );
        padding: 72px 0 64px;
    }

    .records-private-page h1 {
        font-size: clamp(
            2.5rem,
            11vw,
            3.5rem
        );
    }

    .records-requested-record {
        margin-top: 34px;
    }

    .records-access-form {
        margin-top: 32px;
    }

    .records-private-heading {
        display: block;
    }

    .records-private-heading form {
        margin-top: 28px;
    }
}
/* ==========================================================
   Records Owner Decisions
   ========================================================== */

.records-admin-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.records-admin-actions form {
    margin: 0;
}

.records-action-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    padding: 0 0 4px;
    border: 0;
    border-bottom:
        1px solid currentColor;
    border-radius: 0;
    background: transparent;
    color: var(--black);
    font: inherit;
    font-size: .86rem;
    cursor: pointer;
}

.records-action-button--reject {
    color: var(--muted);
}

.records-action-button:hover,
.records-action-button:focus-visible {
    opacity: .6;
}

.records-approved-code {
    margin-top: 40px;
    padding: 22px 0 24px;
    border-top:
        1px solid var(--border);
    border-bottom:
        1px solid var(--border);
}

.records-approved-code-label {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: .82rem;
}

.records-approved-code code {
    display: block;
    color: var(--black);
    font-family:
        "Courier New",
        Courier,
        monospace;
    font-size: 1rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
    user-select: all;
}

.records-approved-code code + p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: .85rem;
}

.records-approved-email {
    margin-top: 36px;
    padding: 24px;
    border:
        1px solid var(--border);
}

.records-approved-email p {
    margin: 0;
    line-height: 1.65;
}

.records-approved-email p + p {
    margin-top: 18px;
}

@media (max-width: 720px) {
    .records-admin-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .records-approved-email {
        padding: 20px;
    }
}
.records-use-code-link {
    display: inline-block;
    margin-top: 24px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--black);
    color: var(--black);
    text-decoration: none;
}

.records-use-code-link:hover {
    opacity: 0.6;
}

.records-private-page--record {
    width: min(1180px, calc(100% - 48px));
}

.records-protected-content {
    margin-top: 52px;
}

.records-protected-content h2 {
    margin: 42px 0 16px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 400;
}

.records-protected-meta {
    margin-bottom: 48px;
}

.records-protected-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.records-protected-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.records-protected-table th,
.records-protected-table td {
    border-bottom: 1px solid var(--border);
    padding: 12px 14px 12px 0;
    text-align: left;
    vertical-align: top;
}

.records-protected-table th {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.35;
}

.records-protected-table td {
    color: var(--black);
    font-size: 0.9rem;
    line-height: 1.5;
}

.records-protected-nav,
.records-protected-grade-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-bottom: 26px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.records-protected-grade-nav {
    margin-top: 30px;
}

.records-protected-nav a,
.records-protected-grade-nav a {
    color: var(--muted);
    font-size: 0.88rem;
    text-decoration: none;
}

.records-protected-nav a:hover,
.records-protected-nav a.active,
.records-protected-grade-nav a:hover,
.records-protected-grade-nav a.active {
    color: var(--black);
}

.records-protected-nav a.active,
.records-protected-grade-nav a.active {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.records-protected-grade-title {
    margin: 0 0 16px;
    color: var(--black);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 720px) {
    .records-protected-content {
        margin-top: 42px;
    }
}
/* ==========================================================
   Compact Mobile Navigation
   ========================================================== */

@media (max-width: 360px) {

    .site-nav {
        width: 100%;
        flex-wrap: nowrap;
        gap: 0;
        justify-content: space-between;
    }

}

/* ==========================================================
   Store
   ========================================================== */

.store-page,
.store-service-page,
.store-request-page {
    width: min(1100px, calc(100% - 48px));
    margin: 0 auto;
    padding: 96px 0 112px;
}

.store-hero,
.store-service-hero {
    max-width: 820px;
    padding-bottom: 64px;
}

.store-hero h1,
.store-service-hero h1,
.store-request-page h1 {
    margin: 0;
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1;
}

.store-lead,
.store-service-lead,
.store-request-lead {
    max-width: 680px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.store-section,
.store-service-section,
.store-service-facts {
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.store-section > h2,
.store-section-heading h2,
.store-service-section h2 {
    margin: 0 0 28px;
    font-size: .86rem;
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: uppercase;
}

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

.store-service-card {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--border);
}

.store-service-card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.store-service-card p,
.store-service-section p,
.store-apparel p {
    color: var(--muted);
    line-height: 1.7;
}

.store-service-card a {
    align-self: flex-start;
    margin-top: auto;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.store-apparel p {
    max-width: 620px;
    margin: 0;
}

.store-service-page {
    max-width: 900px;
}

.store-service-section p {
    max-width: 700px;
    margin: 0;
}

.store-service-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin: 0 0 40px;
}

.store-service-facts div {
    display: grid;
    gap: 8px;
}

.store-service-facts dt {
    color: var(--muted);
    font-size: .8rem;
}

.store-service-facts dd {
    margin: 0;
}

.store-primary-link,
.store-secondary-link {
    display: inline-block;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.store-request-page {
    max-width: 760px;
}

.store-requested-service {
    display: grid;
    gap: 7px;
    margin: 42px 0;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.store-requested-service span {
    color: var(--muted);
    font-size: .8rem;
}

.store-requested-service strong {
    font-weight: 500;
}

.store-request-form {
    max-width: 640px;
}

.store-form-field {
    display: grid;
    gap: 9px;
    margin-top: 24px;
}

.store-form-field label {
    font-size: .84rem;
}

.store-form-field input,
.store-form-field textarea,
.store-form-field select {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--border);
    border-radius: 0;
    background: transparent;
    padding: 12px;
    color: var(--black);
    font: inherit;
}

.store-form-field textarea {
    resize: vertical;
}

.store-consent-field {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0;
}

.store-submit {
    border: 1px solid var(--black);
    border-radius: 0;
    background: var(--black);
    padding: 12px 18px;
    color: var(--white);
    font: inherit;
    cursor: pointer;
}

.store-form-error,
.store-field-error {
    color: #8b2f2f;
}

.store-field-error {
    font-size: .8rem;
}

.store-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.store-secondary-link {
    margin-top: 36px;
}

@media (max-width: 760px) {
    .store-page,
    .store-service-page,
    .store-request-page {
        padding: 72px 0 80px;
    }

    .store-service-grid,
    .store-service-facts {
        grid-template-columns: 1fr;
    }

    .store-service-card {
        min-height: 220px;
    }
}

/* ==========================================================
   Owner Dashboard
   ========================================================== */

.owner-dashboard-page {
    width: min(980px, calc(100% - 48px));
    margin: 0 auto;
    padding: 96px 0 112px;
}

.owner-module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.owner-module-card {
    min-height: 190px;
    padding: 28px;
    border: 1px solid var(--border);
    color: var(--black);
    text-decoration: none;
}

.owner-module-card h2 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 500;
}

.owner-module-card p {
    margin: 68px 0 0;
    color: var(--muted);
}

.owner-module-card strong {
    color: var(--black);
    font-size: 1.4rem;
    font-weight: 500;
}

.owner-heading-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.owner-status-nav {
    display: flex;
    gap: 24px;
    margin: 36px 0 26px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
}

.owner-status-nav a {
    color: var(--muted);
    text-decoration: none;
}

.owner-status-nav a.active,
.owner-status-nav a:hover {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.owner-request-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 36px;
    margin: 42px 0;
}

.owner-request-details div {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.owner-request-details dt {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: .8rem;
}

.owner-request-details dd {
    margin: 0;
    line-height: 1.6;
    overflow-wrap: anywhere;
    white-space: pre-wrap;
}

.owner-request-details-wide {
    grid-column: 1 / -1;
}

.owner-request-actions {
    margin: 32px 0;
}

.store-form-heading,
.owner-availability-form h2 {
    margin: 44px 0 8px;
    font-size: 1.2rem;
    font-weight: 500;
}

.store-field-note,
.store-form-field small {
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.55;
}

.store-form-field ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-form-field ul label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.store-form-field ul input {
    width: auto;
}

.store-empty-state,
.owner-availability-form {
    margin-top: 42px;
    padding: 28px 0;
    border-top: 1px solid var(--border);
}

.owner-slot-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.owner-inline-form {
    display: inline-block;
    margin-right: 12px;
}

.store-product-category {
    margin-top: 54px;
}

.store-product-category > header {
    max-width: 680px;
    margin-bottom: 26px;
}

.store-product-category h3 {
    margin: 0 0 10px;
    font-size: 1.45rem;
    font-weight: 500;
}

.store-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 42px;
}

.store-product-card a {
    color: var(--black);
    text-decoration: none;
}

.store-product-card img {
    display: block;
    width: 100%;
    height: auto;
    background: #eceae7;
}

.store-product-card-copy {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
    padding-top: 16px;
}

.store-product-card-copy .store-product-card-category {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: .74rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.store-product-card h4,
.store-product-card p {
    margin: 0;
}

.store-product-card h4 {
    font-size: 1rem;
    font-weight: 500;
}

.store-product-card span {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: .82rem;
}

.store-section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 34px;
}

.store-section-nav a,
.store-color-options a {
    color: var(--muted);
    text-decoration: none;
}

.store-section-nav a:hover,
.store-color-options a:hover,
.store-color-options a.active {
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.store-product-colors {
    display: flex;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--muted);
    font-size: .78rem;
}

.store-product-colors span + span::before {
    content: "·";
    margin-right: 7px;
}

.store-color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 32px 0 12px;
}

.store-color-options > span {
    width: 100%;
    color: var(--muted);
    font-size: .82rem;
}

.store-section-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
}

.store-section-heading .store-cart-link {
    flex: 0 0 auto;
    color: var(--black);
    font-size: .86rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.store-product-page {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: 64px;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 96px 0 112px;
}

.store-product-gallery img {
    display: block;
    width: 100%;
    height: auto;
}

.store-product-information {
    position: sticky;
    top: 32px;
    align-self: start;
}

.store-product-information h1 {
    margin: 12px 0;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 500;
}

.store-product-price {
    margin: 0 0 28px;
    font-size: 1.1rem;
}

.store-product-facts {
    display: grid;
    gap: 12px;
    margin: 32px 0;
}

.store-product-facts div,
.store-order-summary div,
.store-cart-total {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.store-product-facts dt {
    color: var(--muted);
}

.store-product-facts dd {
    margin: 0;
}

.store-cart-quantity,
.owner-inventory-row input[type="number"] {
    width: 74px;
    border: 1px solid var(--border);
    padding: 8px;
    font: inherit;
}

.store-cart-total {
    margin-top: 24px;
    font-size: 1.1rem;
}

.store-cart-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.store-cart-actions a {
    text-decoration: none;
}

.store-order-summary {
    max-width: 640px;
    margin: 42px 0;
}

.store-order-summary h2 {
    font-size: 1.2rem;
    font-weight: 500;
}

.owner-inventory-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

.owner-product-images figure {
    margin: 0;
}

.owner-product-images img {
    display: block;
    width: 100%;
    height: auto;
}

.owner-product-images figcaption {
    margin: 9px 0;
    color: var(--muted);
    font-size: .8rem;
}

@media (max-width: 720px) {
    .owner-dashboard-page {
        padding: 72px 0 80px;
    }

    .owner-module-grid,
    .owner-request-details,
    .owner-slot-fields,
    .store-product-page,
    .owner-product-images {
        grid-template-columns: 1fr;
    }

    .store-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .store-product-page {
        gap: 38px;
        padding: 72px 0 80px;
    }

    .store-product-information {
        position: static;
    }

    .owner-inventory-row,
    .store-cart-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .owner-heading-actions {
        align-items: flex-end;
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 520px) {
    .store-product-grid {
        grid-template-columns: 1fr;
    }
}
