:root {
  --paper: #f7f5f0;
  --paper2: #fdfdfd;
  --ink: #333333;
  --ink2: #5f5a52;
  --muted: #9a948a;
  --muted2: #8a857c;
  --accent: #c8960c;
  --accent2: #ffef40;
  --navy: #16365c;
  --dark: #0d1f35;
  --line: #e4ded2;
  --min: "Shippori Mincho", serif;
  --sans: "Zen Kaku Gothic New", sans-serif;
  --en: "Space Grotesk", sans-serif;
  --site-logo-height: clamp(56px, 5vw, 72px);
  --site-header-padding-y: 16px;
  --site-header-height: calc(var(--site-logo-height) + var(--site-header-padding-y) + var(--site-header-padding-y));
  --motion-fast: .25s;
  --motion-mid: .55s;
  --motion-slow: .9s;
  --motion-image: 1.35s;
  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --ease-snap: cubic-bezier(.16, 1, .3, 1);
}

body.fp-top-page,
body.wp-subpage {
  margin: 0;
  background: var(--paper);
}

body.site-menu-open {
  overflow: hidden;
}

.wp-site {
  min-width: 0;
  overflow: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

.wp-site,
.wp-site *,
.wp-site *::before,
.wp-site *::after {
  box-sizing: border-box;
}

.wp-site * {
  margin: 0;
  padding: 0;
}

.wp-site a {
  color: inherit;
}

.wp-site .site-skip-link {
  position: fixed;
  z-index: 1100;
  top: 8px;
  left: 8px;
  padding: 8px 14px;
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform .2s;
}

.wp-site .site-skip-link:focus {
  transform: translateY(0);
}

.wp-site img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.wp-site button {
  border: 0;
  color: inherit;
  font: inherit;
}

.wp-site .gr {
  filter: contrast(1.03) saturate(.92) brightness(1.02);
}

.wp-site .wrap {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.wp-site .idx {
  color: var(--accent);
  font-family: var(--en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
}

.wp-site .lbl {
  color: var(--ink2);
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.wp-site .jlbl {
  margin-left: 14px;
  color: var(--muted2);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .3em;
}

.wp-site .lbl--vertical {
  display: inline-block;
  margin-top: 20px;
  letter-spacing: .3em;
  writing-mode: vertical-rl;
}

.wp-site .section-kicker,
.wp-site .feature-kicker {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.wp-site .feature-kicker {
  gap: 12px;
}

/* Reveal */
.wp-site .reveal {
  --reveal-x: 0;
  --reveal-y: 24px;
  --reveal-scale: 1;
  --reveal-delay: 0s;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition: opacity var(--motion-slow) var(--ease-out), transform var(--motion-slow) var(--ease-out);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}

.wp-site .reveal--left {
  --reveal-x: -28px;
  --reveal-y: 0;
}

.wp-site .reveal--right {
  --reveal-x: 28px;
  --reveal-y: 0;
}

.wp-site .reveal--image {
  --reveal-y: 18px;
  --reveal-scale: .985;
}

.wp-site .reveal.in {
  --reveal-x: 0;
  --reveal-y: 0;
  --reveal-scale: 1;
  opacity: 1;
}

.wp-site .reveal.d1 { --reveal-delay: .08s; }
.wp-site .reveal.d2 { --reveal-delay: .16s; }
.wp-site .reveal.d3 { --reveal-delay: .24s; }
.wp-site .reveal.d4 { --reveal-delay: .32s; }
.wp-site .reveal.d5 { --reveal-delay: .40s; }
.wp-site .reveal.d6 { --reveal-delay: .48s; }

.wp-site .reveal .gr,
.wp-site .reveal.gr {
  transform: scale(1.035);
  transition: transform var(--motion-image) var(--ease-out), filter var(--motion-image) var(--ease-out);
  transition-delay: var(--reveal-delay);
}

.wp-site .reveal.in .gr,
.wp-site .reveal.in.gr {
  transform: scale(1);
}

/* Header */
.wp-site .site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 240, .9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background var(--motion-fast), box-shadow var(--motion-fast);
}

.wp-site.is-scrolled .site-header {
  background: rgba(247, 245, 240, .96);
  box-shadow: 0 14px 36px rgba(13, 31, 53, .08);
}

body.admin-bar .wp-site .site-header {
  top: 32px;
}

.wp-site .site-header .wrap {
  display: flex;
  height: var(--site-header-height);
  align-items: center;
  justify-content: space-between;
}

.wp-site .logo {
  display: inline-flex;
  flex: none;
  max-width: min(42vw, 430px);
}

.wp-site .wplogo {
  display: block;
  width: auto;
  max-width: 100%;
  height: var(--site-logo-height);
  object-fit: contain;
}

.wp-site .global-nav,
.wp-site .global-nav__list {
  display: flex;
  align-items: center;
}

.wp-site .global-nav {
  gap: 24px;
}

.wp-site .global-nav__list {
  gap: 34px;
  list-style: none;
}

.wp-site .global-nav a {
  color: var(--ink);
  font-family: var(--en);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
}

.wp-site .global-nav a:hover,
.wp-site .global-nav a:focus-visible,
.wp-site .global-nav .current-menu-item > a,
.wp-site .global-nav .current_page_item > a,
.wp-site .global-nav .current-menu-ancestor > a,
.wp-site .global-nav .current_page_ancestor > a {
  color: var(--accent);
}

.wp-site .global-nav__contact {
  display: inline-flex;
  min-height: 38px;
  padding: 7px 17px;
  align-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.wp-site .global-nav__contact:hover,
.wp-site .global-nav__contact:focus-visible,
.wp-site .global-nav__contact.is-current {
  background: var(--accent);
  color: #fff;
}

.wp-site .menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  cursor: pointer;
  background: transparent;
}

.wp-site .menu-toggle span {
  position: relative;
  display: block;
  width: 25px;
  height: 1px;
  margin: 0 auto;
  background: var(--ink);
  transition: background .2s;
}

.wp-site .menu-toggle span::before,
.wp-site .menu-toggle span::after {
  position: absolute;
  left: 0;
  width: 25px;
  height: 1px;
  content: "";
  background: var(--ink);
  transition: transform .25s, top .25s;
}

.wp-site .menu-toggle span::before { top: -7px; }
.wp-site .menu-toggle span::after { top: 7px; }
.wp-site .menu-toggle[aria-expanded="true"] span { background: transparent; }
.wp-site .menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.wp-site .menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Buttons and cards */
.wp-site .btn {
  display: inline-flex;
  padding: 16px 34px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  font-family: var(--en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-decoration: none;
  transition: background var(--motion-fast), border-color var(--motion-fast), color var(--motion-fast), transform var(--motion-fast);
}

.wp-site .btn.fill {
  background: var(--accent);
  color: var(--dark);
}

.wp-site .btn.fill:hover,
.wp-site .btn.fill:focus-visible {
  background: var(--navy);
  color: #fff;
}

.wp-site .btn.line {
  border: 1px solid currentColor;
  background: transparent;
}

.wp-site .btn.line:hover,
.wp-site .btn.line:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.wp-site .card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper2);
}

.wp-site .card__body {
  padding: 28px;
}

.wp-site .motion-card {
  transition: transform var(--motion-mid) var(--ease-snap), box-shadow var(--motion-mid) var(--ease-snap), border-color var(--motion-fast);
}

.wp-site .motion-image {
  overflow: hidden;
}

.wp-site .motion-image img,
.wp-site .motion-card img {
  transition: transform var(--motion-image) var(--ease-out);
  transform-origin: center;
}

@media (hover: hover) and (pointer: fine) {
  .wp-site .btn:hover,
  .wp-site .btn:focus-visible {
    transform: translateY(-2px);
  }

  .wp-site .motion-card:hover,
  .wp-site .motion-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px -54px rgba(13, 31, 53, .46);
  }

  .wp-site .motion-image:hover img,
  .wp-site .motion-card:hover img,
  .wp-site .motion-card:focus-within img {
    transform: scale(1.045);
  }
}

/* Subpage hero */
.wp-site--subpage .site-main {
  padding-top: var(--site-header-height);
}

.wp-site .page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 32px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.wp-site .page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: min(32vw, 440px);
  height: 3px;
  content: "";
  background: var(--accent);
}

.wp-site .page-hero__en,
.wp-site .site-cta__en {
  color: var(--accent);
  font-family: var(--en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .34em;
}

.wp-site .page-hero__title {
  margin-top: 14px;
  font-family: var(--min);
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.25;
}

.wp-site .page-hero__lead {
  max-width: 680px;
  margin-top: 22px;
  color: var(--ink2);
  font-size: 15px;
}

.wp-site .page-hero__breadcrumb {
  margin-top: 56px;
  color: var(--muted2);
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: .08em;
}

.wp-site .simple-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.wp-site .simple-breadcrumb li + li::before {
  margin-right: 10px;
  content: "/";
  color: var(--accent);
}

.wp-site .simple-breadcrumb a {
  text-decoration: none;
}

/* Generic page content / prose */
.wp-site .page-content {
  padding: 100px 0 120px;
  background: #fff;
}

.wp-site .page-content__inner {
  max-width: 1000px;
}

.wp-site .prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 16px;
  line-height: 2;
}

.wp-site .prose > * + * {
  margin-top: 1.6em;
}

.wp-site .prose h2,
.wp-site .prose h3,
.wp-site .prose h4 {
  color: var(--ink);
  font-family: var(--min);
  font-weight: 700;
  line-height: 1.5;
}

.wp-site .prose h2 {
  margin-top: 2.8em;
  padding: 0 0 14px 20px;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  font-size: clamp(26px, 3.4vw, 38px);
}

.wp-site .prose h3 {
  margin-top: 2.4em;
  font-size: clamp(22px, 2.8vw, 30px);
}

.wp-site .prose h4 {
  margin-top: 2em;
  font-size: 20px;
}

.wp-site .prose a {
  color: var(--navy);
  text-decoration-color: var(--accent);
  text-underline-offset: .2em;
}

.wp-site .prose ul,
.wp-site .prose ol {
  padding-left: 1.5em;
}

.wp-site .prose li + li {
  margin-top: .45em;
}

.wp-site .prose blockquote {
  padding: 28px 32px;
  border-left: 3px solid var(--accent);
  background: var(--paper);
  color: var(--ink2);
  font-family: var(--min);
  font-size: 18px;
}

.wp-site .prose img {
  height: auto;
  margin: 44px auto;
  object-fit: contain;
}

.wp-site .prose figcaption {
  margin-top: 10px;
  color: var(--muted2);
  font-size: 12px;
  text-align: center;
}

.wp-site .prose hr {
  margin: 56px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.wp-site .prose table {
  width: 100%;
  border-collapse: collapse;
}

.wp-site .prose th,
.wp-site .prose td {
  padding: 14px 16px;
  border: 1px solid var(--line);
  text-align: left;
}

.wp-site .prose th {
  background: var(--paper);
  font-weight: 700;
}

/* CTA */
.wp-site .site-cta {
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

.wp-site .site-cta--paper { background: var(--paper); color: var(--ink); }
.wp-site .site-cta--dark { background: var(--dark); color: var(--paper); }
.wp-site .site-cta--gold { background: var(--accent); color: #1a1408; }

.wp-site .site-cta--dark .site-cta__en { color: #b9af9e; }
.wp-site .site-cta--gold .site-cta__en { color: #1a1408; }
.wp-site .site-cta--gold .btn.fill { background: var(--navy); color: #fff; }
.wp-site .site-cta--gold .btn.fill:hover,
.wp-site .site-cta--gold .btn.fill:focus-visible { background: var(--dark); }

.wp-site .site-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.wp-site .site-cta__text {
  margin-top: 10px;
  font-family: var(--min);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.45;
}

/* Footer */
.wp-site .site-footer {
  padding: 120px 0 50px;
  background: var(--dark);
  color: #9fb0c6;
}

.wp-site .site-footer .lbl {
  color: #9fb0c6;
}

.wp-site .cc {
  display: grid;
  margin: 50px 0 60px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #28425f;
}

.wp-site .cc a {
  padding: 40px;
  border-right: 1px solid #28425f;
  color: var(--paper);
  text-decoration: none;
  transition: background .25s;
}

.wp-site .cc a:last-child { border-right: 0; }
.wp-site .cc a:hover,
.wp-site .cc a:focus-visible { background: #14263c; }

.wp-site .cc h4 {
  margin-bottom: 10px;
  font-family: var(--min);
  font-size: 22px;
}

.wp-site .cc small {
  color: var(--accent);
  font-family: var(--en);
  font-size: 11.5px;
  letter-spacing: .14em;
}

.wp-site .footer-main {
  display: grid;
  margin: 40px 0 46px;
  grid-template-columns: minmax(280px, .8fr) 1.2fr;
  gap: 80px;
}

.wp-site .footer-brand > a {
  display: inline-flex;
}

.wp-site .wplogo-w {
  display: block;
  width: auto;
  max-width: 100%;
  height: var(--site-logo-height);
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.wp-site .footer-company {
  margin-top: 24px;
  color: #7f90a6;
  font-size: 12px;
  line-height: 1.9;
}

.wp-site .footer-company a {
  text-decoration: none;
}

.wp-site .footer-social {
  margin-top: 16px;
}

.wp-site .footer-social__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 245, 240, .34);
  border-radius: 999px;
  color: var(--paper);
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}

.wp-site .footer-social__icon svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.wp-site .footer-social__icon:hover,
.wp-site .footer-social__icon:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #1a1408;
  transform: translateY(-2px);
}

.wp-site .footer-nav__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  list-style: none;
}

.wp-site .footer-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #28425f;
  color: var(--paper);
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: .12em;
  text-decoration: none;
  transition: color .2s;
}

.wp-site .footer-nav a:hover,
.wp-site .footer-nav a:focus-visible,
.wp-site .footer-nav .current-menu-item > a,
.wp-site .footer-nav .current_page_item > a,
.wp-site .footer-nav .current-menu-ancestor > a,
.wp-site .footer-nav .current_page_ancestor > a {
  color: var(--accent);
}

.wp-site .fbar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  color: #6a7a8f;
  font-family: var(--en);
  font-size: 11.5px;
  letter-spacing: .1em;
}

@media (max-width: 900px) {
  :root {
    --site-logo-height: clamp(38px, 7vw, 56px);
    --site-header-padding-y: 14px;
  }

  .wp-site .wrap { padding: 0 24px; }

  .wp-site .menu-toggle {
    display: block;
    flex: none;
  }

  .wp-site .global-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    border-bottom: 0 solid var(--line);
    background: rgba(247, 245, 240, .98);
    opacity: 0;
    visibility: hidden;
    transition: max-height .35s, opacity .25s, visibility .25s, border-width .25s;
  }

  .wp-site .global-nav.is-open {
    max-height: calc(100svh - var(--site-header-height));
    overflow-y: auto;
    border-bottom-width: 1px;
    opacity: 1;
    visibility: visible;
  }

  .wp-site .global-nav__list {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .wp-site .global-nav a {
    display: flex;
    min-height: 0;
    padding: 18px 24px;
    border: 0;
    border-top: 1px solid var(--line);
    font-size: 14px;
  }

  .wp-site .global-nav__contact {
    background: var(--accent);
    color: #fff;
  }

  .wp-site .page-hero {
    padding-top: 64px;
  }

  .wp-site .page-content {
    padding: 76px 0 90px;
  }

  .wp-site .site-cta__inner,
  .wp-site .footer-main {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .wp-site .site-cta__inner {
    display: flex;
  }

  .wp-site .cc {
    grid-template-columns: 1fr;
  }

  .wp-site .cc a {
    border-right: 0;
    border-bottom: 1px solid #28425f;
  }

  .wp-site .cc a:last-child { border-bottom: 0; }

  .wp-site .footer-main {
    display: grid;
    gap: 46px;
  }
}

@media (max-width: 480px) {
  :root {
    --site-logo-height: 36px;
    --site-header-padding-y: 12px;
  }

  .wp-site .section-kicker { align-items: flex-start; flex-wrap: wrap; gap: 8px; }
  .wp-site .jlbl { margin-left: 0; }
  .wp-site .btn { width: 100%; text-align: center; }
  .wp-site .footer-nav__list { grid-template-columns: 1fr; }
}

@media (max-width: 782px) {
  body.admin-bar .wp-site .site-header { top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  .wp-site .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .wp-site .reveal .gr,
  .wp-site .reveal.gr,
  .wp-site .motion-card,
  .wp-site .motion-card img,
  .wp-site .motion-image img,
  .wp-site .btn,
  .wp-site .site-header {
    transform: none !important;
    transition: none !important;
  }

  .wp-site *,
  .wp-site *::before,
  .wp-site *::after {
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
