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

:root {
--bg-main: #000000;
--bg-alt: #101010;
--bg-card: #141414;
--accent: #ffd600; /* strong yellow / gold */
--text-main: #f7f7f7;
--text-muted: #b3b3b3;
}

body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: var(--text-main);
background: var(--bg-main);
line-height: 1.6;
}

/* Layout */

.container {
width: min(1100px, 100% - 2rem);
margin: 0 auto;
}

.section {
padding: 4rem 0;
}

.section-alt {
background: var(--bg-alt);
}

.section-title {
text-align: center;
margin-bottom: 2.5rem;
font-size: 1.75rem;
}

/* HEADER */

.site-header {
position: sticky;
top: 0;
z-index: 99;
background: rgba(0, 0, 0, 0.96);
border-bottom: 1px solid rgba(255, 214, 0, 0.3);
backdrop-filter: blur(10px);
}

.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.75rem 0;
}

/* .logo {
height: 40px;
display: block;
} */

/* .logo-container {
        text-align: center;
    } */

    .logo {
    height: 55px;     /* FIX 1: increase logo height */
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.nav {
display: flex;
gap: 1.25rem;
align-items: center;
}

.nav a {
color: var(--text-main);
text-decoration: none;
font-size: 0.95rem;
}

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

.nav-cta {
padding: 0.45rem 0.9rem;
border-radius: 999px;
border: 1px solid var(--accent);
color: var(--accent);
}

/* HERO WITH GOLD BARS BACKGROUND */

.hero {
position: relative;
min-height: 70vh;
display: flex;
align-items: center;
overflow: hidden;
color: var(--text-main);
}

.hero-overlay {
position: absolute;
inset: 0;
background-image: url("gold-bars.jpg"); /* your gold bar image */
background-size: cover;
background-position: center;
filter: brightness(0.65);
z-index: -2;
}

.hero::after {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(circle at center, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.9));
z-index: -1;
}

.hero-inner {
position: relative;
padding: 5rem 0 4rem;
}

.hero-text {
max-width: 32rem;
}

.hero-subtitle {
font-size: 0.85rem;
letter-spacing: 0.11em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 0.75rem;
}

.hero-text h1 {
font-size: clamp(2.4rem, 4vw, 3.1rem);
margin-bottom: 1rem;
letter-spacing: 0.03em;
}

.tagline {
font-size: 1.05rem;
margin-bottom: 1.25rem;
color: var(--text-main);
}

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

.hero-note {
font-size: 0.95rem;
color: var(--text-muted);
}

/* BUTTONS */

.btn {
display: inline-block;
padding: 0.7rem 1.4rem;
border-radius: 999px;
font-size: 0.95rem;
text-decoration: none;
text-align: center;
border: 1px solid transparent;
cursor: pointer;
transition: transform 0.08s ease-out,
box-shadow 0.08s ease-out,
background 0.12s ease-out,
color 0.12s ease-out;
}

.btn.primary {
background: var(--accent);
color: #000;
box-shadow: 0 0.6rem 1.5rem rgba(255, 214, 0, 0.35);
}

.btn.primary:hover {
transform: translateY(-1px);
box-shadow: 0 0.9rem 2rem rgba(255, 214, 0, 0.45);
}

.btn.ghost {
background: transparent;
color: var(--accent);
border-color: var(--accent);
}

.btn.ghost:hover {
background: rgba(255, 214, 0, 0.1);
}

.btn.full-width {
width: 100%;
}

/* TWO COLUMN LAYOUT */

.two-column {
display: grid;
grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
gap: 2.5rem;
align-items: flex-start;
}

/* TEXT & LISTS */

h2, h3 {
color: var(--text-main);
}

p {
color: var(--text-main);
}

.check-list {
list-style: none;
}

.check-list li {
margin-bottom: 0.6rem;
position: relative;
padding-left: 1.4rem;
color: var(--text-muted);
}

.check-list li::before {
content: "•";
position: absolute;
left: 0;
color: var(--accent);
font-weight: bold;
}

/* CARDS */

.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1.5rem;
}

.card {
background: var(--bg-card);
border-radius: 0.75rem;
padding: 1.5rem;
box-shadow: 0 0.7rem 1.6rem rgba(0, 0, 0, 0.7);
border: 1px solid rgba(255, 214, 0, 0.22);
}

.card h3 {
margin-bottom: 0.65rem;
color: var(--accent);
}

.card p {
color: var(--text-muted);
}

/* STEPS */

.steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 1.5rem;
}

.step {
background: var(--bg-card);
border-radius: 0.75rem;
padding: 1.5rem 1.25rem 1.25rem;
position: relative;
box-shadow: 0 0.7rem 1.6rem rgba(0, 0, 0, 0.7);
border: 1px solid rgba(255, 214, 0, 0.22);
}

.step-number {
position: absolute;
top: -0.9rem;
left: 1.25rem;
width: 1.8rem;
height: 1.8rem;
border-radius: 999px;
background: var(--accent);
color: #000;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.85rem;
font-weight: 700;
}

/* CONTACT SECTION */

.contact-section {
background: #000;
border-top: 1px solid rgba(255, 214, 0, 0.3);
}

.contact-section a {
color: var(--accent);
}

.contact-highlight {
margin: 1rem 0;
font-weight: 600;
}

.contact-box {
background: var(--bg-card);
border-radius: 0.75rem;
padding: 1.5rem;
box-shadow: 0 0.7rem 1.6rem rgba(0, 0, 0, 0.8);
border: 1px solid rgba(255, 214, 0, 0.25);
}

.contact-box h3 {
margin-bottom: 1rem;
color: var(--accent);
}

.contact-box form {
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.contact-box label {
font-size: 0.9rem;
display: flex;
flex-direction: column;
gap: 0.3rem;
color: var(--text-main);
}

.contact-box input,
.contact-box textarea {
border-radius: 0.4rem;
border: 1px solid #333;
padding: 0.5rem 0.6rem;
font: inherit;
background: #050505;
color: var(--text-main);
}

.contact-box input:focus,
.contact-box textarea:focus {
outline: 1px solid var(--accent);
}

.form-note {
font-size: 0.75rem;
color: var(--text-muted);
margin-top: 0.5rem;
}

/* FOOTER */

.site-footer {
background: #000;
color: var(--text-muted);
padding: 1.2rem 0;
font-size: 0.85rem;
border-top: 1px solid rgba(255, 214, 0, 0.25);
}

.site-footer a {
color: var(--accent);
}

.footer-inner {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 0.5rem;
}

/* RESPONSIVE */

@media (max-width: 768px) {
.header-inner {
flex-direction: column;
align-items: flex-start;
gap: 0.5rem;
}

.nav {
flex-wrap: wrap;
gap: 0.75rem;
}

.hero-inner {
padding-top: 4rem;
}

.two-column {
grid-template-columns: 1fr;
}
}
