/* === SLO Fish Co. — Main Stylesheet === */

:root {
    --navy: #0A1628;
    --navy-light: #0F2240;
    --blue: #1B4F72;
    --blue-light: #256B94;
    --teal: #1A7B8A;
    --teal-light: #2399A8;
    --gold: #C8A052;
    --gold-light: #D4B368;
    --gold-dark: #A8823A;
    --brown: #5C4033;
    --brown-light: #7A5A4A;
    --white: #FEFDFB;
    --warm-white: #F8F6F0;
    --sand: #F2EDE4;
    --sand-dark: #E8E0D4;
    --text: #1a1a1a;
    --text-light: #5A5A5A;
    --text-muted: #8A8A8A;
    --border: #ddd9d0;
    --shadow-sm: 0 1px 3px rgba(10,22,40,0.06);
    --shadow-md: 0 4px 20px rgba(10,22,40,0.10);
    --shadow-lg: 0 12px 40px rgba(10,22,40,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --font-heading: 'Staatliches', 'Bebas Neue', 'Crimson Pro', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal); }
address { font-style: normal; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.15; color: var(--navy); letter-spacing: 2px; }
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold-dark);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--navy);
}
.section-subtitle {
    font-size: clamp(16px, 2.5vw, 18px);
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-title { max-width: 700px; margin-left: auto; margin-right: auto; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    line-height: 1.2;
    letter-spacing: 0.3px;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--navy); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(168,130,58,0.3); }
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; transform: translateY(-1px); }
.btn-full { width: 100%; }
.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-white:hover { background: var(--sand); border-color: var(--sand); color: var(--navy); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.btn-gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(168,130,58,0.3); }
.info-card .btn-gold { color: #fff; }
.info-card .btn-gold:hover { color: #fff; }

/* === HEADER & NAV === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: all var(--transition);
}
.site-header.scrolled {
    background: rgba(10,22,40,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 42px; width: auto; transition: opacity var(--transition); filter: brightness(0) invert(1); }
.footer-logo-img { height: 64px; width: auto; filter: brightness(0) invert(1); }
.main-nav { display: flex; align-items: center; }
.nav-links { display: flex; list-style: none; gap: 4px; }
.nav-links a {
    display: block;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: all var(--transition);
    position: relative;
}
.site-header.scrolled .nav-links a { color: rgba(255,255,255,0.8); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-bar { width: 22px; height: 2px; background: #fff; border-radius: 1px; transition: all var(--transition); }
.site-header.scrolled .menu-bar { background: #fff; }

/* === HERO === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/assets/images/hero-frame.png') center/cover no-repeat;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,22,40,0.35) 0%,
        rgba(10,22,40,0.3) 40%,
        rgba(10,22,40,0.7) 75%,
        rgba(10,22,40,1) 100%
    );
}
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    color: #fff;
    pointer-events: none;
}
.hero-content > * { pointer-events: auto; }
.hero-logo {
    width: min(560px, 85vw);
    height: auto;
    margin-bottom: 28px;
    animation: heroFadeIn 1.2s ease-out;
    filter: brightness(0) invert(1) drop-shadow(0 4px 32px rgba(0,0,0,0.4));
}
.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 32px);
    letter-spacing: 3px;
    color: rgba(255,255,255,0.9);
    animation: heroFadeIn 1.2s ease-out 0.3s both;
}
.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-light);
    margin-bottom: 16px;
    animation: heroFadeIn 1.2s ease-out 0.15s both;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 7vw, 64px);
    font-weight: 700;
    line-height: 1.06;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -1px;
    animation: heroFadeIn 1.2s ease-out 0.3s both;
}
.hero-subtitle {
    font-size: clamp(15px, 2.2vw, 18px);
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 500px;
    animation: heroFadeIn 1.2s ease-out 0.45s both;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: heroFadeIn 1.2s ease-out 0.6s both; }
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    animation: bounce 2.5s infinite;
    z-index: 3;
    pointer-events: none;
}
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Hero spacer — creates scrollable distance for video playback */
.hero-spacer { height: 250vh; pointer-events: none; }

/* === SCROLL ANIMATIONS === */
.animate-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}
.animate-fade-in.visible { opacity: 1; }
.animate-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.animate-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* === WAVE DIVIDER === */
.wave-divider {
    position: relative;
    z-index: 2;
    height: 60px;
    background: var(--navy);
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
    margin-top: -1px;
}

/* === MENU / TOAST SECTION === */
.menu-section {
    position: relative;
    z-index: 2;
    padding: 100px 0 120px;
    background: var(--navy);
    overflow: hidden;
}
.menu-section .section-eyebrow { color: var(--gold-light); }
.menu-section .section-title { color: #fff; }
.menu-section .section-subtitle { color: rgba(255,255,255,0.65); }
.coming-soon-badge {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 28px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 4px;
    border-radius: 6px;
    animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Bubbles */
.bubble-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.bubble {
    position: absolute;
    bottom: -40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: rise linear infinite;
}
.bubble:nth-child(1) { left: 5%; width: 18px; height: 18px; animation-duration: 12s; animation-delay: 0s; }
.bubble:nth-child(2) { left: 15%; width: 10px; height: 10px; animation-duration: 9s; animation-delay: 2s; }
.bubble:nth-child(3) { left: 25%; width: 22px; height: 22px; animation-duration: 14s; animation-delay: 1s; }
.bubble:nth-child(4) { left: 38%; width: 14px; height: 14px; animation-duration: 10s; animation-delay: 4s; }
.bubble:nth-child(5) { left: 50%; width: 20px; height: 20px; animation-duration: 13s; animation-delay: 3s; }
.bubble:nth-child(6) { left: 62%; width: 12px; height: 12px; animation-duration: 11s; animation-delay: 1.5s; }
.bubble:nth-child(7) { left: 75%; width: 16px; height: 16px; animation-duration: 15s; animation-delay: 5s; }
.bubble:nth-child(8) { left: 85%; width: 9px; height: 9px; animation-duration: 8s; animation-delay: 2.5s; }
.bubble:nth-child(9) { left: 92%; width: 19px; height: 19px; animation-duration: 12s; animation-delay: 0.5s; }
.bubble:nth-child(10) { left: 8%; width: 13px; height: 13px; animation-duration: 11s; animation-delay: 6s; }
.bubble:nth-child(11) { left: 22%; width: 21px; height: 21px; animation-duration: 16s; animation-delay: 3.5s; }
.bubble:nth-child(12) { left: 33%; width: 8px; height: 8px; animation-duration: 10s; animation-delay: 7s; }
.bubble:nth-child(13) { left: 45%; width: 15px; height: 15px; animation-duration: 14s; animation-delay: 1s; }
.bubble:nth-child(14) { left: 55%; width: 23px; height: 23px; animation-duration: 13s; animation-delay: 4.5s; }
.bubble:nth-child(15) { left: 68%; width: 11px; height: 11px; animation-duration: 9s; animation-delay: 6.5s; }
.bubble:nth-child(16) { left: 78%; width: 17px; height: 17px; animation-duration: 15s; animation-delay: 2s; }
.bubble:nth-child(17) { left: 42%; width: 7px; height: 7px; animation-duration: 8s; animation-delay: 5s; }
.bubble:nth-child(18) { left: 96%; width: 14px; height: 14px; animation-duration: 12s; animation-delay: 0s; }
.bubble:nth-child(19) { left: 3%; width: 15px; height: 15px; animation-duration: 13s; animation-delay: 2s; }
.bubble:nth-child(20) { left: 12%; width: 8px; height: 8px; animation-duration: 10s; animation-delay: 5s; }
.bubble:nth-child(21) { left: 19%; width: 20px; height: 20px; animation-duration: 14s; animation-delay: 7s; }
.bubble:nth-child(22) { left: 27%; width: 11px; height: 11px; animation-duration: 11s; animation-delay: 3s; }
.bubble:nth-child(23) { left: 35%; width: 18px; height: 18px; animation-duration: 15s; animation-delay: 1s; }
.bubble:nth-child(24) { left: 41%; width: 9px; height: 9px; animation-duration: 9s; animation-delay: 6s; }
.bubble:nth-child(25) { left: 48%; width: 22px; height: 22px; animation-duration: 16s; animation-delay: 4s; }
.bubble:nth-child(26) { left: 54%; width: 13px; height: 13px; animation-duration: 12s; animation-delay: 8s; }
.bubble:nth-child(27) { left: 61%; width: 7px; height: 7px; animation-duration: 8s; animation-delay: 2.5s; }
.bubble:nth-child(28) { left: 67%; width: 17px; height: 17px; animation-duration: 14s; animation-delay: 5.5s; }
.bubble:nth-child(29) { left: 73%; width: 10px; height: 10px; animation-duration: 10s; animation-delay: 1.5s; }
.bubble:nth-child(30) { left: 80%; width: 21px; height: 21px; animation-duration: 13s; animation-delay: 3.5s; }
.bubble:nth-child(31) { left: 87%; width: 12px; height: 12px; animation-duration: 11s; animation-delay: 7.5s; }
.bubble:nth-child(32) { left: 93%; width: 16px; height: 16px; animation-duration: 15s; animation-delay: 0.5s; }
.bubble:nth-child(33) { left: 10%; width: 19px; height: 19px; animation-duration: 13s; animation-delay: 4.5s; }
.bubble:nth-child(34) { left: 30%; width: 6px; height: 6px; animation-duration: 9s; animation-delay: 6.5s; }
.bubble:nth-child(35) { left: 57%; width: 14px; height: 14px; animation-duration: 12s; animation-delay: 2s; }
.bubble:nth-child(36) { left: 69%; width: 8px; height: 8px; animation-duration: 8s; animation-delay: 5s; }
@keyframes rise {
    0% { transform: translateY(0) scale(0.8); opacity: 0; }
    8% { opacity: 0.9; }
    20% { opacity: 0.6; }
    60% { opacity: 0.15; }
    90% { opacity: 0.04; }
    100% { transform: translateY(-120vh) scale(1.4); opacity: 0; }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}
a.menu-card { text-decoration: none; color: inherit; }
.menu-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all var(--transition);
    cursor: pointer;
}
.menu-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.menu-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--gold);
}
.menu-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}
.menu-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}
.menu-toast-cta {
    text-align: center;
    margin-top: 48px;
    position: relative;
    z-index: 2;
}
.menu-toast-cta .btn-primary {
    padding: 16px 44px;
    font-size: 16px;
}

/* === BUSINESS INFO === */
.info-section {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    background: var(--warm-white);
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.info-card {
    background: #25344E;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition);
    color: #fff;
    display: flex;
    flex-direction: column;
}
.info-card .btn { margin-top: auto; padding-top: 24px; }
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: #2D3E5A;
}
.info-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--gold-light);
}
.info-card h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}
.info-card p, .info-card address {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}
.info-card a {
    color: var(--gold-light);
    font-weight: 500;
    transition: color var(--transition);
}
.info-card a:hover { color: #fff; }

/* === SHOP === */
.shop-section {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    background: var(--navy);
}
.shop-section .section-eyebrow { color: var(--gold-light); }
.shop-section .section-title { color: #fff; }
.shop-section .section-subtitle { color: rgba(255,255,255,0.6); max-width: 600px; }

/* === ABOUT === */
.about {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-image { position: relative; }
.about-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}
.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
}
.about-lead {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--navy);
    margin-bottom: 20px;
}
.about-content p {
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.75;
    font-size: 15px;
}
.about-closing { margin-top: 8px; }
.about-slogan {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    color: var(--gold-dark);
    margin-top: 20px;
    margin-bottom: 0;
}

/* === VALUES === */
.values {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    background: var(--navy);
}
.values .section-title { color: #fff; }
.values .section-eyebrow { color: var(--gold-light); }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.value-card {
    background: var(--gold-dark);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--gold-dark);
}
.value-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    opacity: 0.5;
    margin-bottom: 8px;
}
.value-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}
.value-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* === CONTACT === */
.contact {
    position: relative;
    z-index: 2;
    padding: 100px 0;
    background: var(--warm-white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
}
.contact-info-stack { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
    display: flex;
    gap: 18px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    align-items: flex-start;
    transition: all var(--transition);
    border: 1px solid transparent;
}
.contact-card:hover {
    border-color: var(--sand-dark);
    box-shadow: var(--shadow-md);
}
.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(200,160,82,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}
.contact-card h3 { font-family: var(--font-body); font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--navy); }
.contact-card p, .contact-card address { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.info-hours { list-style: none; }
.info-hours li { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; color: var(--text-light); margin-bottom: 2px; }
.info-card .info-hours li span:first-child { color: rgba(255,255,255,0.8); }
.info-card .info-hours li span:last-child { color: var(--gold-light); }

.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--sand-dark);
}
.contact-form h3 { font-family: var(--font-body); font-size: 20px; margin-bottom: 24px; color: var(--navy); }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    background: var(--warm-white);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(27,79,114,0.1);
    background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-feedback { margin-top: 14px; font-size: 14px; font-weight: 500; }
.form-feedback.success { color: #1B7A3D; }
.form-feedback.error { color: #C0392B; }

/* === MAP === */
.info-map {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.info-map iframe { display: block; width: 100%; border-radius: var(--radius-lg); }

/* === FOOTER === */
.site-footer {
    position: relative;
    z-index: 2;
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 72px 0 0;
}
.footer-container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 44px;
    margin-bottom: 52px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 16px; max-width: 280px; line-height: 1.6; }
.footer-hours-col { text-align: center; }
.footer-hours-col .footer-hours { display: block; }
.footer-hours-col .footer-hours li { justify-content: center; gap: 8px; }
.footer-links h4, .footer-contact h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    margin-bottom: 18px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p, .footer-contact address { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 6px; line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-hours { list-style: none; }
.footer-hours li { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 6px; }
.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 0;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.footer-social { display: flex; gap: 18px; }
.social-link { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.social-link:hover { color: var(--gold-light); }

/* === PAGE HERO (Careers) === */
.page-hero {
    position: relative;
    z-index: 2;
    padding: 140px 0 80px;
    background: var(--navy);
    color: #fff;
    text-align: center;
}
.page-hero .section-eyebrow { color: var(--gold-light); }
.page-hero .section-title { color: #fff; }
.page-hero .section-subtitle { color: rgba(255,255,255,0.65); }

/* === JOB LISTINGS === */
.openings {
    position: relative;
    z-index: 2;
    padding: 40px 0 64px;
    background: var(--white);
}
.openings .section-title { color: var(--navy); }
.jobs-list { max-width: 760px; margin: 0 auto; }
.job-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    margin-bottom: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.job-row:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.job-row-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}
.job-row-meta { font-size: 13px; color: var(--text-muted); }
.job-sep { margin: 0 6px; }
.job-row-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.job-row-type {
    font-size: 12px;
    color: var(--text-muted);
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--warm-white);
}
.job-row-btn {
    padding: 9px 22px;
    font-size: 13px;
    background: transparent;
    color: var(--blue);
    border: 1px solid var(--blue);
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}
.job-row-btn:hover {
    background: var(--blue);
    color: #fff;
}
.no-openings { text-align: center; padding: 56px; color: var(--text-light); }
.no-openings a { font-weight: 600; color: var(--blue); }

/* === APPLY SECTION === */
.apply-section {
    position: relative;
    z-index: 2;
    padding: 80px 0 100px;
    background: var(--sand);
}
.apply-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--sand-dark);
}
.apply-form .form-group input[type="file"] { padding: 12px; font-size: 14px; border-style: dashed; background: var(--warm-white); }
.apply-form .btn { margin-top: 8px; }

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .menu-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .info-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .about-grid { grid-template-columns: 1fr; gap: 44px; }
    .about-image { max-width: 500px; margin: 0 auto; }
    .about-image-accent { right: -16px; bottom: -16px; }
    .values-grid { grid-template-columns: 1fr; gap: 20px; max-width: 500px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(10,22,40,0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 14px 16px; font-size: 16px; }
    .mobile-menu-toggle { display: flex; }
    .hero-spacer { height: 200vh; }
    .hero-content { padding: 0 20px; }
    .hero-logo { width: min(340px, 80vw); }
    .hero-title { font-size: clamp(28px, 8vw, 40px); }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 260px; }
    .section-header { margin-bottom: 36px; }
    .menu-section { padding: 64px 0 80px; }
    .info-section { padding: 64px 0; }
    .about { padding: 64px 0; }
    .values { padding: 48px 0; }
    .contact { padding: 64px 0; }
    .form-row { grid-template-columns: 1fr; }
    .job-row { flex-direction: column; align-items: flex-start; gap: 12px; }
    .job-row-right { width: 100%; justify-content: space-between; }
    .job-row-btn { flex: 1; text-align: center; }
    .page-hero { padding: 120px 0 60px; }
    .apply-form { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}
