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

:root {
  --navy: #0a1f3f;
  --navy-light: #132d54;
  --gold: #c8a45a;
  --gold-light: #dbb96e;
  --gold-pale: #f5ecd7;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-50: #fafaf8;
  --gray-100: #f0efe9;
  --gray-200: #e2e0d8;
  --gray-300: #c4c1b6;
  --gray-500: #7a766b;
  --gray-700: #3d3a33;
  --gray-900: #1a1814;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border: 1.5px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 164, 90, 0.3);
}

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

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

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

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(10, 31, 63, 0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 500;
}

.nav-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 4px;
  position: relative;
}

.nav-logo-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 6px;
  right: 6px;
  height: 1.5px;
  background: var(--navy);
  transform: translateY(-50%);
  box-shadow: 0 -4px 0 var(--navy), 0 4px 0 var(--navy);
}

.nav-logo-text {
  letter-spacing: -0.01em;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--navy);
}

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

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

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--navy-light);
  color: var(--white) !important;
}

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

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle-bar {
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 40px 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.mobile-menu-link:hover {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-menu-phone {
  font-size: 1.1rem;
  color: var(--gold);
  padding: 24px 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  background: var(--white);
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 300;
}

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

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 400;
}

.hero-trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.hero-right {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

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

.hero-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

.hero-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  height: 1px;
  background: var(--gray-200);
}

/* ── Services ── */
.services {
  padding: 100px 0;
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 36px 28px;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 31, 63, 0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  margin-bottom: 20px;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-500);
  font-weight: 300;
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about-image-wrap {
  border-radius: 8px;
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.about-content {
  max-width: 480px;
}

.about-content .section-title {
  margin-bottom: 28px;
}

.about-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 20px;
  font-weight: 300;
}

.about-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-signature span {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}

.about-signature span:last-child {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Why Us ── */
.why {
  padding: 100px 0;
  background: var(--navy);
}

.why .section-eyebrow {
  color: var(--gold);
}

.why .section-title {
  color: var(--white);
  margin-bottom: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.why-item {
  padding: 32px 0;
  border-top: 1px solid rgba(200, 164, 90, 0.2);
}

.why-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
}

.why-item h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.why-item p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-intro {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: 36px;
  font-weight: 300;
}

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

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

.contact-detail svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 4px;
  font-weight: 400;
}

.contact-detail a,
.contact-detail span {
  font-size: 0.9375rem;
  color: var(--navy);
  font-weight: 400;
  transition: var(--transition);
}

.contact-detail a:hover {
  color: var(--gold);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 12px 14px;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a766b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f0f7e8;
  border: 1px solid #d4e8c4;
  border-radius: 4px;
  color: #3a6b2a;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 8px;
}

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

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

/* ── Map ── */
.map-section {
  border-top: 1px solid var(--gray-200);
}

.map-section iframe {
  filter: grayscale(0.6) contrast(1.05);
  transition: var(--transition);
}

.map-section:hover iframe {
  filter: grayscale(0);
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo-mark {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 3px;
  margin-right: 8px;
  position: relative;
  vertical-align: middle;
}

.footer-logo-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  right: 5px;
  height: 1.5px;
  background: var(--navy);
  transform: translateY(-50%);
  box-shadow: 0 -3px 0 var(--navy), 0 3px 0 var(--navy);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--white);
  font-weight: 500;
  vertical-align: middle;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  max-width: 320px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

/* ── Scroll animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

  .nav-toggle {
    display: flex;
  }

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

  .hero-right {
    order: -1;
  }

  .hero-image-wrap img {
    height: 360px;
  }

  .hero-image-accent {
    width: 80px;
    height: 80px;
    bottom: -10px;
    right: -10px;
  }

  .hero-headline {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
  }

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

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

  .about-image-wrap img {
    height: 280px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .contact-form-wrap {
    padding: 28px;
  }

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

  .footer-links {
    align-items: flex-start;
  }

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

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

  .hero-trust {
    gap: 8px;
  }
}
