:root {
  --ink: #11151c;
  --ink-soft: #2b313b;
  --muted: #69717f;
  --line: #ded7cc;
  --paper: #f8f5ef;
  --paper-soft: #fbfaf7;
  --white: #ffffff;
  --gold: #a7804a;
  --gold-dark: #7a5a2d;
  --navy: #111927;
  --navy-2: #182234;
  --shadow: 0 24px 70px rgba(17, 21, 28, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1120px;
  --heading-font: Georgia, "Times New Roman", Times, serif;
  --body-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--paper-soft);
  font-size: 15.5px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

p,
ul,
dl,
address {
  margin: 0;
}

ul {
  padding-left: 1.05rem;
}

li + li {
  margin-top: 0.35rem;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 86px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(222, 215, 204, 0.9);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
}

.brand-logo {
  width: 60px;
  height: 34px;
  object-fit: contain;
  opacity: 0.72;
  mix-blend-mode: multiply;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.brand-subline {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 28px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 23px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  justify-self: end;
  display: inline-grid;
  gap: 1px;
  min-width: 148px;
  padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  line-height: 1.2;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-call span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.header-call strong {
  font-size: 0.82rem;
  font-weight: 600;
}

.header-call:hover,
.header-call:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.header-call:hover span,
.header-call:focus-visible span {
  color: rgba(255, 255, 255, 0.68);
}

.nav-toggle-input,
.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
  background:
    linear-gradient(115deg, rgba(248, 245, 239, 0.98) 0%, rgba(248, 245, 239, 0.92) 52%, rgba(248, 245, 239, 0.65) 100%),
    radial-gradient(circle at 84% 25%, rgba(167, 128, 74, 0.16), transparent 36%);
}

.hero::before {
  content: "MS";
  position: absolute;
  top: 70px;
  right: -28px;
  z-index: 0;
  font-family: var(--heading-font);
  font-size: clamp(9rem, 21vw, 18rem);
  line-height: 0.8;
  color: rgba(17, 21, 28, 0.045);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) 390px;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.eyebrow.light {
  color: #d7bd91;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--ink);
}

h1 {
  max-width: 760px;
  font-size: clamp(2.05rem, 3.1vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  line-height: 1.16;
  letter-spacing: -0.024em;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.26;
  letter-spacing: -0.012em;
}

.lead {
  max-width: 650px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.76;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--navy-2);
}

.btn-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.key-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.key-facts div {
  padding: 18px 18px 18px 0;
}

.key-facts div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.key-facts dt {
  font-size: 0.68rem;
  color: var(--gold-dark);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.key-facts dd {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero-card {
  position: relative;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(222, 215, 204, 0.94);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 27px -20px -20px 46px;
  z-index: -1;
  border: 1px solid rgba(167, 128, 74, 0.55);
  border-radius: calc(var(--radius) + 8px);
}

.portrait-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: #e7e2d7;
  aspect-ratio: 4 / 4.45;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(0.82) contrast(0.98);
}

.hero-card-copy {
  padding: 18px 8px 4px;
}

.small-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.68rem;
  color: var(--gold-dark);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card-copy h2 {
  font-size: 1.55rem;
}

.hero-card-copy p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.reputation-bar {
  padding: 25px 0;
  background: var(--ink);
  color: var(--white);
}

.reputation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.reputation-grid div {
  display: grid;
  gap: 2px;
}

.reputation-title {
  font-family: var(--heading-font);
  font-size: 1.24rem;
  color: #e6cfaa;
}

.reputation-text {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.narrow-heading {
  max-width: 780px;
  text-align: center;
}

.narrow-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(17, 21, 28, 0.045);
}

.service-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 86px;
  height: 1px;
  background: var(--line);
}

.featured-card {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.featured-card h3,
.featured-card .card-number {
  color: var(--white);
}

.featured-card p,
.featured-card li {
  color: rgba(255, 255, 255, 0.76);
}

.featured-card::after {
  background: rgba(255, 255, 255, 0.18);
}

.card-number {
  display: block;
  margin-bottom: 40px;
  font-family: var(--heading-font);
  font-size: 1.05rem;
  color: var(--gold-dark);
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card ul {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.muted {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 118px;
}

.sticky-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 25px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(167, 128, 74, 0.5);
  font-family: var(--heading-font);
  color: var(--gold-dark);
}

.process-list p {
  margin-top: 7px;
  color: var(--muted);
}

.profile-panel {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 54px;
  align-items: center;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: 0 24px 70px rgba(17, 21, 28, 0.07);
}

.profile-image-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 4.5;
  border-radius: var(--radius);
  background: #e9e3d7;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(0.82) contrast(0.98);
}

.profile-text p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
}

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

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

.location-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 68px;
}

.location-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.location-copy p + p {
  margin-top: 16px;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.location-tags span {
  padding: 7px 11px;
  border: 1px solid rgba(230, 207, 170, 0.34);
  border-radius: 999px;
  color: #e6cfaa;
  font-size: 0.78rem;
}


.language-section {
  padding-top: 18px;
  background: var(--paper-soft);
}

.language-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
  padding: 34px 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: 0 18px 50px rgba(17, 21, 28, 0.055);
}

.language-panel p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
}

.language-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
}

.language-list li {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 10px 12px;
  margin: 0;
  border: 1px solid rgba(167, 128, 74, 0.35);
  border-radius: 999px;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  color: var(--ink);
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  padding-top: 18px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 58px;
  padding: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.contact-intro p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
}

.contact-details address {
  color: var(--ink-soft);
  font-style: normal;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
}

.contact-list span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list a {
  font-weight: 650;
  color: var(--ink);
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--gold-dark);
}

.site-footer {
  padding: 54px 0 26px;
  background: #0c1118;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 46px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 1.2rem;
}

.footer-brand img {
  width: 54px;
  height: 31px;
  object-fit: contain;
  opacity: 0.72;
  filter: invert(1) grayscale(1);
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #e6cfaa;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.86rem;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 15px;
    font-size: 0.76rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 340px;
    gap: 44px;
  }

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

  .service-card {
    min-height: 315px;
  }
}

@media (max-width: 880px) {
  body {
    font-size: 15px;
  }

  .section-pad {
    padding: 62px 0;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header-inner {
    min-height: 72px;
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 52px;
  }

  .brand-subline {
    display: none;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    justify-self: end;
    width: 42px;
    height: 42px;
    place-items: center;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle span + span {
    margin-top: -9px;
  }

  .main-nav {
    position: absolute;
    left: 15px;
    right: 15px;
    top: calc(100% + 10px);
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 10px;
    border-radius: 10px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: var(--paper);
  }

  .main-nav a::after {
    display: none;
  }

  .nav-toggle-input:checked ~ .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle-input:checked + .nav-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .nav-toggle-input:checked + .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle-input:checked + .nav-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero {
    padding-top: 60px;
  }

  .hero-grid,
  .split-layout,
  .profile-panel,
  .location-grid,
  .language-panel,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .key-facts {
    grid-template-columns: 1fr;
  }

  .key-facts div {
    padding: 15px 0;
  }

  .key-facts div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-card {
    max-width: 440px;
  }

  .reputation-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sticky-heading {
    position: static;
  }

  .profile-panel,
  .language-panel,
  .contact-card {
    padding: 28px;
  }

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

  .profile-image-wrap {
    max-width: 360px;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-name {
    font-size: 1rem;
  }

  h1 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  h2 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .lead {
    font-size: 0.98rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .process-list article {
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 20px 18px;
  }

  .process-list span {
    width: 38px;
    height: 38px;
  }

  .profile-panel,
  .language-panel,
  .contact-card {
    padding: 20px;
  }

  .language-list {
    grid-template-columns: 1fr;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


/* Legal / trust sections */
.legal-section {
  border-top: 1px solid rgba(17, 21, 28, 0.08);
}

.legal-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 56px;
  align-items: start;
}

.legal-copy {
  display: grid;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.legal-copy a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
