/* --- BRAND VARIABLES --- */
:root {
    --primary: #0F766E;
    --secondary: #EA580C;
    --charcoal: #1F2937;
    --light: #F3F4F6;
    --white: #FFFFFF;
    --font-ui: 'Inter', sans-serif;
    --font-body: 'Roboto Slab', serif;
    --font-mono: 'Roboto Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--charcoal); background-color: var(--white); line-height: 1.6; }
h1, h2, h3 { font-family: var(--font-ui); font-weight: 700; }
.mono { font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; color: var(--primary); letter-spacing: 1px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding-top: 80px; padding-bottom: 158px; padding-right: 0; padding-left: 0; }
.btn { display: inline-block; padding: 15px 30px; border-radius: 50px; text-decoration: none; font-family: var(--font-ui); font-weight: bold; transition: 0.3s; }

/* --- NAVIGATION --- */
nav {
    height: 80px; display: flex; align-items: center; position: sticky; top: 0;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid #eee;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-ui); font-weight: 700; color: var(--primary); }
.logo-box { width: 28px; height: 28px; background: var(--primary); border-radius: 4px; display: grid; grid-template-columns: repeat(3, 1fr); padding: 4px; }
.logo-dot { background: white; border-radius: 1px; margin: 0.5px; }

.nav-links { display: none; gap: 36px; align-items: center; list-style: none; margin: 0; padding: 0; }
 
.nav-links a { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #000; text-decoration: none; position: relative }
 
.nav-links a::after { content: ''; position: absolute; bottom: -30px; left: 0; width: 0; height: 2px; background: #000; transition: width 0.2s ease; }
 
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
 
.nav-cta { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: #000; padding: 10px 22px; border-radius: 6px; text-decoration: none; transition: opacity 0.2s ease; }
 
.nav-cta:hover { opacity: 0.75; }
 
@media (min-width: 768px) { .nav-links { display: flex; } .menu-toggle { display: none; } }

.menu-toggle { background: var(--charcoal); color: white; border: none; padding: 10px 18px; border-radius: 50px; cursor: pointer; font-family: var(--font-ui); font-weight: 600; font-size: 0.8rem; }

/* --- FULL SCREEN OVERLAY MENU --- */
#full-menu {
	height: 100vh;
    position: fixed; inset: 0; background: #000; color: white; z-index: 2000; 
    display: none; flex-direction: column; padding: 40px;
}
#full-menu.active { display: flex; }
.menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.menu-items { display: flex; flex-direction: column; gap: 15px; flex-grow: 1; }
.menu-items a { color: white; text-decoration: none; font-size: clamp(2rem, 8vw, 4rem); font-family: var(--font-ui); font-weight: 700; }
.menu-items a span { color: #444; font-size: 1.2rem; margin-left: 10px; font-weight: 400; }
.menu-contact { border-top: 1px solid #222; padding-top: 40px; margin-top: auto; }
.menu-email { font-size: clamp(1.2rem, 5vw, 2.5rem); font-family: var(--font-ui); font-weight: 600; text-decoration: underline; color: white; margin-bottom: 20px; display: block; }
.menu-meta { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 20px; border-top: 1px solid #222; }

/* --- SHARED FOOTER --- */
footer { background: #000; color: white; padding: 60px 0; }