/* ================= GLOBAL RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #0c0f14;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0c0f14;
    color: #111;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    padding-top: 90px;
}

/* ================= LAYOUT ================= */

.container {
    width: 86%;
    max-width: 1280px;
    margin: 0 auto;
}

.narrow { max-width: 880px; }
.center { text-align: center; }

/* ================= NAVBAR ================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0c0f14;
    padding: 24px 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(12,15,20,0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    letter-spacing: 1px;
    color: #ffffff;
    text-decoration: none;
    display: block;
}

.logo span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-top: 6px;
}

nav {
    display: flex;
    gap: 26px;
}

nav a {
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    opacity: 0.85;
}

nav a:hover { opacity: 1; }

nav a[aria-current="page"]{
    opacity: 1;
    position: relative;
}

nav a[aria-current="page"]::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: #b89b4f;
}

.menu-toggle {
    display: none;
}

/* ================= HERO ================= */

.hero {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            to bottom,
            rgba(12,15,20,0.75) 0%,
            rgba(12,15,20,0.50) 35%,
            rgba(12,15,20,0.40) 55%,
            rgba(12,15,20,0.75) 100%
        ),
        url('../images/hero.jpg') center 55% / cover no-repeat;
}

.hero-content {
    color: #f2f2f2;
    max-width: 760px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    line-height: 1.18;
    margin-bottom: 26px;
}

.hero-sub {
    font-size: 18px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.hero-micro {
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    opacity: 0.6;
}

/* ================= BUTTONS ================= */

.cta {
    display: inline-block;
    padding: 16px 42px;
    background: #ffffff;
    color: #111;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
}

.cta-outline {
    display: inline-block;
    padding: 16px 42px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 40px;
}

/* ================= SECTIONS ================= */

.section {
    padding: 140px 0;
}

.compact {
    padding: 120px 0;
}

.white { background: #ffffff; }
.light { background: #f3f4f6; }
.dark  { background: #0c0f14; color: #ffffff; }

/* ================= HEADINGS ================= */

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin-bottom: 60px;
    line-height: 1.25;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: #b89b4f;
}

.center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section p {
    margin-top: 18px;
    font-size: 17px;
}

.lead-intro {
    max-width: 720px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 16px;
    opacity: 0.8;
}

/* ================= GRIDS ================= */

.statement-grid {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.statement-grid div {
    flex: 1;
}

.four-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.block {
    padding: 50px 40px;
    background: #ffffff;
    border-top: 1px solid #ddd;
}

.block h3 {
    font-size: 18px;
    font-weight: 500;
}

/* ================= FOOTER ================= */

.footer {
    background: #0c0f14;
    color: #888;
    font-size: 13px;
    text-align: center;
    padding: 24px 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {

    .four-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .statement-grid {
        flex-direction: column;
        gap: 30px;
    }

    .hero h1 {
        font-size: 44px;
    }
}

/* ================= FORM ================= */

form{
margin-top:40px;
max-width:600px;
}

/* spacing between fields */

.form-group{
margin-bottom:26px;
}

/* labels */

label{
display:block;
font-size:12px;
letter-spacing:0.6px;
text-transform:uppercase;
margin-bottom:8px;
color:#6c727a;
}

/* inputs */

input,
select,
textarea{
width:100%;
font-size:15px;
padding:16px 18px;

background:#ffffff;
border:1px solid #d6dbe1;
border-radius:4px;

font-family:inherit;

transition:border-color 0.25s ease, box-shadow 0.25s ease;
}

/* textarea height */

textarea{
min-height:150px;
resize:vertical;
}

/* focus state */

input:focus,
select:focus,
textarea:focus{
outline:none;
border-color:#c2a46d;
box-shadow:0 0 0 2px rgba(194,164,109,0.15);
}

/* placeholder */

input::placeholder,
textarea::placeholder{
color:#9aa1a9;
}

/* submit button */

button[type="submit"]{
display:inline-block;
margin-top:20px;

padding:16px 34px;

font-size:12px;
letter-spacing:1px;
text-transform:uppercase;

background:#11151a;
color:#ffffff;

border:none;
border-radius:4px;

cursor:pointer;
transition:all 0.25s ease;
}

/* hover */

button[type="submit"]:hover{
background:#000000;
}

/* ================= LOGOS ================= */

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;

    margin-top: 40px;
    margin-bottom: 40px;

    padding: 28px 0;

    max-width: 680px;
    margin-left: auto;
    margin-right: auto;

    align-items: center;

    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 72px;
}

.logo-item img {
    max-height: 34px;
    width: auto;
    object-fit: contain;

    filter: grayscale(100%) brightness(0.7);
    opacity: 0.85;
}

@media (max-width: 768px) {

/* ================= CONTAINER ================= */

.container{
width:92%;
margin:auto;
}

/* ================= NAVBAR ================= */

.navbar{
padding:18px 0;
}

.logo{
font-size:20px;
}

.logo span{
font-size:9px;
margin-top:4px;
}

/* ================= HAMBURGER ================= */

.menu-toggle{
display:flex;
flex-direction:column;
justify-content:center;
gap:5px;
cursor:pointer;
width:28px;
height:22px;

background:transparent;
border:none;
outline:none;
padding:0;
appearance:none;
-webkit-appearance:none;
-webkit-tap-highlight-color:transparent;
}

.menu-toggle span{
width:22px;
height:2px;
background:#ffffff;
display:block;
border-radius:2px;
transition:all 0.3s ease;
}

/* ================= MOBILE NAV ================= */

nav{
display:none;
position:fixed;
top:90px;
left:0;
width:100%;
height:calc(100vh - 90px);
background:#0c0f14;

flex-direction:column;
justify-content:center;
align-items:center;
gap:28px;

z-index:999;
}

nav.show{
display:flex;
}

/* ================= HAMBURGER ANIMATION ================= */

.menu-toggle.active span:nth-child(1){
transform:rotate(45deg) translate(5px,5px);
}

.menu-toggle.active span:nth-child(2){
opacity:0;
}

.menu-toggle.active span:nth-child(3){
transform:rotate(-45deg) translate(5px,-5px);
}

/* ================= HERO ================= */

.hero{
height:auto;
min-height:85vh;
padding:110px 0 80px 0;
background-position:center 72%;
}

.hero-details{
margin-top:18px;
}

.hero-content{
max-width:100%;
padding-right:20px;
}

.hero h1{
font-size:30px;
line-height:1.25;
margin-bottom:20px;
letter-spacing:-0.2px;
}

.hero-sub{
font-size:14px;
margin-bottom:8px;
}

.hero-micro{
font-size:12px;
letter-spacing:0.8px;
margin-bottom:24px;
opacity:0.75;
}

.cta{
padding:16px 28px;
font-size:12px;
}

/* ================= SECTION SPACING ================= */

.section{
padding:70px 0;
}

.section.compact{
padding:60px 0;
}

h2{
font-size:24px;
margin-bottom:32px;
}

/* ================= INTRO SPACING ================= */

.page-intro{
margin-top:20px;
}

/* ================= GRID ================= */

.four-grid{
grid-template-columns:1fr;
gap:36px;
}

.statement-grid{
flex-direction:column;
gap:26px;
}

/* ================= CONTENT BLOCK ================= */

.block{
padding:32px 26px;
}

/* ================= LOGOS ================= */

.logo-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding: 20px 0;
}

.logo-item{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height: 64px;
}

.logo-item img{
    max-height: 34px;
    width:auto;
}

}

/* ================= FOOTER ================= */

.footer{
padding:18px 0;
font-size:11px;
}

.wa-button {
    bottom: 18px;
    right: 16px;
    padding: 8px 12px;
    font-size: 10px;
}

/* ================= FADE ANIMATION ================= */

.fade{
opacity:0;
transform:translateY(40px);
transition:opacity 0.8s ease, transform 0.8s ease;
}

.fade.visible{
opacity:1;
transform:translateY(0);
}

/* ================= MENU SCROLL LOCK ================= */

body.menu-open{
overflow:hidden;
}

.wa-button {
    position: fixed;
    bottom: 24px;
    right: 24px;

    padding: 10px 16px;

    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;

    background: rgba(12,15,20,0.9);
    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;

    text-decoration: none;

    transition: all 0.25s ease;
    z-index: 1000;
}

.wa-button:hover {
    background: #000000;
    border-color: #b89b4f;
}