:root {
    --ink-950: #060b14;
    --ink-900: #0b1322;
    --ink-850: #111d31;
    --ink-800: #15253e;
    --stone-50: #f8f5ef;
    --stone-100: #eee7db;
    --stone-200: #dfd3c1;
    --stone-300: #c9b9a1;
    --brand-700: #8f2f25;
    --brand-600: #b13f2f;
    --brand-500: #cb5c3f;
    --gold-500: #d8a15a;
    --gold-400: #e7bb79;
    --emerald-500: #3b8f6a;
    --text-900: #1a2433;
    --text-700: #4a5666;
    --text-500: #6f7783;
    --white: #ffffff;
    --radius-sm: 0.7rem;
    --radius-md: 1rem;
    --radius-lg: 1.45rem;
    --shadow-soft: 0 16px 34px rgba(16, 25, 41, 0.1);
    --shadow-strong: 0 28px 60px rgba(7, 12, 21, 0.28);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
    color: var(--text-900);
    background: linear-gradient(180deg, #fdfbf8 0%, #f8f3ea 100%);
}

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

img {
    width: 100%;
    display: block;
    height: auto;
}

.container {
    width: min(1180px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.section-pad {
    padding: clamp(4.2rem, 8vw, 6.8rem) 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brand-600);
    margin-bottom: 0.95rem;
}

.eyebrow::before {
    content: "";
    width: 1.4rem;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.section-head {
    max-width: 790px;
    margin-bottom: clamp(2rem, 3vw, 3rem);
}

.section-head h2 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(1.95rem, 4.3vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.section-head.light .eyebrow {
    color: var(--gold-400);
}

.section-head.light h2 {
    color: var(--white);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.78rem 1.35rem;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

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

.btn-primary {
    color: var(--white);
    background: linear-gradient(145deg, var(--brand-600) 0%, var(--gold-500) 100%);
    box-shadow: 0 14px 28px rgba(177, 63, 47, 0.36);
}

.btn-ghost {
    color: var(--ink-850);
    border: 1px solid rgba(17, 29, 49, 0.22);
    background: rgba(255, 255, 255, 0.82);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(8, 14, 25, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    transition: background 0.28s ease, box-shadow 0.28s ease;
}

.site-header.scrolled {
    background: rgba(6, 11, 20, 0.96);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.36);
}

.topbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.56rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-shell {
    width: min(1220px, calc(100% - 2.5rem));
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.8rem;
    padding: 0.95rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    color: var(--white);
}

.brand-mark {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.62rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Georgia", "Times New Roman", serif;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(145deg, var(--brand-600) 0%, var(--gold-500) 100%);
    box-shadow: 0 10px 24px rgba(177, 63, 47, 0.45);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.brand-copy small {
    margin-top: 0.05rem;
    font-size: 0.63rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.primary-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.primary-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.87rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.4rem 0.15rem;
    transition: color 0.24s ease;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--brand-500), var(--gold-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
    transform: scaleX(1);
}

.header-cta {
    justify-self: end;
    color: var(--white);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0.56rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    transition: border-color 0.24s ease, background 0.24s ease;
}

.header-cta:hover {
    border-color: var(--gold-400);
    background: rgba(216, 161, 90, 0.16);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0.2rem;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 1.45rem;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    margin: 0.28rem 0;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% -10%, rgba(216, 161, 90, 0.35) 0%, rgba(216, 161, 90, 0) 34%),
        radial-gradient(circle at 92% 0%, rgba(177, 63, 47, 0.25) 0%, rgba(177, 63, 47, 0) 38%),
        linear-gradient(160deg, #fffdf9 0%, #f4ecdf 100%);
    padding: clamp(3.4rem, 8vw, 6.1rem) 0;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: -120px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(17, 29, 49, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    left: -170px;
    bottom: -220px;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(177, 63, 47, 0.12) 0%, rgba(177, 63, 47, 0) 68%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.7rem, 3.7vw, 3.5rem);
    align-items: center;
}

.hero-copy h1 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(2.25rem, 5vw, 4.25rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    max-width: 16.5ch;
    margin-bottom: 1rem;
    color: #111925;
}

.hero-lead {
    max-width: 60ch;
    color: var(--text-700);
    margin-bottom: 1.7rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.72rem;
    margin-bottom: 1.7rem;
}

.metric-strip {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.metric-strip li {
    position: relative;
    padding: 0.9rem 0.95rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(17, 29, 49, 0.11);
    box-shadow: var(--shadow-soft);
}

.metric-strip li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-500), var(--gold-500));
    opacity: 0.7;
}

.metric-strip strong {
    display: block;
    font-family: "Georgia", "Times New Roman", serif;
    color: #101925;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.33rem;
}

.metric-strip span {
    font-size: 0.83rem;
    color: var(--text-700);
}

.hero-collage {
    position: relative;
    min-height: 500px;
}

.hero-collage figure {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-strong);
}

.hero-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-collage figcaption {
    position: absolute;
    left: 0.8rem;
    bottom: 0.8rem;
    color: var(--white);
    font-size: 0.73rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.34rem 0.7rem;
    border-radius: 999px;
    background: rgba(6, 11, 20, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.collage-main {
    inset: 0 1.2rem 0.8rem 0;
}

.collage-top {
    width: 220px;
    height: 145px;
    right: 0;
    top: -0.7rem;
}

.collage-bottom {
    width: 250px;
    height: 165px;
    left: -1.3rem;
    bottom: -0.22rem;
}

.story {
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    gap: clamp(1.5rem, 3.8vw, 3rem);
    align-items: center;
}

.story-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--stone-200);
    background: linear-gradient(160deg, #fff9f1 0%, #ffffff 100%);
    padding: clamp(1.45rem, 3vw, 2.3rem);
    box-shadow: var(--shadow-soft);
}

.story-card p {
    color: var(--text-700);
    margin-bottom: 1rem;
}

.value-grid {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.62rem;
    margin-top: 0.4rem;
}

.value-grid li {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.46rem 0.72rem;
    border-radius: 999px;
    color: var(--ink-850);
    border: 1px solid var(--stone-200);
    background: var(--stone-100);
}

.story-visual {
    position: relative;
    min-height: 420px;
}

.story-photo {
    position: absolute;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.story-photo-large {
    inset: 0 0 3rem 0;
}

.story-photo-small {
    width: 51%;
    height: 42%;
    right: -0.8rem;
    bottom: 0;
    border: 5px solid var(--white);
}

.badge-card {
    position: absolute;
    left: -0.6rem;
    bottom: 0.95rem;
    width: 188px;
    border: 1px solid var(--stone-200);
    border-radius: 1rem;
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.badge-card img {
    height: 95px;
    object-fit: cover;
}

.badge-card p {
    padding: 0.7rem 0.82rem;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--text-700);
}

.operations {
    position: relative;
    background:
        radial-gradient(circle at 75% -10%, rgba(216, 161, 90, 0.25) 0%, rgba(216, 161, 90, 0) 40%),
        linear-gradient(165deg, #090f1a 0%, #111f34 64%, #162944 100%);
}

.operations::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.16;
    pointer-events: none;
}

.operations .container {
    position: relative;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.98rem;
}

.op-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 34px rgba(2, 7, 14, 0.32);
}

.op-card img {
    height: 182px;
    object-fit: cover;
}

.op-card div {
    padding: 1rem 1rem 1.2rem;
}

.op-card h3 {
    color: var(--white);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.06rem;
    margin-bottom: 0.5rem;
}

.op-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
}

.journey {
    background: linear-gradient(180deg, #fdfbf8 0%, #f4ecdf 100%);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.95rem;
}

.timeline-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--stone-200);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.timeline-item span {
    display: inline-block;
    margin: 0.92rem 1rem 0;
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--brand-600);
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    background: rgba(177, 63, 47, 0.12);
}

.timeline-item h3 {
    margin: 0.6rem 1rem 0.42rem;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.08rem;
}

.timeline-item p {
    margin: 0 1rem 0.95rem;
    font-size: 0.91rem;
    color: var(--text-700);
}

.timeline-item img {
    height: 172px;
    object-fit: cover;
}

.menu-lab {
    background: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.9rem;
}

.menu-card {
    grid-column: span 3;
    min-height: 230px;
    border-radius: 1.02rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(10, 16, 27, 0.12);
    background: #101722;
    box-shadow: 0 14px 30px rgba(12, 18, 30, 0.16);
}

.menu-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.menu-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 11, 20, 0.1) 30%, rgba(6, 11, 20, 0.84) 100%);
}

.menu-card h3,
.menu-card p {
    position: absolute;
    z-index: 1;
    left: 0.85rem;
    right: 0.85rem;
    color: var(--white);
}

.menu-card h3 {
    bottom: 0.9rem;
    font-size: 0.94rem;
    line-height: 1.3;
}

.menu-card p {
    bottom: 2.45rem;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.9);
}

.menu-card:hover img {
    transform: scale(1.06);
}

.menu-card.featured {
    grid-column: span 6;
    grid-row: span 2;
    min-height: 468px;
}

.menu-card.featured h3 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.25rem;
    bottom: 1.1rem;
}

.menu-card.featured p {
    max-width: 36ch;
    bottom: 3.2rem;
}

.menu-card:nth-child(4),
.menu-card:nth-child(8) {
    grid-column: span 6;
}

.footprint {
    background: linear-gradient(180deg, #f8f2e7 0%, #f1e7d8 100%);
}

.footprint-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0.95rem;
    margin-bottom: 0.95rem;
}

.hq-card,
.location-list article {
    background: var(--white);
    border: 1px solid var(--stone-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.hq-card {
    overflow: hidden;
}

.hq-card img {
    height: 212px;
    object-fit: cover;
}

.hq-card div {
    padding: 1rem 1rem 1.1rem;
}

.hq-card h3 {
    font-family: "Georgia", "Times New Roman", serif;
    margin-bottom: 0.45rem;
    font-size: 1.03rem;
}

.hq-card p {
    color: var(--text-700);
    font-size: 0.9rem;
    margin-bottom: 0.34rem;
}

.hq-card a {
    color: var(--brand-600);
    font-weight: 700;
}

.location-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.location-list article {
    padding: 0.9rem 0.9rem;
}

.location-list h3 {
    font-size: 0.96rem;
    margin-bottom: 0.36rem;
}

.location-list p {
    color: var(--text-700);
    font-size: 0.86rem;
    margin-bottom: 0.19rem;
}

.region-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.region-panels figure {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--stone-200);
    box-shadow: var(--shadow-soft);
    min-height: 225px;
}

.region-panels img {
    height: 100%;
    object-fit: cover;
}

.region-panels figcaption {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    color: var(--white);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(6, 11, 20, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0.33rem 0.68rem;
}

.people {
    background:
        radial-gradient(circle at 15% 0%, rgba(216, 161, 90, 0.18) 0%, rgba(216, 161, 90, 0) 38%),
        linear-gradient(165deg, #080f1a 0%, #13233a 100%);
}

.people .section-head h2 {
    color: var(--white);
}

.people .eyebrow {
    color: var(--gold-400);
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.people-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.17);
    box-shadow: 0 16px 32px rgba(3, 7, 14, 0.36);
}

.people-card img {
    height: 170px;
    object-fit: cover;
}

.people-card h3 {
    margin: 0.93rem 0.93rem 0.42rem;
    color: var(--white);
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1rem;
}

.people-card p {
    margin: 0 0.93rem 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
}

.careers-cta {
    margin-top: 1rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(177, 63, 47, 0.95) 0%, rgba(216, 161, 90, 0.92) 100%);
    padding: 1.2rem 1.3rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 16px 34px rgba(177, 63, 47, 0.28);
}

.careers-cta h3 {
    margin-bottom: 0.35rem;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 1.08rem;
}

.careers-cta p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.92);
}

.careers-cta .btn-primary {
    background: var(--ink-900);
    box-shadow: none;
    white-space: nowrap;
}

.quality {
    background: var(--white);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.quality-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--stone-200);
    background: linear-gradient(170deg, #ffffff 0%, #fff8ee 100%);
    box-shadow: var(--shadow-soft);
}

.quality-card img {
    height: 210px;
    object-fit: cover;
}

.quality-card h3 {
    font-family: "Georgia", "Times New Roman", serif;
    margin: 1rem 1rem 0.45rem;
    font-size: 1.02rem;
}

.quality-card p {
    margin: 0 1rem 1rem;
    color: var(--text-700);
    font-size: 0.9rem;
}

.contact {
    background:
        radial-gradient(circle at 92% 0%, rgba(216, 161, 90, 0.22) 0%, rgba(216, 161, 90, 0) 34%),
        linear-gradient(165deg, #090f1a 0%, #15263d 100%);
}

.contact-shell {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 0.95rem;
}

.contact-copy,
.contact-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 36px rgba(3, 7, 14, 0.36);
}

.contact-copy {
    background: rgba(255, 255, 255, 0.08);
    padding: clamp(1.2rem, 3vw, 2rem);
    color: var(--white);
}

.contact-copy .eyebrow {
    color: var(--gold-400);
}

.contact-copy h2 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.14;
    margin-bottom: 0.85rem;
}

.contact-copy > p {
    margin-bottom: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
}

.contact-copy ul {
    list-style: none;
    display: grid;
    gap: 0.52rem;
}

.contact-copy li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.86);
}

.contact-copy strong {
    color: var(--white);
}

.contact-copy a {
    color: var(--gold-400);
    font-weight: 700;
}

.contact-visual {
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: 1fr;
}

.contact-visual img {
    height: 182px;
    object-fit: cover;
}

.contact-form {
    padding: 1rem;
    display: grid;
    gap: 0.42rem;
}

.contact-form label {
    font-size: 0.77rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    margin-top: 0.24rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 0.65rem;
    padding: 0.66rem 0.74rem;
    font: inherit;
}

.contact-form textarea {
    min-height: 90px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.form-status {
    margin-top: 0.42rem;
    font-size: 0.81rem;
    font-weight: 600;
}

.form-status.success {
    color: #a9f0c8;
}

.form-status.error {
    color: #ffd4d4;
}

.site-footer {
    background: #070d17;
    color: rgba(255, 255, 255, 0.8);
    padding: 2.1rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.9fr;
    gap: 1.2rem;
}

.site-footer h3,
.site-footer h4 {
    color: var(--white);
    margin-bottom: 0.56rem;
    font-family: "Georgia", "Times New Roman", serif;
}

.site-footer p,
.site-footer li {
    font-size: 0.89rem;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer ul {
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.site-footer a:hover {
    color: var(--gold-400);
}

.copyright {
    text-align: center;
    margin-top: 1.45rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.81rem;
}

[data-reveal] {
    transition: opacity 0.58s ease, transform 0.58s ease;
}

.reveal-ready[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
}

.revealed[data-reveal] {
    opacity: 1;
    transform: none;
}

:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 2px;
}

@media (max-width: 1120px) {
    .hero-grid,
    .story-grid,
    .footprint-grid,
    .contact-shell {
        grid-template-columns: 1fr;
    }

    .hero-collage {
        min-height: 430px;
        max-width: 620px;
        margin-inline: auto;
    }

    .story-visual {
        min-height: 380px;
    }

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

    .timeline,
    .people-grid,
    .quality-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 960px) {
    .topbar {
        font-size: 0.67rem;
        letter-spacing: 0.04em;
    }

    .nav-shell {
        grid-template-columns: auto auto;
        justify-content: space-between;
        gap: 0.8rem;
        position: relative;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .header-cta {
        display: none;
    }

    .primary-nav {
        display: none;
        position: absolute;
        top: calc(100% + 0.58rem);
        left: 0;
        right: 0;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 0.85rem;
        background: rgba(6, 11, 20, 0.96);
        padding: 0.64rem;
    }

    .primary-nav.open {
        display: block;
    }

    .primary-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .primary-nav a {
        width: 100%;
        padding: 0.45rem 0.32rem;
    }

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

    .menu-card,
    .menu-card:nth-child(4),
    .menu-card:nth-child(8) {
        grid-column: span 3;
        min-height: 200px;
    }

    .menu-card.featured {
        grid-column: span 6;
        grid-row: span 1;
        min-height: 286px;
    }

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

    .region-panels {
        grid-template-columns: 1fr;
    }

    .careers-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container,
    .nav-shell {
        width: min(1180px, calc(100% - 1.22rem));
    }

    .topbar {
        display: none;
    }

    .hero {
        padding-top: 2.6rem;
    }

    .metric-strip {
        grid-template-columns: 1fr;
    }

    .hero-collage {
        min-height: 325px;
    }

    .collage-main {
        inset: 0 0.45rem 0.6rem 0;
    }

    .collage-top,
    .collage-bottom {
        width: 150px;
        height: 104px;
    }

    .collage-bottom {
        left: -0.2rem;
    }

    .story-visual {
        min-height: 305px;
    }

    .badge-card {
        width: 150px;
        left: -0.1rem;
    }

    .operations-grid,
    .timeline,
    .people-grid,
    .quality-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .menu-card,
    .menu-card:nth-child(4),
    .menu-card:nth-child(8),
    .menu-card.featured {
        grid-column: span 2;
        min-height: 210px;
    }

    .contact-visual img {
        height: 150px;
    }
}
