/* pages.css - shared shell for Olaunu subpages.
 * Extracted verbatim from index.html's inline <style> so subpages match the
 * homepage shell exactly. index.html keeps its own inline copy; if you change
 * the header or footer, change both. Generated 2026-08-28.
 */

/* ===== RESET & BASE ===== */
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
 --ocean: #26aae1;
 --ocean-dark: #1a85b5;
 --ocean-deep: #0d3f5f;
 --dark: #212121;
 --dark-alt: #1a1a1a;
 --green: #4cca00;
 --green-dark: #3aaa00;
 --off-white: #f4f8fb;
 --light-gray: #e8eef3;
 --mid-gray: #637282;
 --text: #212121;

 --ff-display: futura-pt, 'Jost', 'Futura PT', Futura, 'Century Gothic', sans-serif;
 --ff-body: futura-pt, 'Jost', 'Futura PT', Futura, 'Century Gothic', sans-serif;

 --max-w: 1280px;
 --section-pad: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 80px);
}

html { scroll-behavior: smooth; }

body {
 font-family: var(--ff-body);
 color: var(--text);
 background: #fff;
 overflow-x: hidden;
 -webkit-font-smoothing: antialiased;
}

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

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

button, a {
 cursor: pointer;
}

:focus-visible {
 outline: 3px solid var(--ocean);
 outline-offset: 3px;
}


/* ===== STICKY HEADER ===== */
/* ===== STICKY HEADER ===== */
.site-header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 100;
 background: linear-gradient(to bottom, rgba(10, 16, 24, 0.5), rgba(10, 16, 24, 0));
 border-bottom: none;
 transition: background 0.3s ease;
}

.site-header.scrolled {
 background: rgba(15, 20, 30, 0.92);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 border-bottom: 1px solid rgba(38, 170, 225, 0.15);
}

.header-inner {
 max-width: var(--max-w);
 margin: 0 auto;
 padding: 0 clamp(16px, 4vw, 48px);
 height: 68px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
}

.header-logo img {
 height: 42px;
 width: auto;
}

.header-nav {
 display: none;
 align-items: center;
 gap: 28px;
}

.header-nav a {
 font-family: var(--ff-display);
 font-weight: 600;
 font-size: 0.88rem;
 letter-spacing: 1.5px;
 text-transform: uppercase;
 color: rgba(255,255,255,0.82);
 transition: color 0.2s;
}

.header-nav a:hover { color: var(--ocean); }

.header-actions {
 display: flex;
 align-items: center;
 gap: 12px;
}

.lang-toggle {
 font-family: var(--ff-display);
 font-size: 0.8rem;
 font-weight: 700;
 letter-spacing: 1.5px;
 color: rgba(255,255,255,0.65);
 background: transparent;
 border: 1px solid rgba(255,255,255,0.25);
 border-radius: 4px;
 padding: 6px 10px;
 cursor: pointer;
 transition: all 0.2s;
 min-height: 44px;
 min-width: 44px;
}

.lang-toggle:hover {
 border-color: var(--ocean);
 color: var(--ocean);
}

.btn-header-cta {
 font-family: var(--ff-display);
 font-weight: 700;
 font-size: 0.82rem;
 letter-spacing: 1.5px;
 text-transform: uppercase;
 color: var(--dark);
 background: var(--ocean);
 border: none;
 border-radius: 4px;
 padding: 10px 18px;
 min-height: 44px;
 transition: background 0.2s;
 white-space: nowrap;
}

.btn-header-cta:hover { background: var(--ocean-dark); color: #fff; }

.hamburger {
 display: flex;
 flex-direction: column;
 gap: 5px;
 background: transparent;
 border: none;
 padding: 8px;
 min-height: 44px;
 min-width: 44px;
 justify-content: center;
 align-items: center;
}

.hamburger span {
 display: block;
 width: 24px;
 height: 2px;
 background: #fff;
 border-radius: 2px;
 transition: all 0.25s;
}

.mobile-nav {
 display: none;
 flex-direction: column;
 background: rgba(12, 18, 28, 0.97);
 padding: 16px 24px 24px;
 border-top: 1px solid rgba(38, 170, 225, 0.2);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
 font-family: var(--ff-display);
 font-weight: 600;
 font-size: 1.1rem;
 letter-spacing: 1.5px;
 text-transform: uppercase;
 color: rgba(255,255,255,0.85);
 padding: 12px 0;
 border-bottom: 1px solid rgba(255,255,255,0.08);
 transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--ocean); }

@media (min-width: 768px) {
 .header-nav { display: flex; }
 .hamburger { display: none; }
}


/* ===== FOOTER ===== */
/* ===== FOOTER ===== */
.site-footer {
 background: #111;
 border-top: 1px solid rgba(255,255,255,0.07);
 padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 80px) 0;
}

.footer-inner {
 max-width: var(--max-w);
 margin: 0 auto;
}

.footer-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 40px;
 padding-bottom: clamp(40px, 6vw, 60px);
 border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 600px) {
 .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
 .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand img {
 height: 40px;
 width: auto;
 margin-bottom: 16px;
}

.footer-tagline {
 font-family: var(--ff-body);
 font-size: 0.88rem;
 font-weight: 300;
 line-height: 1.65;
 color: rgba(255,255,255,0.45);
 max-width: 32ch;
 margin-bottom: 20px;
}

.footer-motto {
 font-family: var(--ff-display);
 font-weight: 700;
 font-size: 0.82rem;
 letter-spacing: 3px;
 text-transform: uppercase;
 color: var(--ocean);
}

.footer-col-title {
 font-family: var(--ff-display);
 font-weight: 700;
 font-size: 0.78rem;
 letter-spacing: 2.5px;
 text-transform: uppercase;
 color: rgba(255,255,255,0.9);
 margin-bottom: 16px;
}

.footer-nav-list {
 list-style: none;
}

.footer-nav-list li {
 padding: 5px 0;
}

.footer-nav-list a {
 font-family: var(--ff-body);
 font-size: 0.88rem;
 font-weight: 400;
 color: rgba(255,255,255,0.45);
 transition: color 0.2s;
}

.footer-nav-list a:hover { color: var(--ocean); }

.footer-bottom {
 padding: 20px 0;
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 align-items: center;
 gap: 12px;
}

.footer-copy {
 font-family: var(--ff-body);
 font-size: 0.8rem;
 font-weight: 300;
 color: rgba(255,255,255,0.3);
}

.footer-links {
 display: flex;
 gap: 20px;
}

.footer-links a {
 font-family: var(--ff-body);
 font-size: 0.8rem;
 color: rgba(255,255,255,0.3);
 transition: color 0.2s;
}

.footer-links a:hover { color: var(--ocean); }


/* ===== REDUCED MOTION ===== */
/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
 *, *::before, *::after {
 animation-duration: 0.01ms !important;
 transition-duration: 0.01ms !important;
 }
 .step-pane.active { animation: none; }
}


/* ===== OFFICES + NEWSLETTER ===== */
/* ===== OFFICES + NEWSLETTER (live-verbatim styling) ===== */
.offices-section { position: relative; background: #eef1f3; padding: var(--section-pad); overflow: hidden; }
.offices-bg { position: absolute; inset: 0; background: url('/assets/map-world-au.png') center / cover no-repeat; opacity: 0.32; }
.offices-inner { position: relative; max-width: 760px; margin-left: auto; margin-right: clamp(20px, 8vw, 120px); display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 700px) { .offices-inner { grid-template-columns: 1fr; justify-items: start; } }
.office { background: rgba(247,250,252,0.66); backdrop-filter: blur(2px); padding: 14px 18px 12px; border-radius: 10px; }
.office h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem; letter-spacing: 2px; color: var(--dark); padding-bottom: 8px; position: relative; margin-bottom: 10px; }
.office h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 3px; background: var(--ocean); }
.office p { font-family: var(--ff-body); font-weight: 300; font-size: 0.92rem; color: #3d4852; line-height: 1.6; }
.office a { color: var(--ocean); }
.newsletter-section { background: var(--dark-alt); padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 80px); text-align: center; }
.newsletter-title { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.1rem, 2.4vw, 1.5rem); letter-spacing: 1px; color: #fff; text-transform: uppercase; margin-bottom: 22px; }
.newsletter-form { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1 1 240px; min-height: 48px; padding: 10px 14px; font-family: var(--ff-body); font-size: 0.95rem; border: 1px solid #444; background: #fff; color: var(--dark); }
.newsletter-form button { font-family: var(--ff-display); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.85rem; color: #fff; background: var(--ocean); border: none; padding: 12px 22px; min-height: 48px; cursor: pointer; }
.newsletter-form button:hover { background: var(--ocean-dark); }
.newsletter-thanks { font-family: var(--ff-display); font-weight: 700; letter-spacing: 2px; color: var(--green); margin-top: 16px; }
.newsletter-thanks[hidden] { display: none; }


/* ===== SCROLL REVEAL ===== */
/* ===== SCROLL REVEAL ===== */
html.js-anim .reveal {
 opacity: 0;
 transform: translateY(24px);
 transition: opacity 0.65s ease, transform 0.65s ease;
}

html.js-anim .reveal.visible {
 opacity: 1;
 transform: none;
}

@media (prefers-reduced-motion: reduce) {
 .reveal {
 opacity: 1;
 transform: none;
 }
}


/* ===== UTILITY ===== */
/* ===== UTILITY ===== */
.sr-only {
 position: absolute;
 width: 1px;
 height: 1px;
 padding: 0;
 margin: -1px;
 overflow: hidden;
 clip: rect(0,0,0,0);
 white-space: nowrap;
 border: 0;
}

.text-ocean { color: var(--ocean); }
.text-green { color: var(--green); }


/* Team section (2026-08-01) */
.team-section { background: var(--off-white); padding: var(--section-pad); }
.team-inner { max-width: 1200px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 26px; margin-top: 26px; }
.team-card { background: #fff; border: 1px solid var(--light-gray); border-radius: 12px; padding: 28px 30px; box-shadow: 0 2px 10px rgba(13,63,95,0.05); }
.team-photo { margin: -28px -30px 20px; border-radius: 12px 12px 0 0; overflow: hidden; aspect-ratio: 2.6 / 1; background: #f4f6f7; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-name { font-family: var(--ff-display); font-weight: 700; font-size: 1.25rem; color: var(--dark); margin: 0 0 4px; }
.team-role { font-family: var(--ff-display); font-weight: 600; font-size: 0.92rem; color: var(--ocean-dark); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--ocean); display: inline-block; }
.team-bio { color: var(--mid-gray); font-size: 0.98rem; line-height: 1.65; margin: 0 0 12px; }
.team-bio:last-child { margin-bottom: 0; }
@media (min-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } .team-card:first-child { grid-column: 1 / -1; } }
</style>
