:root {
  --navy: #14395c;
  --ink: #25343d;
  --muted: #697780;
  --gold: #9c7b39;
  --pale: #f7f5ef;
  --line: #d8dee2;
  --white: #fff;
  --bluegray: #9db7c1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--pale);
  line-height: 1.55;
}

a {
  color: inherit;
}

.navid {
border: 1px solid black;
  padding-bottom:30px;
}


/* Hero Sections */

.hero,
.page-hero {
  position: relative;
  background-image: url("images/global-trade-bg.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.home-hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.page-hero {
  min-height: 44vh;
  display: flex;
  align-items: end;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 24, 39, 0.72),
    rgba(9, 24, 39, 0.36) 45%,
    rgba(9, 24, 39, 0.72)
  );
}

/* Navigation */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 5px clamp(18px, 5vw, 72px);
  background: transparent;
  transition: 0.25s ease;
}

.site-nav.scrolled {
  background: rgba(247, 245, 239, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.brand img {
  display: block;
  width: 119px;
  height: 90px;
  object-fit: contain;
  /*background: rgba(255, 255, 255, 0.88);*/
  padding: 7px 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.site-nav.scrolled .nav-links a {
  color: var(--navy);
  text-shadow: none;
}

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

/* Hero Content */

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  padding: 150px 24px 80px;
}

.page-hero-content {
  padding-left: clamp(24px, 7vw, 90px);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* Typography */

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.02;
}

h1 {
  font-size: clamp(42px, 7vw, 78px);
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55);
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 60px);
  text-transform: none;
}

h2 {
  font-size: clamp(32px, 4vw, 50px);
}

h3 {
  font-size: 28px;
}

.hero-copy {
  max-width: 720px;
  margin: 22px auto 30px;
  color: #eef4f7;
  font-size: 20px;
}

/* Buttons */

.button,
.outline-button {
  display: inline-block;
  padding: 14px 25px;
  border: 1px solid var(--gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.2s ease;
}

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

.button:hover,
.outline-button:hover {
  background: var(--gold);
  color: #fff;
}

.outline-button {
  margin-top: 10px;
  color: var(--navy);
}

/* Main Sections */

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 56px;
  padding: 80px clamp(22px, 6vw, 84px);
  background: #fff;
}

.intro-copy p {
  font-size: 17px;
}

/* Practice Areas */

.practice-grid {
  padding-top:20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.practice-card {
  min-height: 180px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(20, 57, 92, 0.06);
  transition: 0.2s ease;
}

.practice-card:hover {
  transform: translateY(-3px);
  border-color: var(--bluegray);
}

.practice-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

/* Partners Preview */

.partners-preview {
  padding: 80px clamp(22px, 6vw, 84px);
  background: var(--pale);
}

.section-heading {
  margin-bottom: 28px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.partner-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(20, 57, 92, 0.05);
}

.partner-card img {
  width: 180px;
  height: 220px;
  object-fit: cover;
}

.partner-card h3 {
  color: var(--navy);
}

/* Profile Page */

.profile-page {
  padding: 70px clamp(18px, 5vw, 80px);
  background: #fff;
}

.profile {
  max-width: 1120px;
  margin: 0 auto 76px;
}

.profile-title h2 {
  font-size: 36px;
  color: #a7a7a7;
}

.rule {
  height: 9px;
  margin: 8px 0 10px;
  background: var(--bluegray);
}

.profile-title p {
  margin: 0 0 28px;
  font-family: Arial, sans-serif;
  color: #b9b9b9;
}

.profile-title a {
  color: var(--navy);
}

.profile-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: start;
  gap: 34px;
}

.profile-body img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.bio {
  font-size: 18px;
}

/* Footer */

footer {
  padding: 46px 24px;
  text-align: center;
  background: #111f2c;
  color: #dfe8ee;
}

footer img {
  width: 120px;
  height: 62px;
  margin-bottom: 12px;
  object-fit: contain;
  background: #fff;
  padding: 8px 12px;
}

footer a {
  color: #fff;
}

/* Responsive */

@media (max-width: 820px) {
  .site-nav {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
  }

  .brand img {
    width: 116px;
    height: 60px;
  }

  .section-grid,
  .partner-grid,
  .profile-body {
    grid-template-columns: 1fr;
  }

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

  .partner-card {
    grid-template-columns: 120px 1fr;
  }

  .partner-card img {
    width: 120px;
    height: 150px;
  }

  .profile-body img {
    width: 100%;
    height: auto;
  }

  .home-hero {
    min-height: 760px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-content {
    padding-top: 180px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    display: block;
  }

  .nav-links {
    margin-top: 12px;
    justify-content: flex-start;
  }

  .partner-card {
    grid-template-columns: 1fr;
  }

  .partner-card img {
    width: 100%;
    height: 260px;
  }

  .profile-page {
    padding-top: 44px;
  }
}