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

:root {
  --primary: #1a2a4a;
  --primary-light: #2c3e6a;
  --accent: #c9a84c;
  --accent-light: #dfc166;
  --text: #2c3e50;
  --text-light: #7f8c8d;
  --bg: #ffffff;
  --bg-alt: #f5f6fa;
  --border: #e0e3eb;
  --footer-bg: #0f1a30;
  --font-sans: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
  --max-width: 1100px;
  --header-height: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s;
}

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

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--accent);
  border-radius: 4px;
  cursor: pointer;
  transition: all .3s;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--primary);
}

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

.btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
}

.section {
  padding: 80px 0;
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin-top: 12px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 48px;
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--accent);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--primary);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: #c8cedb;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all .2s;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
  background: rgba(201, 168, 76, 0.1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 4px;
}

/* Hero */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #0f1a30 100%);
  color: #fff;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 18px;
  color: #a0a8b8;
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero .btn {
  margin: 0 8px 12px;
}

/* Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  transition: box-shadow .3s, transform .3s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: var(--accent);
}

.card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
}

.card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* Management */
.management-profile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

.management-avatar {
  width: 120px;
  height: 120px;
  min-width: 120px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: var(--accent);
  font-family: var(--font-serif);
  font-weight: bold;
}

.management-info h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 4px;
}

.management-info .role {
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 16px;
}

.management-info p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
}

/* Contact */
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item .icon {
  font-size: 22px;
  color: var(--accent);
  min-width: 32px;
  padding-top: 2px;
}

.contact-item h4 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-map {
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: none;
}

/* Legal Pages */
.legal-content h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 40px;
}

.legal-content h1::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin-top: 12px;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--primary);
  margin: 36px 0 12px;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content strong {
  color: var(--text);
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: #7f8fa0;
  padding: 48px 0 32px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  color: #e0e3eb;
  font-size: 15px;
  margin-bottom: 16px;
  font-family: var(--font-serif);
}

.footer p {
  line-height: 1.8;
  color: #7f8fa0;
}

.footer a {
  color: #7f8fa0;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #5a6a7a;
}

/* Responsive */
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .management-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 16px 24px;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 16px;
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .section {
    padding: 56px 0;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .legal-content h1 {
    font-size: 28px;
  }
}
