/* ===== MODERN CSS DESIGN SYSTEM ===== */

:root {
  --navy: #0a1628;
  --navy-light: #1a2642;
  --gold: #d4a948;
  --gold-dark: #b8943e;
  --text: #e5e7eb;
  --text-muted: #9ca3af;
  --light: #f9fafb;
  --accent: #3b82f6;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.navbar--scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--light);
  transition: opacity 0.3s;
}

.nav-brand:hover { opacity: 0.85; }

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links li { display: block; }

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  position: relative;
  transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--light);
  transition: all 0.3s;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.hamburger.open { background: transparent; }
.hamburger.open::before { top: 0; transform: rotate(45deg); }
.hamburger.open::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-light);
    flex-direction: column;
    gap: 0;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links li { width: 100%; text-align: center; padding: 1rem 0; }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a2642 100%);
  opacity: 0.95;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(212,169,72,0.08) 0%, transparent 50%);
}

.hero .container { position: relative; z-index: 10; }

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,169,72,0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* ===== WHAT WE DO SECTION ===== */
.what-we-do {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.card {
  background: rgba(26, 38, 66, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--light);
  margin-bottom: 0.8rem;
}

.card-desc {
  color: var(--text-muted);
  line-height: 1.6;
}

.card-footer-quote {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
}

/* ===== PAGE HERO (for About/Services/Contact) ===== */
.page-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
}

.page-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1rem;
}

.page-hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-body {
  padding: 5rem 0;
}

.about-intro {
  font-size: 1.15rem;
  max-width: 800px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.about-block {
  background: rgba(26, 38, 66, 0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem;
}

.about-block-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.about-block h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.about-block ul {
  list-style: none;
}

.about-block li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.about-block li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.about-footer-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  text-align: center;
  margin-top: 3rem;
}

/* ===== SERVICES PAGE ===== */
.services-body {
  padding: 5rem 0;
}

.svc-card {
  background: rgba(26, 38, 66, 0.5);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  transition: all 0.3s;
}

.svc-card:hover {
  background: rgba(26, 38, 66, 0.8);
  transform: translateX(8px);
}

.svc-card--accent {
  border-left-color: var(--accent);
}

.svc-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.svc-icon {
  font-size: 2.5rem;
}

.svc-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(212,169,72,0.15);
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.svc-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  color: var(--light);
  margin-bottom: 0.8rem;
}

.svc-desc {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.svc-includes {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin: 1.5rem 0 0.8rem;
  font-weight: 600;
}

.svc-list {
  list-style: none;
  margin-bottom: 1rem;
}

.svc-list li {
  margin-bottom: 0.7rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.svc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.svc-note {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 1.2rem;
}

/* ===== CONTACT PAGE ===== */
.contact-body {
  padding: 5rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-info-panel {
  background: rgba(26, 38, 66, 0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-info-panel h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  color: var(--light);
  margin-bottom: 2rem;
}

.info-item {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.info-item a {
  color: var(--gold);
  transition: opacity 0.3s;
}

.info-item a:hover { opacity: 0.8; }

.contact-form-panel {
  background: rgba(26, 38, 66, 0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form-panel h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  color: var(--light);
  margin-bottom: 2rem;
}

form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

input, textarea {
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  color: var(--light);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,169,72,0.1);
}

textarea { resize: vertical; }

.form-success {
  background: rgba(59,130,246,0.15);
  border: 1px solid var(--accent);
  border-radius: 8px;
  padding: 1.5rem;
  color: var(--light);
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
  .container { padding: 0 1.5rem; }
  .hero { padding: 6rem 0 3rem; }
  .what-we-do, .about-body, .services-body, .contact-body { padding: 3rem 0; }
  .page-hero { padding: 8rem 0 3rem; }
}
