* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --navy: #0f2a4a;
  --navy-mid: #1a3a5c;
  --accent: #c8a96e;
  --light: #f7f5f0;
  --white: #ffffff;
  --gray: #6b7280;
  --border: #e5e0d8;
  --text: #1a1a1a;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
section {
  scroll-margin-top: 64px;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 42, 74, 0.97);
  backdrop-filter: blur(8px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

@media only screen and (max-width: 760px){
  .nav-logo img{
    width: 120px;
    margin-top: -18px;
  }

  nav{
      height: 75px !important;
  }
}

@media only screen and (min-width: 760px){
  .nav-logo img{
    width: 160px;
  }
}

.nav-logo span:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-logo span:last-child {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent);
  outline: none;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-caret {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  font-size: 0;
  line-height: 0;
  flex: 0 0 auto;
  opacity: 0.9;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: rgba(15, 42, 74, 0.98);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
  padding: 12px 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu,
.nav-item.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dropdown-menu li:last-child {
  border-bottom: none;
}
.dropdown-menu a {
  display: block;
  padding: 10px 0;
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
}
.nav-cta {
  background: var(--accent);
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
  display: inline-block;
}
.nav-cta:hover,
.nav-cta:focus {
  opacity: 0.85;
  outline: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 80px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 80px
    );
}
.hero-accent {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border: 1px solid rgba(200, 169, 110, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero-accent::after {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(200, 169, 110, 0.08);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 5%;
  max-width: 760px;
  margin-top: 0px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  margin-top: 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}
.hero-divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 32px 0;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--navy);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
  display: inline-block;
}
.btn-primary:hover,
.btn-primary:focus {
  opacity: 0.85;
  outline: none;
}
.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  display: inline-block;
}
.btn-secondary:hover,
.btn-secondary:focus {
  border-color: var(--accent);
  color: var(--accent);
  outline: none;
}
.hero-stats {
  position: absolute;
  bottom: 35px;
  left: 5%;
  display: flex;
  gap: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
  flex-wrap: wrap;
}
.stat-item span:first-child {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
}
.stat-item span:last-child {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.stat-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
}
section {
  padding: 96px 5%;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.section-label span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-body {
  font-size: 15px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.9;
}
.about {
  background: var(--light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}
.about-copy p {
  font-size: 15px;
  color: #3a3a3a;
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}
.pillar {
  background: var(--white);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: start;
  transition: background 0.2s;
}
.pillar:hover {
  background: #faf8f4;
}
.pillar-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
}
.pillar h4 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.pillar p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}
.services {
  background: var(--white);
}
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-card {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: pointer;
  border: none;
  text-align: left;
  font-family: inherit;
  width: 100%;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.25s;
}
.service-card::after {
  content: "→";
  position: absolute;
  bottom: 28px;
  right: 24px;
  font-size: 18px;
  color: var(--border);
  transition: all 0.25s;
}
.service-card:hover,
.service-card:focus {
  background: var(--navy);
  outline: none;
}
.service-card:hover::before,
.service-card:focus::before {
  background: var(--accent);
}
.service-card:hover::after,
.service-card:focus::after {
  color: var(--accent);
  transform: translateX(4px);
}
.service-card:hover .sc-num,
.service-card:focus .sc-num {
  color: #fff;
}
.service-card:hover .sc-title,
.service-card:focus .sc-title {
  color: var(--white);
}
.service-card:hover .sc-desc,
.service-card:focus .sc-desc {
  color: rgba(255, 255, 255, 0.5);
}
.service-card:hover .sc-list li,
.service-card:focus .sc-list li {
  color: rgba(255, 255, 255, 0.5);
}
.service-card:hover .sc-list li::before,
.service-card:focus .sc-list li::before {
  color: var(--accent);
}
.sc-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--navy-mid);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.25s;
}
.sc-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color 0.25s;
}
.sc-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
  transition: color 0.25s;
}
.sc-list {
  list-style: none;
  padding: 0;
}
.sc-list li {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
  transition: color 0.25s;
}
.sc-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 10px;
  top: 5px;
}
.team {
  background: var(--light);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: var(--border);
}
.team-card {
  background: var(--white);
  padding: 40px;
  display: flex;
  gap: 28px;
  align-items: start;
  transition: background 0.2s;
}
.team-card:hover {
  background: var(--navy);
}
.team-card:hover .tc-name {
  color: var(--white);
}
.team-card:hover .tc-creds {
  color: var(--accent);
}
.team-card:hover .tc-bio {
  color: rgba(255, 255, 255, 0.55);
}
.tc-avatar {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: background 0.2s;
}
.team-card:hover .tc-avatar {
  background: rgba(255, 255, 255, 0.1);
}
.tc-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
  transition: color 0.2s;
}
.tc-creds {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.tc-bio {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
  transition: color 0.2s;
}
.careers {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.careers-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 80px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 80px
    );
}
.careers-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.careers .section-title {
  color: var(--white);
}
.careers .section-body {
  color: rgba(255, 255, 255, 0.55);
}
.careers-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cv-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  transition: border-color 0.2s;
}
.cv-item:hover {
  border-color: var(--accent);
}
.cv-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.cv-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}
.careers-cta {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 64px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.ci-block h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.ci-block p,
.ci-block a {
  font-size: 14px;
  color: #3a3a3a;
  line-height: 1.8;
  text-decoration: none;
  display: block;
}
.ci-block a:hover,
.ci-block a:focus {
  color: var(--accent);
  outline: none;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: var(--light);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
}
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}
.form-group textarea {
  height: 120px;
}
.form-submit {
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: start;
}
.form-submit:hover,
.form-submit:focus {
  background: var(--navy-mid);
  outline: none;
}
.form-status {
  font-size: 13px;
  color: var(--gray);
  min-height: 20px;
}
.form-status.success {
  color: #2d6a4f;
}
.form-status.error {
  color: #c0392b;
}
footer {
  background: var(--navy);
  padding: 40px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
}
.footer-right a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  margin-left: 24px;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-right a:hover,
.footer-right a:focus {
  color: var(--accent);
  outline: none;
}
/* SERVICE DETAIL OVERLAY */
.svc-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--white);
  overflow-y: auto;
}
.svc-overlay.open {
  display: block;
}
.svc-overlay-nav {
  position: sticky;
  top: 0;
  background: rgba(15, 42, 74, 0.97);
  backdrop-filter: blur(8px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 10;
}
.back-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: none;
  transition: color 0.2s;
}
.back-btn:hover,
.back-btn:focus {
  color: var(--accent);
  outline: none;
}
.back-btn::before {
  content: "←";
  font-size: 16px;
}
.svc-tabs-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  padding: 0 5%;
  position: sticky;
  top: 64px;
  z-index: 9;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.svc-tab {
  padding: 18px 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: inherit;
}
.svc-tab.active,
.svc-tab:hover,
.svc-tab:focus {
  color: var(--navy);
  border-bottom-color: var(--accent);
  outline: none;
}
.svc-detail-hero {
  background: var(--navy);
  padding: 80px 5% 64px;
  position: relative;
  overflow: hidden;
}
.svc-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 80px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 80px
    );
}
.sdh-inner {
  position: relative;
  z-index: 1;
}
.sdh-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.sdh-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.sdh-eyebrow span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.sdh-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.sdh-tagline {
  font-size: 15px;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 16px;
}
.sdh-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 620px;
  line-height: 1.9;
}
.svc-body {
  padding: 72px 5%;
}
.svc-section {
  display: none;
}
.svc-section.active {
  display: block;
}
.svc-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 56px;
}
.svc-item {
  background: var(--white);
  padding: 32px 28px;
}
.svc-item h4 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.svc-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.85;
}
.svc-why {
  background: var(--light);
  padding: 40px 44px;
  border-left: 3px solid var(--accent);
}
.svc-why h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.svc-why p {
  font-size: 14px;
  color: #3a3a3a;
  line-height: 1.9;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(15, 42, 74, 0.98);
    backdrop-filter: blur(8px);
    padding: 24px 5%;
    gap: 0;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 14px;
  }
  .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .dropdown-menu {
    position: static;
    min-width: 0;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    backdrop-filter: none;
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.25s, padding 0.25s;
  }
  .nav-item.open > .dropdown-menu {
    max-height: 420px;
    padding: 0 16px 10px;
  }
  .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .dropdown-menu a {
    font-size: 13px;
    padding: 10px 0;
    white-space: normal;
  }
  .nav-cta {
    display: none;
  }
  section {
    padding: 72px 5%;
  }
  .about-grid,
  .services-intro,
  .careers-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    margin-top: 0px !important;
  }
  .hero h1 {
    font-size: clamp(40px, 9vw, 64px);
  }
  .hero-stats {
    position: static;
    margin: 48px 5% 48px;
    gap: 24px;
  }
  .stat-item span:first-child {
    font-size: 28px;
  }
  .stat-sep {
    display: none;
  }
  footer {
    flex-direction: column;
    text-align: center;
    padding: 32px 5%;
    gap: 12px;
  }
  .footer-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-right a {
    margin: 0 12px;
  }
}
@media (max-width: 600px) {
  section {
    padding: 56px 5%;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .svc-items-grid {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .team-card {
    padding: 28px;
    flex-direction: column;
    gap: 16px;
  }
  .pillar {
    padding: 20px;
  }
  .careers-cta .btn-primary,
  .careers-cta .btn-secondary,
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    flex: 1;
    text-align: center;
    padding: 14px 20px;
  }
  .svc-body {
    padding: 48px 5%;
  }
  .svc-detail-hero {
    padding: 56px 5% 48px;
  }
  .svc-why {
    padding: 28px;
  }
  .hero-stats {
    gap: 20px;
  }
  .stat-item span:first-child {
    font-size: 24px;
  }
  .stat-item span:last-child {
    font-size: 10px;
  }
}


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

nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(15, 42, 74, 0.97);
	backdrop-filter: blur(8px);
	padding: 4%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px
}

.nav-logo {
	display: flex;
	flex-direction: column;
	line-height: 1;
  
}

@media only screen and (max-width: 760px){
  .nav-logo{
    padding-top: 25px;
  }
}

.nav-logo span:first-child {
	font-family: 'Cormorant Garamond', serif;
	font-size: 17px;
	font-weight: 500;
	color: var(--white);
	letter-spacing: 0.05em
}

.nav-logo span:last-child {
	font-size: 10px;
	color: var(--accent);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-top: 1px
}

.nav-links {
	display: flex;
	gap: 28px;
	list-style: none
}

.nav-links a {
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: color 0.2s;
	cursor: pointer
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
	color: var(--accent);
	outline: none
}

.nav-item {
	position: relative
}

.nav-link {
	display: flex;
	align-items: center;
	gap: 6px
}

.nav-caret {
	width: 6px;
	height: 6px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	font-size: 0;
	line-height: 0;
	flex: 0 0 auto;
	opacity: 0.9
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	background: rgba(15, 42, 74, 0.98);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	list-style: none;
	padding: 12px 18px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.2s, visibility 0.2s, transform 0.2s
}

.nav-item:hover>.dropdown-menu,
.nav-item:focus-within>.dropdown-menu,
.nav-item.open>.dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

.dropdown-menu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.dropdown-menu li:last-child {
	border-bottom: none
}

.dropdown-menu a {
	display: block;
	padding: 10px 0;
	font-size: 12px;
	line-height: 1.35;
	white-space: nowrap
}

.nav-cta {
	background: var(--accent);
	color: var(--navy);
	padding: 8px 20px;
	border-radius: 2px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: opacity 0.2s;
	cursor: pointer;
	border: none;
	display: inline-block
}

.nav-cta:hover,
.nav-cta:focus {
	opacity: 0.85;
	outline: none
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--white);
	cursor: pointer;
	padding: 8px;
	flex-direction: column;
	gap: 4px;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--white);
	transition: transform 0.25s, opacity 0.25s
}

.nav-toggle.active span:nth-child(1) {
	transform: translateY(6px) rotate(45deg)
}

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

.nav-toggle.active span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg)
}

.page-hero {
	min-height: 52vh;
	background: var(--navy);
	position: relative;
	display: flex;
	align-items: end;
	overflow: hidden;
	padding: 136px 5% 72px
}

.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 80px), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 80px)
}

.page-hero::after {
	content: '';
	position: absolute;
	right: -140px;
	bottom: -220px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(200, 169, 110, 0.12);
	border-radius: 50%
}

.page-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 820px
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px
}

.eyebrow::before {
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	background: var(--accent)
}

.eyebrow span {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent)
}

.page-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(42px, 6vw, 76px);
	font-weight: 300;
	color: var(--white);
	line-height: 1.05
}

.page-sub {
	margin-top: 18px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.58);
	max-width: 640px;
	line-height: 1.85
}

section {
	padding: 88px 5%
}

.section-label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px
}

.section-label::before {
	content: '';
	display: block;
	width: 32px;
	height: 1px;
	background: var(--accent)
}

.section-label span {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent)
}

.section-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(30px, 4vw, 52px);
	font-weight: 400;
	color: var(--navy);
	line-height: 1.1;
	margin-bottom: 16px
}

.section-body {
	font-size: 15px;
	color: var(--gray);
	max-width: 680px;
	line-height: 1.9
}

.light {
	background: var(--light)
}

.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: start
}

.content-stack {
	display: flex;
	flex-direction: column;
	gap: 24px
}

.copy-block p {
	font-size: 15px;
	color: #3a3a3a;
	line-height: 1.9;
	margin-bottom: 16px
}

.feature-list {
	display: grid;
	gap: 1px;
	background: var(--border)
}

.feature-item {
	background: var(--white);
	padding: 24px 28px;
	border-left: 2px solid transparent;
	transition: background 0.2s, border-color 0.2s
}

.feature-item:hover {
	background: #faf8f4;
	border-left-color: var(--accent)
}

.feature-item h3,
.feature-item h4 {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 8px
}

.feature-item p {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.75
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--border)
}

.info-card {
	background: var(--white);
	padding: 32px 28px;
	min-height: 180px
}

.info-card h3 {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 12px
}

.info-card p,
.info-card li {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.8
}

.info-card ul {
	list-style: none;
	display: grid;
	gap: 8px
}

.info-card li {
	position: relative;
	padding-left: 16px
}

.info-card li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 1px;
	background: var(--accent)
}

.team-list {
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: var(--border)
}

.team-profile {
	background: var(--white);
	padding: 48px;
	display: flex;
	flex-direction: row;
	gap: 48px;
	align-items: center
}

.profile-photo {
	width: 200px;
	height: 250px;
	object-fit: cover;
	object-position: top center;
	flex-shrink: 0;
	display: block
}

.profile-text {
	flex: 1
}

.avatar {
	width: 72px;
	height: 72px;
	background: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Cormorant Garamond', serif;
	font-size: 26px;
	color: var(--accent)
}

.team-profile h3 {
	font-size: 18px;
	color: var(--navy);
	margin-bottom: 2px
}

.team-profile strong {
	display: block;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 12px
}

.team-profile p {
	font-size: 13px;
	color: var(--gray);
	line-height: 1.8
}

.service-nav {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--border)
}

.service-link {
	background: var(--white);
	padding: 24px;
	color: var(--navy);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: background 0.2s, color 0.2s
}

.service-link:hover,
.service-link.active {
	background: var(--navy);
	color: var(--white)
}

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

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 28px
}

.ci-block h4 {
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 8px
}

.ci-block p,
.ci-block a {
	font-size: 14px;
	color: #3a3a3a;
	line-height: 1.8;
	display: block
}

.ci-block a:hover {
	color: var(--accent)
}

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

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

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

.form-group label {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gray)
}

.form-group input,
.form-group textarea,
.form-group select {
	padding: 12px 16px;
	border: 1px solid var(--border);
	border-radius: 2px;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	color: #1a1a1a;
	background: var(--light);
	outline: none;
	transition: border-color 0.2s;
	resize: none;
	width: 100%
}

.form-group textarea {
	height: 120px
}

.form-submit {
	background: var(--navy);
	color: var(--white);
	padding: 14px 32px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border: none;
	border-radius: 2px;
	cursor: pointer;
	align-self: start
}

.form-submit:hover {
	background: var(--navy-mid)
}

.cta-band {
	background: var(--navy);
	position: relative;
	overflow: hidden
}

.cta-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 80px)
}

.cta-inner {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	gap: 32px;
	align-items: center
}

.cta-band .section-title {
	color: var(--white)
}

.cta-band .section-body {
	color: rgba(255, 255, 255, 0.58)
}

.btn-primary {
	background: var(--accent);
	color: var(--navy);
	padding: 14px 32px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: 2px;
	display: inline-block
}

footer {
	background: var(--navy);
	padding: 40px 5%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	flex-wrap: wrap;
	gap: 16px
}

.footer-logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 15px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.06em
}

.footer-copy {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.3);
	letter-spacing: 0.04em
}

.footer-right a {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	margin-left: 24px;
	letter-spacing: 0.06em;
	transition: color 0.2s
}

.footer-right a:hover {
	color: var(--accent)
}

@media (max-width:1024px) {
	.cards-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.service-nav {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width:900px) {
	.nav-toggle {
		display: flex
	}

	.nav-links {
		position: fixed;
		top: 64px;
		left: 0;
		right: 0;
		flex-direction: column;
		background: rgba(15, 42, 74, 0.98);
		backdrop-filter: blur(8px);
		padding: 24px 5%;
		gap: 0;
		transform: translateY(-120%);
		transition: transform 0.3s ease;
		border-top: 1px solid rgba(255, 255, 255, 0.06);
		max-height: calc(100vh - 64px);
		overflow: auto
	}

	.nav-links.open {
		transform: translateY(0)
	}

	.nav-links li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.06)
	}

	.nav-links li:last-child {
		border-bottom: none
	}

	.nav-links a {
		display: block;
		padding: 16px 0;
		font-size: 14px
	}

	.nav-link {
		display: flex;
		justify-content: space-between;
		align-items: center
	}

	.dropdown-menu {
		position: static;
		min-width: 0;
		background: rgba(255, 255, 255, 0.03);
		border: none;
		backdrop-filter: none;
		padding: 0 16px;
		max-height: 0;
		overflow: hidden;
		opacity: 1;
		visibility: visible;
		transform: none;
		transition: max-height 0.25s, padding 0.25s
	}

	.nav-item.open>.dropdown-menu {
		max-height: 420px;
		padding: 0 16px 10px
	}

	.dropdown-menu a {
		font-size: 13px;
		padding: 10px 0;
		white-space: normal
	}

	.nav-cta {
		display: none
	}

	section {
		padding: 72px 5%
	}

	.two-col,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 48px
	}

	.team-list {
		grid-template-columns: 1fr
	}

	.cta-inner {
		display: block
	}

	.cta-inner .btn-primary {
		margin-top: 24px
	}

	footer {
		flex-direction: column;
		text-align: center
	}

	.footer-right a {
		margin: 0 12px
	}
}

@media (max-width:600px) {
	.page-hero {
		min-height: 46vh;
		padding: 116px 5% 52px
	}

	.cards-grid,
	.service-nav {
		grid-template-columns: 1fr
	}

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

	.team-profile {
		flex-direction: column
	}

	.profile-photo {
		width: 100%;
		height: 240px
	}

	.page-title {
		font-size: 42px
	}
}

/* ── US & UAE tax detail panel (tax.html) ── */
.tax-intl-detail {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-bottom: 56px;
}
.tax-intl-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}
.tax-intl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tax-intl-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  padding: 20px 22px;
}
.tax-intl-heading {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
}
.tax-intl-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tax-intl-list li {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.7;
  padding-left: 14px;
  position: relative;
  margin-bottom: 6px;
}
.tax-intl-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 7px;
}
@media (max-width: 768px) {
  .tax-intl-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Leader grid (index.html Leadership section) ── */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.leader-card {
  text-align: center;
  overflow: hidden;
}
.leader-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  margin-bottom: 16px;
  filter: grayscale(20%);
  transition: filter 0.35s, transform 0.35s;
}
.leader-card:hover .leader-photo {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.leader-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 5px;
}
.leader-qual {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.5;
}
.leader-cta {
  text-align: center;
  margin-top: 52px;
}
.leader-cta .btn-primary {
  background: var(--navy);
  color: var(--accent);
  letter-spacing: 0.05em;
}
.leader-cta .btn-primary:hover {
  background: var(--navy-mid);
  opacity: 1;
}

@media (max-width: 900px) {
  .leader-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .leader-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .leader-name {
    font-size: 13px;
  }
}