:root {
  --primary: #0f0f0f;
  --accent: #c89b3c; /* gold from logo */
  --accent-dark: #a67c2a;
  --bg: #ffffff;
  --text: #222;
  --muted: #666;

  --radius: 12px;
  --max-width: 1100px;
}
.logo img {
  height: 55px; /* increased from 40px */
}

.header .container {
  padding: 12px 20px; /* slightly tighter for balance */
}
/* Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
font-family: system-ui, -apple-system, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
}

/* Layout */
.container {
max-width: var(--max-width);
margin: auto;
padding: 0 20px;
}

/* Header */
.header {
position: sticky;
top: 0;
z-index: 1000;
background: rgba(255,255,255,0.9);
backdrop-filter: blur(10px);
border-bottom: 1px solid #eee;
}

.header .container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 20px;
}

.logo {
font-weight: bold;
font-size: 20px;
}

/* Navigation */
.nav {
display: flex;
align-items: center;
}

.nav a {
margin-left: 20px;
text-decoration: none;
color: var(--text);
transition: 0.2s;
}

.nav a:hover {
color: var(--accent);
}

/* Mobile Menu */
.menu-toggle {
display: none;
font-size: 26px;
cursor: pointer;
}

/* Hero */
.hero {
position: relative;
padding: 100px 0;
}

.hero-image {
background: url('/assets/images/hero.jpg') center/cover no-repeat;
color: #fff;
}

.hero-gradient {
background: linear-gradient(135deg, #111, #333);
color: #fff;
}

.overlay {
position: absolute;
inset: 0;
background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}

.hero-content {
position: relative;
z-index: 2;
}

.hero h1 {
font-size: 48px;
margin-bottom: 20px;
}

.hero p {
font-size: 18px;
opacity: 0.9;
max-width: 600px;
}

/* Grid */
.grid {
display: grid;
gap: 30px;
margin: 60px auto;
}

.grid-2 {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.card {
padding: 24px;
border: 1px solid #eee;
border-radius: var(--radius);
background: #fff;
transition: 0.3s ease;
}

.card:hover {
transform: translateY(-6px) scale(1.01);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card h3 {
margin-bottom: 10px;
}

/* CTA */
.cta {
margin: 80px auto;
padding: 50px;
background: #111;
color: #fff;
border-radius: var(--radius);
text-align: center;
}

.cta h2 {
margin-bottom: 10px;
}

.cta p {
margin-bottom: 20px;
}

/* Buttons */
.button {
display: inline-block;
padding: 12px 22px;
background: var(--accent);
color: #000;
border-radius: var(--radius);
text-decoration: none;
font-weight: 500;
transition: 0.2s;
}

.button:hover {
opacity: 0.9;
}

/* Footer */
.footer {
border-top: 1px solid #eee;
margin-top: 60px;
}

.footer .container {
padding: 20px;
text-align: center;
color: var(--muted);
}

/* Animations */
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: 0.6s ease;
}

.fade-in.visible {
opacity: 1;
transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {

.menu-toggle {
display: block;
}

.nav {
position: absolute;
top: 60px;
right: 20px;
background: #fff;
width: 200px;
display: none;
flex-direction: column;
border: 1px solid #eee;
border-radius: var(--radius);
overflow: hidden;
}

.nav a {
margin: 0;
padding: 15px;
border-bottom: 1px solid #eee;
}

.nav a:last-child {
border-bottom: none;
}

.nav.active {
display: flex;
}

.hero h1 {
font-size: 32px;
}

.hero {
padding: 60px 0;
}

.cta {
padding: 30px;
}
}


/*Footer*/

.footer {
  background: var(--accent);
  color: #111;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 50px 20px;
  align-items: start;
}

/* Logo (washed style) */
.footer-brand img {
  height: 60px;
  opacity: 0.2;
  filter: brightness(0) invert(1);
}

/* Links */
.footer-links h4,
.footer-social h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-links a,
.footer-social a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #111;
  transition: 0.2s;
}

.footer-links a:hover,
.footer-social a:hover {
  opacity: 0.7;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.2);
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.08);
  border-radius: 50%;
  transition: 0.3s ease;
}

.social img {
  width: 25px;
  height: 25px;
  margin-top: 6px;
}

/* Hover animation */
.social:hover {
  transform: translateY(-4px) scale(1.1);
  background: #111;
}

.social:hover img {
  filter: invert(1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin: 60px auto;
}

.contact-info h3 {
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 15px;
}

.contact-map iframe {
  border-radius: var(--radius);
}

/* Mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}