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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #0a1628;
  background: #f8f6f1;
  line-height: 1.6;
}

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

.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 5rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon {
  width: 2.5rem; height: 2.5rem; border: 2px solid #c9a227;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  color: #c9a227; font-weight: 700; font-size: 1.125rem;
}
.logo-text h1 {
  font-family: 'Playfair Display', Georgia, serif;
  color: white; font-size: 1.125rem; font-weight: 600;
}
.logo-text p {
  color: rgba(201, 162, 39, 0.8); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a {
  color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-desktop a:hover { color: #c9a227; }
.btn-gold {
  background: #c9a227; color: #0a1628; padding: 0.625rem 1.25rem;
  font-size: 0.875rem; font-weight: 600; border: none; cursor: pointer;
  transition: background 0.2s; display: inline-block;
}
.btn-gold:hover { background: #b8922a; }
.menu-toggle {
  display: block; background: none; border: none; color: white;
  cursor: pointer; padding: 0.5rem;
}
.menu-toggle svg { width: 1.5rem; height: 1.5rem; }
.nav-mobile {
  display: none; background: #0f2340; border-top: 1px solid rgba(201,162,39,0.2);
  padding: 1rem 1.5rem; flex-direction: column; gap: 0.75rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.8); padding: 0.5rem 0; font-size: 0.875rem;
}
.nav-mobile a:hover { color: #c9a227; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .logo-text { display: block; }
}
@media (max-width: 640px) {
  .logo-text { display: none; }
}

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: #0a1628; position: relative; overflow: hidden;
  padding-top: 5rem;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a227' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; padding: 4rem 0 5rem; }
.hero-label {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem;
}
.hero-label span {
  height: 1px; width: 3rem; background: #c9a227;
}
.hero-label p {
  color: #c9a227; font-size: 0.875rem; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 500;
}
.hero h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: white; font-weight: 600; line-height: 1.15; margin-bottom: 1.5rem;
  max-width: 48rem;
}
.hero-desc {
  color: rgba(255,255,255,0.7); font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 42rem; margin-bottom: 2.5rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.3); color: white;
  padding: 1rem 2rem; font-weight: 500; transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: #c9a227; color: #c9a227; }
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  margin-top: 5rem;
}
@media (min-width: 640px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { border-left: 2px solid rgba(201,162,39,0.5); padding-left: 1rem; }
.stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem; color: #c9a227; font-weight: 600;
}
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-top: 0.25rem; }

/* Section common */
.section { padding: 6rem 0; }
.section-header { text-align: center; max-width: 42rem; margin: 0 auto 4rem; }
.section-label {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-label span { height: 1px; width: 2rem; background: #c9a227; }
.section-label p {
  color: #b8922a; font-size: 0.875rem; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 500;
}
.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 600; margin-bottom: 1rem;
}
.section-header p { color: rgba(26,54,93,0.7); font-size: 1.125rem; }

/* Services */
.services { background: #f8f6f1; }
.services-grid {
  display: grid; gap: 2rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: white; padding: 2rem; border: 1px solid #ede9e0;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: rgba(201,162,39,0.5); box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.service-icon { color: #c9a227; margin-bottom: 1.25rem; }
.service-icon svg { width: 2rem; height: 2rem; }
.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem;
}
.service-card p { color: rgba(26,54,93,0.7); line-height: 1.7; }

/* About */
.about { background: white; }
.about-grid {
  display: grid; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-label {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.about-label span { height: 1px; width: 2rem; background: #c9a227; }
.about-label p {
  color: #b8922a; font-size: 0.875rem; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 500;
}
.about h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 600; margin-bottom: 1.5rem;
}
.about p { color: rgba(26,54,93,0.7); font-size: 1.125rem; margin-bottom: 1.5rem; line-height: 1.7; }
.check-list { list-style: none; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem;
}
.check-list svg { width: 1.25rem; height: 1.25rem; color: #c9a227; flex-shrink: 0; margin-top: 0.125rem; }
.about-visual { position: relative; }
.about-box {
  aspect-ratio: 4/5; background: #0f2340; display: flex;
  align-items: center; justify-content: center; text-align: center;
}
.about-box-icon {
  width: 6rem; height: 6rem; border: 2px solid #c9a227;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  color: #c9a227; font-size: 2.25rem; font-weight: 700;
}
.about-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: white; font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem;
}
.about-box .subtitle { color: #c9a227; letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.875rem; }
.about-box .location { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-top: 0.5rem; }
.about-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: #c9a227; color: #0a1628; padding: 1.5rem;
  display: none;
}
@media (min-width: 640px) { .about-badge { display: block; } }
.about-badge .year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.875rem; font-weight: 700;
}
.about-badge p { font-size: 0.875rem; font-weight: 500; }

/* Team */
.team { background: #0a1628; }
.team .section-label p, .team .section-label span { color: #c9a227; }
.team .section-header h2 { color: white; }
.team .section-header p { color: rgba(255,255,255,0.6); }
.team-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.team-member { text-align: center; }
.team-avatar {
  width: 8rem; height: 8rem; margin: 0 auto 1.5rem;
  border: 2px solid rgba(201,162,39,0.3); background: #0f2340;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  color: #c9a227; font-size: 1.875rem; font-weight: 600;
  transition: border-color 0.3s;
}
.team-member:hover .team-avatar { border-color: #c9a227; }
.team-member h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: white; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.25rem;
}
.team-member .role { color: #c9a227; font-size: 0.875rem; margin-bottom: 0.5rem; }
.team-member .specialty { color: rgba(255,255,255,0.5); font-size: 0.875rem; }

/* Contact */
.contact { background: #f8f6f1; }
.contact-grid {
  display: grid; gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-info h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem;
}
.contact-item {
  display: flex; gap: 1rem; margin-bottom: 1rem;
}
.contact-item svg { width: 1.25rem; height: 1.25rem; color: #c9a227; flex-shrink: 0; margin-top: 0.25rem; }
.contact-item .label { font-weight: 500; }
.contact-item .value { color: rgba(26,54,93,0.7); }
.hours { margin-top: 2rem; }
.hours li {
  display: flex; justify-content: space-between; margin-bottom: 0.5rem;
  color: rgba(26,54,93,0.7);
}
.hours li span:last-child { font-weight: 500; color: #0a1628; }
.contact-form {
  background: white; padding: 2rem; border: 1px solid #ede9e0;
}
.form-row {
  display: grid; gap: 1.5rem; margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group label {
  display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid #ede9e0;
  background: rgba(248,246,241,0.5); font-family: inherit; font-size: 1rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #c9a227;
}
.form-group textarea { resize: vertical; min-height: 8rem; }
.btn-submit {
  background: #0a1628; color: white; padding: 1rem 2rem;
  font-weight: 600; border: none; cursor: pointer; font-size: 1rem;
  transition: background 0.2s;
}
.btn-submit:hover { background: #0f2340; }

/* Footer */
.footer {
  background: #0a1628; border-top: 1px solid rgba(201,162,39,0.2);
  padding: 3rem 0;
}
.footer-grid {
  display: grid; gap: 2rem; margin-bottom: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-top: 1rem; line-height: 1.6; }
.footer h4 { color: white; font-weight: 600; margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.2s; }
.footer ul a:hover { color: #c9a227; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
  display: flex; flex-direction: column; gap: 1rem; align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.875rem; }
