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

:root {
  --navy: #0a1f3f;
  --navy-light: #132d54;
  --navy-dark: #061429;
  --gold: #c8a44e;
  --gold-light: #dbb965;
  --gold-dark: #b08d3a;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --cream: #f1efe9;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-400: #a0a0a0;
  --gray-500: #6e6e6e;
  --gray-600: #4a4a4a;
  --gray-700: #2e2e2e;
  --gray-800: #1a1a1a;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --max-width: 1200px;
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 1000;
  font-size: 0.875rem;
}
.skip-link:focus {
  top: 1rem;
}

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

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(8px);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 1px 20px rgba(10, 31, 63, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--navy);
  padding: 0.375rem 0.5rem;
  border-radius: var(--radius);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-primary {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.logo-sub {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.main-nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
  position: relative;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--navy);
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10, 31, 63, 0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--gray-600);
  border-color: var(--gray-300);
}
.btn-ghost:hover,
.btn-ghost:focus {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover,
.btn-gold:focus {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 164, 78, 0.3);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover,
.btn-outline-light:focus {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.btn-full {
  width: 100%;
}

/* ─── HERO ─── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--off-white);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 100%;
}
.hero-content {
  padding-right: 1rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-dark);
}
.hero-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-badges {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--gray-200);
  padding-top: 1.5rem;
}
.hero-badges li {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.hero-badges li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.hero-image-wrap {
  position: relative;
}
.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 600/760;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-accent {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.5;
}

/* ─── SECTIONS ─── */
.services,
.about,
.why-us,
.contact {
  padding: 7rem 0;
}
.about {
  background: var(--off-white);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  padding: 2.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
  background: var(--white);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 31, 63, 0.08);
}
.service-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.service-icon svg {
  width: 100%;
  height: 100%;
}
.service-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 560/420;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content .section-title {
  margin-bottom: 1.5rem;
}
.about-content p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}
.stat {
  flex: 1;
}
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}
.stat-divider {
  width: 1px;
  background: var(--gray-200);
  align-self: stretch;
}

/* ─── WHY US ─── */
.why-us {
  background: var(--navy);
  color: var(--white);
}
.why-us .section-label {
  color: var(--gold);
}
.why-us .section-title {
  color: var(--white);
  margin-bottom: 3.5rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.why-item {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.why-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.why-item h3 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.why-item p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 380px;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--gold);
  padding: 4rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cta-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info .section-title {
  margin-bottom: 1rem;
}
.contact-info > p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.contact-details {
  font-style: normal;
}
.contact-row {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: baseline;
}
.contact-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  min-width: 80px;
}
.contact-value {
  font-size: 1rem;
  color: var(--gray-700);
}
.contact-value a {
  color: var(--navy);
  transition: color var(--transition);
}
.contact-value a:hover {
  color: var(--gold-dark);
}

/* ─── FORM ─── */
.contact-form-wrap {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: var(--radius);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 78, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: #f0f7e8;
  border: 1px solid #d4e8c4;
  border-radius: var(--radius);
  color: #3a6b2a;
  font-size: 0.9375rem;
}
.form-success svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #5a9a42;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand .logo-mark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}
.footer-copy {
  font-size: 0.875rem;
  line-height: 1.7;
}
.footer-copy a {
  color: var(--gold);
  transition: color var(--transition);
}
.footer-copy a:hover {
  color: var(--gold-light);
}
.footer-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 2.5rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-toggle {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.5rem 1.25rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .main-nav a {
    font-size: 0.9375rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-content {
    padding-right: 0;
    order: 1;
  }
  .hero-image-wrap {
    order: 2;
  }
  .hero-image {
    aspect-ratio: 4/3;
  }
  .hero-accent {
    display: none;
  }
  .hero-body {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    text-align: center;
  }

  .services,
  .about,
  .why-us,
  .contact {
    padding: 4.5rem 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image {
    aspect-ratio: 16/9;
  }
  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .stat-divider {
    width: 100%;
    height: 1px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .why-number {
    font-size: 2.25rem;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .btn {
    text-align: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-form-wrap {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.875rem;
  }
  .hero-badges {
    flex-direction: column;
    gap: 0.75rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
}
