:root {
  --color-navy: #0f1d3a;
  --color-navy-dark: #0a1426;
  --color-gold: #d8b36c;
  --color-cream: #f6f4ef;
  --color-slate: #4b5563;
  --color-white: #ffffff;
  --max-width: 1120px;
  --shadow-soft: 0 20px 45px rgba(15, 29, 58, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background-color: var(--color-cream);
  color: var(--color-slate);
  line-height: 1.6;
}

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

a:hover,
a:focus {
  color: var(--color-gold);
}

.container {
  width: min(100% - 3rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 20, 38, 0.83);
  backdrop-filter: blur(12px);
  color: var(--color-white);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--color-gold), #c79a4c);
  color: var(--color-navy-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.brand-tagline {
  font-size: 0.85rem;
  opacity: 0.8;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy-dark);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 20, 38, 0.88), rgba(10, 20, 38, 0.55));
}

.hero-content {
  position: relative;
  padding: 6rem 0;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.7rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 640px;
}

.hero p {
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--color-white);
  backdrop-filter: blur(8px);
}

.btn.ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}


.section {
  padding: 5rem 0;
}

.section.inverse {
  background: var(--color-navy);
  color: var(--color-cream);
}

.section.inverse .section-heading p {
  color: rgba(246, 244, 239, 0.78);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0.65rem 0;
  color: var(--color-navy);
}

.section.inverse .section-heading h2 {
  color: var(--color-white);
}

.section-heading p {
  margin: 0 auto;
  color: rgba(15, 29, 58, 0.75);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--color-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 29, 58, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section.inverse .card {
  background: rgba(15, 29, 58, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(15, 29, 58, 0.18);
}

.card-body {
  padding: 1.75rem;
}

.card-body h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  color: var(--color-navy);
}

.section.inverse .card-body h3 {
  color: var(--color-white);
}

.card-body p {
  margin: 0;
}

.approach-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.approach-step {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.approach-step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(216, 179, 108, 0.12), transparent);
  pointer-events: none;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: rgba(216, 179, 108, 0.85);
}

.approach-step h3 {
  margin: 0.75rem 0;
  color: var(--color-white);
}

.partner-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.partner-card {
  padding: 2rem;
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 16px 36px rgba(15, 29, 58, 0.08);
  border-top: 4px solid var(--color-gold);
}

.partner-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
  color: var(--color-navy);
}

.testimonials {
  background: linear-gradient(120deg, rgba(15, 29, 58, 0.04), rgba(216, 179, 108, 0.08));
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial {
  margin: 0;
  padding: 1.75rem;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(15, 29, 58, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial blockquote {
  margin: 0;
  font-style: italic;
  color: var(--color-navy);
  font-size: 1rem;
}

.testimonial figcaption {
  font-size: 0.9rem;
  color: rgba(15, 29, 58, 0.7);
}

.cta {
  background: var(--color-navy-dark);
  color: var(--color-white);
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta h2 {
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.btn.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--color-white);
  padding: 0.95rem 2.1rem;
}

.btn.secondary:hover {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}

.site-footer {
  background: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.footer-branding {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-branding .logo-mark {
  box-shadow: none;
}

.footer-tagline {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 960px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 4.5rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
