:root {
  --pars-ink: #071826;
  --pars-navy: #082945;
  --pars-navy-2: #0d3b60;
  --pars-paper: #f7f5ef;
  --pars-white: #fff;
  --pars-gold: #d8b66b;
  --pars-muted: #65727d;
  --pars-line: rgba(7, 24, 38, .14);
  --pars-rainbow: linear-gradient(90deg, #f2b51d 0%, #ef3f65 27%, #7b2ab6 55%, #0aa6c8 78%, #3dbb78 100%);
  --pars-shadow: 0 20px 60px rgba(5, 24, 41, .14);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body.pars-theme {
  max-width: 100%;
  margin: 0;
  background: var(--pars-paper);
  color: var(--pars-ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: clip;
}

html[lang="vi"] body.pars-theme {
  font-family: "Be Vietnam Pro", Arial, sans-serif;
}

body.pars-theme a {
  color: inherit;
  text-decoration: none;
}

body.pars-theme img {
  display: block;
  max-width: 100%;
}

body.pars-theme button,
body.pars-theme input,
body.pars-theme textarea,
body.pars-theme select {
  font: inherit;
}

body.pars-theme .container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

body.pars-theme .font-title,
body.pars-theme .serif {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-weight: 400;
}

html[lang="vi"] body.pars-theme .font-title,
html[lang="vi"] body.pars-theme .serif {
  font-family: "Playfair Display", Georgia, serif;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  background: rgba(7, 24, 38, .97);
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

.pars-module-home .site-header {
  background: linear-gradient(180deg, rgba(4, 19, 33, .78), rgba(4, 19, 33, .15));
}

.site-header.scrolled,
.pars-module-home .site-header.scrolled {
  background: rgba(7, 24, 38, .96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  backdrop-filter: blur(14px);
}

.site-header .nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 82px;
}

.site-header .brand {
  flex: 0 0 auto;
  width: 178px;
}

.site-header .brand img {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.site-header .nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-width: 0;
  margin-left: auto;
  color: #fff;
  font-size: .84rem;
}

.pars-nav-link,
.pars-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .88);
  cursor: pointer;
  transition: color .2s ease, opacity .2s ease, background .2s ease;
  white-space: nowrap;
}

.pars-nav-link:hover,
.pars-nav-link:focus-visible,
.pars-nav-toggle:hover,
.pars-nav-toggle:focus-visible,
.pars-nav-link.is-active,
.pars-nav-toggle.is-active {
  color: #f2d18e;
  outline: none;
}

.pars-nav-link.is-cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 4px;
  background: #e0bd73;
  color: var(--pars-ink);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pars-nav-link.is-cta:hover,
.pars-nav-link.is-cta:focus-visible,
.pars-nav-link.is-cta.is-active {
  background: #f0d38f;
  color: var(--pars-ink);
}

.pars-nav-group {
  position: relative;
  display: flex;
  align-items: center;
}

.pars-nav-toggle svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform .2s ease;
}

.pars-nav-group:hover .pars-nav-toggle svg,
.pars-nav-group:focus-within .pars-nav-toggle svg {
  transform: rotate(180deg);
}

.pars-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  width: max-content;
  max-width: calc(100vw - 40px);
  padding-top: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
}

.pars-nav-group:last-of-type .pars-nav-dropdown,
.pars-nav-group:nth-last-child(2) .pars-nav-dropdown {
  right: 0;
  left: auto;
}

.pars-nav-group:hover .pars-nav-dropdown,
.pars-nav-group:focus-within .pars-nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.pars-nav-dropdown-inner {
  display: grid;
  grid-template-columns: max-content;
  column-gap: clamp(120px, 12vw, 175px);
  row-gap: 22px;
  padding: 25px;
  border: 1px solid rgba(216, 182, 107, .32);
  border-radius: 4px;
  background: rgba(7, 24, 38, .98);
  box-shadow: var(--pars-shadow);
}

.pars-nav-dropdown-inner:has(> .pars-nav-column:nth-child(2)) {
  grid-template-columns: repeat(2, max-content);
}

.pars-nav-dropdown-inner:has(> .pars-nav-column:nth-child(3)) {
  grid-template-columns: repeat(3, max-content);
}

.pars-nav-column {
  min-width: 0;
}

.pars-nav-column-title {
  margin: 0 0 10px;
  color: var(--pars-gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.pars-nav-children {
  display: grid;
  gap: 9px;
}

.pars-nav-child-link {
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  line-height: 1.4;
  transition: color .2s ease;
}

.pars-nav-child-link:hover,
.pars-nav-child-link:focus-visible,
.pars-nav-child-link.is-active {
  color: #fff;
  outline: none;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: 0 0 auto;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 4px;
}

.language-switch a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 28px;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.site-header .language-switch a {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.site-header .language-switch a:hover,
.site-header .language-switch a.is-active {
  background: #e0bd73;
  color: var(--pars-ink) !important;
  -webkit-text-fill-color: var(--pars-ink);
}

.menu-btn {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
}

.menu-btn span,
.menu-btn::before,
.menu-btn::after {
  position: absolute;
  right: 10px;
  left: 10px;
  height: 2px;
  background: #fff;
  content: "";
  transition: .25s;
}

.menu-btn::before { top: 13px; }
.menu-btn span { top: 21px; }
.menu-btn::after { top: 29px; }
.menu-btn.active::before { transform: translateY(8px) rotate(45deg); }
.menu-btn.active span { opacity: 0; }
.menu-btn.active::after { transform: translateY(-8px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  top: 72px;
  right: 0;
  left: 0;
  z-index: 49;
  display: none;
  max-height: calc(100vh - 72px);
  padding: 18px 22px 26px;
  overflow-y: auto;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: #071826;
  color: #fff;
  transform: translateY(-140%);
  transition: transform .3s ease;
}

.mobile-panel.open {
  transform: none;
}

.mobile-panel[inert] {
  visibility: hidden;
  pointer-events: none;
}

.mobile-panel.open {
  visibility: visible;
  pointer-events: auto;
}

.pars-mobile-navigation {
  display: grid;
}

.pars-mobile-link,
.pars-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: transparent;
  color: rgba(255, 255, 255, .88);
  text-align: left;
}

.pars-mobile-link.is-active,
.pars-mobile-toggle.is-active {
  color: #f2d18e;
}

.pars-mobile-link.is-cta {
  justify-content: center;
  margin-top: 16px;
  border: 0;
  border-radius: 4px;
  background: #e0bd73;
  color: var(--pars-ink);
  font-weight: 700;
  text-transform: uppercase;
}

.pars-mobile-toggle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform .2s ease;
}

.pars-mobile-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.pars-mobile-submenu {
  display: none;
  padding: 6px 0 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.pars-mobile-submenu.is-open {
  display: grid;
  gap: 8px;
}

.pars-mobile-subgroup {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.pars-mobile-subgroup-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 44px;
  padding: 9px 0;
  border: 0;
  background: transparent;
  color: var(--pars-gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: left;
  text-transform: uppercase;
}

.pars-mobile-subgroup-toggle svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  fill: currentColor;
  transition: transform .2s ease;
}

.pars-mobile-subgroup-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.pars-mobile-subgroup-panel {
  display: none;
  padding: 0 0 8px;
}

.pars-mobile-subgroup-panel.is-open {
  display: grid;
  gap: 2px;
}

.pars-mobile-submenu-title {
  margin: 8px 0 2px;
  color: var(--pars-gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pars-mobile-child-link {
  display: block;
  padding: 7px 0;
  color: rgba(255, 255, 255, .7);
  font-size: .82rem;
}

.mobile-language-switch {
  display: flex;
  gap: 8px;
  padding-top: 18px;
}

.mobile-language-switch a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .24);
  font-size: .72rem;
  font-weight: 700;
}

.mobile-language-switch a.is-active {
  border-color: #e0bd73;
  background: #e0bd73;
  color: var(--pars-ink);
}

.site-main {
  min-height: 55vh;
}

body.pars-theme:not(.pars-module-home) .site-main {
  padding-top: 82px;
  background: var(--pars-paper);
}

body.pars-theme:not(.pars-module-home) .site-main > section:first-child {
  border-color: var(--pars-line) !important;
  background: #f3f0e9 !important;
}

body.pars-theme:not(.pars-module-home) .site-main h1,
body.pars-theme:not(.pars-module-home) .site-main h2,
body.pars-theme:not(.pars-module-home) .site-main h3 {
  color: var(--pars-navy);
}

body.pars-theme:not(.pars-module-home) .site-main h1,
body.pars-theme:not(.pars-module-home) .site-main h2 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none;
}

html[lang="vi"] body.pars-theme:not(.pars-module-home) .site-main h1,
html[lang="vi"] body.pars-theme:not(.pars-module-home) .site-main h2 {
  font-family: "Playfair Display", Georgia, serif;
}

body.pars-theme:not(.pars-module-home) .site-main section:nth-child(2) {
  position: relative;
  overflow: hidden;
  background: var(--pars-navy) !important;
}

body.pars-theme:not(.pars-module-home) .site-main section:nth-child(2)::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 19, 32, .78), rgba(5, 27, 47, .26));
  content: "";
  pointer-events: none;
}

body.pars-theme:not(.pars-module-home) .site-main section:nth-child(2) > * {
  position: relative;
  z-index: 1;
}

body.pars-theme:not(.pars-module-home) .site-main section:nth-child(2) img {
  filter: brightness(.48) saturate(.82);
}

body.pars-theme:not(.pars-module-home) .site-main section:nth-child(2) h1,
body.pars-theme:not(.pars-module-home) .site-main section:nth-child(2) p {
  color: #fff;
}

body.pars-theme:not(.pars-module-home) [class*="rounded-[24px]"],
body.pars-theme:not(.pars-module-home) [class*="rounded-[28px]"],
body.pars-theme:not(.pars-module-home) [class*="rounded-[30px]"] {
  border-radius: 4px !important;
}

body.pars-theme:not(.pars-module-home) article,
body.pars-theme:not(.pars-module-home) .info-card,
body.pars-theme:not(.pars-module-home) .resource-card,
body.pars-theme:not(.pars-module-home) .gallery-card {
  border-color: var(--pars-line) !important;
  box-shadow: 0 16px 45px rgba(5, 24, 41, .08) !important;
}

body.pars-theme .text-copper,
body.pars-theme .hover\:text-copper:hover {
  color: #a67c28 !important;
}

body.pars-theme .bg-copper {
  background: #b58d3f !important;
}

body.pars-theme .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

body.pars-theme .reveal.in,
body.pars-theme .reveal.is-visible {
  opacity: 1;
  transform: none;
}

body.pars-theme .prose,
body.pars-theme article {
  color: #344552;
}

body.pars-theme article p,
body.pars-theme article li,
body.pars-theme .page-content p,
body.pars-theme .page-content li {
  line-height: 1.75;
}

body.pars-theme article a,
body.pars-theme .page-content a {
  color: #0a5f8b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.pars-theme input,
body.pars-theme textarea,
body.pars-theme select {
  border-color: rgba(7, 24, 38, .2);
  border-radius: 2px;
}

body.pars-theme table {
  width: 100%;
  border-color: var(--pars-line);
}

body.pars-theme th {
  background: #eae5d8;
  color: var(--pars-navy);
}

.footer {
  position: relative;
  padding: 58px 0 24px;
  background: #041521;
  color: #fff;
}

.footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--pars-rainbow);
  content: "";
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .9fr 1.1fr;
  gap: 52px;
  padding-bottom: 42px;
}

.footer-brand {
  width: 180px;
  margin-bottom: 16px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .62);
  font-size: .8rem;
}

.footer a:hover,
.footer a:focus-visible {
  color: #fff;
  outline: none;
}

.footer h4 {
  margin: 0 0 14px;
  color: #e2c17a;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.newsletter {
  display: flex;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, .24);
}

.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  outline: 0;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, .45);
}

.newsletter button {
  width: 48px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .24);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .44);
  font-size: .7rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .site-header .nav-links {
    gap: 14px;
    font-size: .76rem;
  }

  .pars-nav-link.is-cta {
    padding-inline: 13px;
  }

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

@media (max-width: 860px) {
  body.pars-theme .container {
    width: min(100% - 34px, 1180px);
  }

  .site-header .nav {
    height: 72px;
  }

  .site-header .brand {
    width: 156px;
  }

  .site-header .nav-links,
  .site-header .language-switch {
    display: none;
  }

  .menu-btn,
  .mobile-panel {
    display: block;
  }

  body.pars-theme:not(.pars-module-home) .site-main {
    padding-top: 72px;
  }
}

@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-bottom: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  body.pars-theme .reveal {
    opacity: 1;
    transform: none;
  }
}

@supports not (overflow: clip) {
  html,
  body.pars-theme {
    overflow-x: hidden;
  }
}
