/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #1a1a2e;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(15, 33, 64, 0.08);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(15, 33, 64, 0.08);
}

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

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-logo-gold {
  color: #c9952e;
}

.nav-logo-red {
  color: #c0392b;
  font-size: 1.5rem;
}

.nav-logo-text {
  color: #0f2140;
  font-weight: 500;
  margin-left: 4px;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #1a1a2e;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c9952e;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #0f2140;
}

.nav-links a::after {
  width: 100%;
}

.nav-cta {
  background: #0f2140;
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.15s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: #162d54;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #0f2140;
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #ffffff;
  padding: 96px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-inner {
  transform: translateX(0);
}

.mobile-menu-link {
  font-size: 1.1rem;
  font-weight: 400;
  color: #1a1a2e;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 33, 64, 0.08);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu-link:hover {
  color: #c9952e;
  padding-left: 8px;
}

.mobile-menu-cta {
  border-bottom: none;
  background: #0f2140;
  color: #ffffff !important;
  text-align: center;
  border-radius: 4px;
  margin-top: 16px;
  padding: 16px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 72px 0 0;
  background: #ffffff;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9952e;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: #0f2140;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a6a;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #0f2140;
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6b8a;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(15, 33, 64, 0.15);
}

.hero-img-wrap {
  position: relative;
}

.hero-img-wrap img {
  width: 100%;
  height: 780px;
  object-fit: cover;
  border-radius: 8px;
}

.hero-img-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid #c9952e;
  border-radius: 8px;
  z-index: -1;
  opacity: 0.4;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: #0f2140;
  color: #ffffff;
  border-color: #0f2140;
}

.btn-primary:hover {
  background: #162d54;
  border-color: #162d54;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 33, 64, 0.2);
}

.btn-ghost {
  background: transparent;
  color: #0f2140;
  border-color: rgba(15, 33, 64, 0.3);
}

.btn-ghost:hover {
  border-color: #0f2140;
  background: rgba(15, 33, 64, 0.04);
}

.btn-gold {
  background: #c9952e;
  color: #0f2140;
  border-color: #c9952e;
  font-weight: 600;
}

.btn-gold:hover {
  background: #b8860b;
  border-color: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 149, 46, 0.3);
}

.btn-outline-gold {
  background: transparent;
  color: #c9952e;
  border-color: #c9952e;
}

.btn-outline-gold:hover {
  background: rgba(201, 149, 46, 0.08);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Section Labels & Titles ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9952e;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: #0f2140;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.gold-text {
  color: #c9952e;
}

.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a6a;
  max-width: 560px;
  margin: 0 auto;
}

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

/* ── About ── */
.about {
  padding: 120px 0;
  background: #ffffff;
}

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

.about-text {
  font-size: 1rem;
  line-height: 1.85;
  color: #4a4a6a;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #1a1a2e;
}

.about-feature svg {
  color: #c9952e;
  flex-shrink: 0;
}

.about-img-stack {
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 60%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 33, 64, 0.15);
  border: 4px solid #ffffff;
}

.about-img-secondary img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: #0f2140;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(15, 33, 64, 0.25);
}

.about-badge-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9952e;
  margin-bottom: 4px;
}

.about-badge-year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ── Services ── */
.services {
  padding: 120px 0;
  background: #f8f7f4;
}

.section-header {
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 8px;
  border: 1px solid rgba(15, 33, 64, 0.06);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(15, 33, 64, 0.08);
  border-color: rgba(201, 149, 46, 0.2);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(15, 33, 64, 0.06);
  color: #0f2140;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: #0f2140;
  color: #c9952e;
}

.service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f2140;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.925rem;
  line-height: 1.75;
  color: #4a4a6a;
  margin-bottom: 24px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: #c9952e;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.service-link:hover {
  color: #b8860b;
}

.service-link span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.service-link:hover span {
  transform: translateX(4px);
}

/* ── Areas ── */
.areas {
  padding: 120px 0;
  background: #ffffff;
}

.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.areas-content {
  order: 1;
}

.areas-text {
  font-size: 1rem;
  line-height: 1.85;
  color: #4a4a6a;
  margin-bottom: 36px;
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin-bottom: 40px;
}

.area-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8f7f4;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #1a1a2e;
}

.area-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b6b8a;
  background: rgba(15, 33, 64, 0.06);
  padding: 4px 10px;
  border-radius: 4px;
}

.areas-visual {
  order: 2;
  border-radius: 8px;
  overflow: hidden;
}

.areas-visual img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 8px;
}

/* ── Testimonials ── */
.testimonials {
  padding: 120px 0;
  background: #0f2140;
}

.testimonials .section-label {
  color: #c9952e;
}

.testimonials .section-title {
  color: #ffffff;
}

.testimonials .section-title .gold-text {
  color: #c9952e;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.testimonial-quote {
  margin-bottom: 24px;
}

.testimonial-quote svg {
  color: #c9952e;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-weight: 500;
  color: #ffffff;
  font-size: 0.95rem;
}

.testimonial-detail {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

/* ── CTA ── */
.cta {
  padding: 100px 0;
  background: #f8f7f4;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.cta-label {
  margin-bottom: 16px;
}

.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: #0f2140;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a4a6a;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: #4a4a6a;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

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

.contact-detail svg {
  color: #c9952e;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b8a;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: #1a1a2e;
  font-weight: 400;
}

.contact-detail-value:hover {
  color: #c9952e;
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.contact-map img:hover {
  filter: grayscale(0%);
}

/* ── Contact Form ── */
.contact-form-wrap {
  background: #f8f7f4;
  border-radius: 12px;
  padding: 48px;
  border: 1px solid rgba(15, 33, 64, 0.06);
}

.form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f2140;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6b8a;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.925rem;
  font-weight: 300;
  color: #1a1a2e;
  background: #ffffff;
  border: 1.5px solid rgba(15, 33, 64, 0.12);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0a0b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #c9952e;
  box-shadow: 0 0 0 3px rgba(201, 149, 46, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(201, 149, 46, 0.08);
  border: 1px solid rgba(201, 149, 46, 0.2);
  border-radius: 6px;
  margin-top: 16px;
  color: #0f2140;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  color: #c9952e;
  flex-shrink: 0;
}

/* ── Footer ── */
.footer {
  background: #0a1628;
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-logo-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-left: 4px;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
  max-width: 300px;
}

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

.footer-col-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9952e;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 0;
  transition: color 0.2s ease;
}

.footer-col span {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 0;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }

  .hero-img-wrap img {
    height: 600px;
  }

  .about-grid,
  .areas-layout,
  .contact-grid {
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px 60px;
    gap: 48px;
  }

  .hero-right {
    order: -1;
  }

  .hero-img-wrap img {
    height: 400px;
  }

  .hero-img-accent {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-num {
    font-size: 1.4rem;
  }

  .about-grid,
  .areas-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .areas-content {
    order: 1;
  }

  .areas-visual {
    order: 2;
  }

  .areas-visual img {
    height: 400px;
  }

  .about-img-secondary {
    right: 0;
    bottom: -30px;
  }

  .about-img-badge {
    right: 20px;
  }

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

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .areas-list {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-stat-divider {
    display: none;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

@media not all and (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 1;
    transform: translateY(0);
  }
}
