@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --navy: #0D1B2A;
  --navy-light: #162436;
  --gold: #C8A96E;
  --gold-light: #E4C99A;
  --gold-dark: #9E7A42;
  --cream: #F7F3EE;
  --text: #1A2535;
  --text-muted: #6B7A8D;
  --border: rgba(200,169,110,0.2);
  --white: #ffffff;
  --radius: 4px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,169,110,0.15);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 70px;
}
.logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); font-weight: 700; letter-spacing: 0.5px; }
.logo-sub { font-size: 0.6rem; color: rgba(200,169,110,0.6); letter-spacing: 4px; text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.825rem; letter-spacing: 0.5px; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
  padding: 0.5rem 1.25rem; font-size: 0.8rem; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer; transition: all 0.2s; text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--gold); font-size: 1.5rem; }

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: '§';
  position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
  font-size: 32rem; color: rgba(200,169,110,0.04);
  font-family: 'Playfair Display', serif; line-height: 1; pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 6rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid rgba(200,169,110,0.3);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--white); line-height: 1.2; margin-bottom: 1.5rem; font-weight: 400;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-desc { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 460px; margin-bottom: 2.5rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy); padding: 0.875rem 2rem;
  font-size: 0.825rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent; color: rgba(255,255,255,0.7); padding: 0.875rem 2rem;
  font-size: 0.825rem; letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2); text-decoration: none; transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  display: flex; flex-direction: column; gap: 2rem;
  border-left: 1px solid rgba(200,169,110,0.2); padding-left: 3rem;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; margin-top: 0.25rem; }
.stat-divider { width: 40px; height: 1px; background: rgba(200,169,110,0.2); }

/* SECTIONS */
section { padding: 6rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-eyebrow {
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--navy); font-weight: 400; margin-bottom: 1.5rem;
}
.section-lead { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; }

/* SERVICES */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5px; margin-top: 4rem; }
.service-card {
  background: var(--white); padding: 2.5rem;
  border-top: 3px solid transparent; transition: border-color 0.3s, transform 0.2s;
  position: relative;
}
.service-card:hover { border-top-color: var(--gold); transform: translateY(-3px); }
.service-icon { font-size: 1.75rem; margin-bottom: 1.5rem; color: var(--gold); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 0.75rem; font-weight: 500; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-box {
  width: 100%; aspect-ratio: 3/4; background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--gold);
  position: relative;
}
.about-image-box::after {
  content: ''; position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 80%; height: 80%;
  border: 2px solid var(--gold); z-index: -1;
}
.about-badge {
  position: absolute; bottom: 2rem; left: -2rem;
  background: var(--gold); padding: 1.25rem 1.5rem;
  text-align: center;
}
.about-badge-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); font-weight: 700; line-height: 1; }
.about-badge-label { font-size: 0.7rem; color: var(--navy); letter-spacing: 2px; text-transform: uppercase; margin-top: 0.2rem; }
.about-content { }
.about-content .section-title { margin-bottom: 1.5rem; }
.about-content p { color: var(--text-muted); margin-bottom: 1.25rem; }
.about-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.value-item { display: flex; align-items: flex-start; gap: 1rem; }
.value-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 0.6rem; }
.value-text { font-size: 0.9rem; color: var(--text-muted); }
.value-text strong { color: var(--text); }

/* TEAM */
.team { background: var(--navy); }
.team .section-title { color: var(--white); }
.team .section-lead { color: rgba(255,255,255,0.5); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 4rem; }
.team-card {
  background: var(--navy-light);
  border: 1px solid rgba(200,169,110,0.1);
  padding: 2.5rem;
  transition: border-color 0.3s;
}
.team-card:hover { border-color: rgba(200,169,110,0.4); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(200,169,110,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.75rem; color: var(--gold);
  margin-bottom: 1.5rem;
}
.team-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 0.25rem; font-weight: 500; }
.team-card .title { font-size: 0.8rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }
.team-card p { font-size: 0.875rem; color: rgba(255,255,255,0.5); }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 4rem; }
.blog-card { border: 1px solid rgba(0,0,0,0.08); transition: box-shadow 0.2s; }
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.blog-meta { background: var(--navy); padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.blog-date { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 1px; }
.blog-cat { font-size: 0.7rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.blog-body { padding: 1.5rem; }
.blog-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.75rem; font-weight: 500; line-height: 1.4; }
.blog-body p { font-size: 0.875rem; color: var(--text-muted); }
.blog-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; font-size: 0.8rem; color: var(--gold); text-decoration: none; letter-spacing: 0.5px; }

/* CONTACT */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; margin-top: 4rem; }
.contact-info { }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.75rem; color: var(--navy); margin-bottom: 2rem; font-weight: 400; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-value { font-size: 0.95rem; color: var(--navy); }
.contact-form { background: var(--white); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.875rem 1rem;
  border: 1px solid rgba(0,0,0,0.12); background: var(--cream);
  font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text);
  transition: border-color 0.2s; outline: none;
  border-radius: 0;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; background: #d4edda; color: #155724; padding: 1rem; margin-top: 1rem; font-size: 0.9rem; }

/* FOOTER */
footer { background: var(--navy); padding: 4rem 0 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(200,169,110,0.1); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bar-gold { width: 30px; height: 2px; background: var(--gold); }

/* SCROLL TOP */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 99;
  width: 44px; height: 44px; background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transition: opacity 0.3s; border: none; font-size: 1.2rem;
}
.scroll-top.visible { opacity: 1; }

/* MOBILE NAV */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 1.5rem 2rem; gap: 1.25rem; border-top: 1px solid rgba(200,169,110,0.15); }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
  .hero-stats { border-left: none; border-top: 1px solid rgba(200,169,110,0.2); padding-left: 0; padding-top: 2rem; flex-direction: row; flex-wrap: wrap; gap: 1.5rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-image-box { aspect-ratio: 4/3; }
  .about-badge { left: 0; }
  .about-image-box::after { display: none; }
}
