/* ACTARION — homepage v1 */
:root{
  --bg:#080806;
  --bg2:#0d0b08;
  --gold:#c99a3d;
  --gold-light:#e6c26c;
  --gold-dim:#74551f;
  --line:#8b651f;
  --text:#eee7d9;
  --muted:#b29b6e;
  --red:#5d0907;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:#030302;
  color:var(--text);
  font-family:"Cormorant Garamond", Georgia, serif;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 70% 34%, rgba(116,12,8,.16), transparent 28%),
    radial-gradient(circle at 30% 45%, rgba(112,78,20,.035), transparent 34%),
    linear-gradient(rgba(255,255,255,.009) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.007) 1px, transparent 1px);
  background-size:auto,auto,48px 48px,48px 48px;
  opacity:.8;
}

.site-shell{
  width:min(1536px, calc(100% - 10px));
  min-height:100vh;
  margin:5px auto;
  position:relative;
  overflow:hidden;
  border:1px solid var(--gold-dim);
  background:
    radial-gradient(circle at 72% 30%, rgba(90,8,4,.34), transparent 30%),
    radial-gradient(circle at 21% 34%, rgba(32,24,12,.12), transparent 30%),
    linear-gradient(180deg,#070706 0%,#090907 72%,#060605 100%);
  box-shadow:0 0 0 1px rgba(207,159,55,.1) inset;
}

.site-shell::before,
.site-shell::after{
  content:"✣";
  color:#8a671f;
  position:absolute;
  font-size:22px;
  line-height:1;
  z-index:10;
}
.site-shell::before{top:6px;left:6px}
.site-shell::after{bottom:6px;right:6px;transform:rotate(180deg)}

.topbar{
  height:86px;
  border-bottom:1px solid var(--line);
  display:grid;
  grid-template-columns:115px 1fr 245px;
  align-items:center;
  gap:24px;
  padding:0 68px 0 58px;
  position:relative;
  z-index:5;
  background:rgba(3,3,3,.74);
  backdrop-filter:blur(3px);
}

.brand img{width:55px;height:68px;object-fit:cover;object-position:center;display:block}

.desktop-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  white-space:nowrap;
}
.desktop-nav a,
.enter-top,
.royal-button,
.small-button{
  font-family:"Cinzel", Georgia, serif;
  text-transform:uppercase;
  text-decoration:none;
  color:#e8d8b6;
  letter-spacing:.025em;
}
.desktop-nav a{font-size:15px;transition:.2s}
.desktop-nav a:hover{color:var(--gold-light)}
.desktop-nav span{width:1px;height:15px;background:#4b3815}

.enter-top{
  border:1px solid var(--gold-dim);
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:15px;
  color:var(--gold-light);
  position:relative;
}
.enter-top b{
  position:absolute;
  top:-18px;
  font-size:18px;
  font-weight:400;
  color:#d6aa4a;
}

.menu-button{
  display:none;
  border:1px solid var(--gold-dim);
  color:var(--gold-light);
  background:transparent;
  font-size:23px;
  width:44px;height:40px;
}

.hero{
  min-height:610px;
  display:grid;
  grid-template-columns:48% 52%;
  align-items:center;
  position:relative;
  border-bottom:1px solid var(--line);
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.25;
  background:
    radial-gradient(circle at 26% 45%, rgba(203,159,67,.06), transparent 28%),
    repeating-linear-gradient(45deg, transparent 0 35px, rgba(177,124,30,.018) 36px 37px);
}

.hero-copy{
  text-align:center;
  padding:70px 22px 55px 60px;
  position:relative;
  z-index:2;
}
.eyebrow{
  font-family:"Cinzel", Georgia, serif;
  text-transform:uppercase;
  font-size:42px;
  letter-spacing:.04em;
  color:var(--gold-light);
}
h1{
  margin:0;
  font-family:"Cinzel", Georgia, serif;
  text-transform:uppercase;
  font-weight:500;
  font-size:82px;
  line-height:1.08;
  letter-spacing:.035em;
  color:transparent;
  background:linear-gradient(#f1d991,#a66f21 75%,#e2bd66);
  -webkit-background-clip:text;
  background-clip:text;
  text-shadow:0 1px 18px rgba(214,161,52,.08);
}

.ornament,
.small-rule{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  color:#d1a347;
}
.ornament{margin:10px auto 20px;max-width:360px}
.ornament span{height:1px;background:linear-gradient(90deg,transparent,#79551b);flex:1}
.ornament span:last-child{background:linear-gradient(90deg,#79551b,transparent)}
.ornament i,.small-rule i{font-style:normal;font-size:13px}

.hero h2{
  font-family:"Cinzel", Georgia, serif;
  text-transform:uppercase;
  font-weight:400;
  letter-spacing:.12em;
  font-size:20px;
  margin:0 0 15px;
  color:#efe8dc;
}
.hero-quote{
  margin:0 0 30px;
  font-style:italic;
  font-size:25px;
  line-height:1.22;
  color:#d6b45e;
}
.royal-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:330px;
  height:69px;
  border:1px solid #a70d0d;
  box-shadow:0 0 0 4px rgba(112,76,21,.42) inset;
  color:#e6c66e;
  font-size:20px;
  background:linear-gradient(180deg,rgba(112,8,6,.48),rgba(42,2,2,.45));
  transition:.2s;
}
.royal-button:hover{filter:brightness(1.14);transform:translateY(-1px)}

.crest-wrap{
  align-self:stretch;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  position:relative;
  z-index:1;
}
.crest-wrap img{
  width:min(100%, 700px);
  max-height:610px;
  object-fit:contain;
  mix-blend-mode:screen;
  filter:saturate(1.02) contrast(1.03);
}

.lower-panel{
  margin:0 30px;
  min-height:254px;
  border:1px solid var(--line);
  border-top:none;
  display:grid;
  grid-template-columns:48% 52%;
  position:relative;
}

.crown-card{
  display:grid;
  grid-template-columns:41% 59%;
  align-items:center;
  padding:16px 34px 16px 20px;
  border-right:1px solid #6a4b18;
}
.coin-wrap{text-align:center}
.coin-wrap img{
  width:min(100%,245px);
  display:block;
  margin:auto;
  mix-blend-mode:screen;
}
.crown-copy h3,
.principle h3{
  font-family:"Cinzel", Georgia, serif;
  text-transform:uppercase;
  font-weight:500;
  color:#d7ab54;
}
.crown-copy h3{
  margin:0;
  font-size:18px;
}
.small-rule{width:275px;max-width:100%;margin:5px 0 14px}
.small-rule span{height:1px;background:#7c591d;flex:1}
.crown-copy p{
  margin:0 0 18px;
  font-family:"Cinzel", Georgia, serif;
  text-transform:uppercase;
  font-size:21px;
  line-height:1.35;
  color:#eee7d9;
}
.small-button{
  display:inline-flex;
  height:44px;
  align-items:center;
  padding:0 20px;
  border:1px solid var(--gold-dim);
  color:#d9b45c;
  font-size:13px;
}

.principles{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.principle{
  text-align:center;
  padding:16px 10px 14px;
  border-left:1px solid #5d4318;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.principle:first-child{border-left:none}
.icon{
  height:70px;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:4px;
}
.icon img{
  width:92px;
  height:72px;
  object-fit:cover;
  object-position:center;
  mix-blend-mode:screen;
}
.principle h3{
  margin:0 0 14px;
  font-size:13.5px;
  line-height:1.6;
}
.principle p{
  margin:auto 0 0;
  font-size:15px;
  line-height:1.65;
  color:#b49350;
}

.footer-motto{
  height:68px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:18px;
  padding:0 70px;
}
.footer-motto span{height:1px;background:linear-gradient(90deg,transparent,#7b591d)}
.footer-motto span:last-child{background:linear-gradient(90deg,#7b591d,transparent)}
.footer-motto p{
  font-family:"Cinzel", Georgia, serif;
  text-transform:uppercase;
  color:#b98c38;
  font-size:14px;
  letter-spacing:.05em;
  margin:0;
}

.mobile-menu{
  position:fixed;
  inset:86px 12px auto 12px;
  z-index:100;
  border:1px solid var(--gold-dim);
  background:#090806f4;
  padding:16px;
}
.mobile-menu a{
  display:block;
  font-family:"Cinzel",serif;
  text-transform:uppercase;
  color:#e3c574;
  text-decoration:none;
  padding:13px 8px;
  border-bottom:1px solid #3a2b12;
}
.anchor-fix{scroll-margin-top:90px}

@media (max-width:1200px){
  .topbar{grid-template-columns:70px 1fr 190px;padding:0 30px;gap:14px}
  .desktop-nav{gap:13px}
  .desktop-nav a{font-size:12px}
  .desktop-nav span{display:none}
  .hero{grid-template-columns:49% 51%;min-height:560px}
  .eyebrow{font-size:32px}
  h1{font-size:66px}
  .hero h2{font-size:16px}
  .hero-quote{font-size:21px}
  .crest-wrap img{max-height:555px}
  .lower-panel{grid-template-columns:45% 55%}
  .crown-card{grid-template-columns:40% 60%}
  .crown-copy p{font-size:17px}
  .principle h3{font-size:12px}
  .principle p{font-size:13px}
}

@media (max-width:900px){
  .site-shell{width:100%;margin:0;border-left:none;border-right:none}
  .topbar{height:72px;grid-template-columns:64px 1fr 44px;padding:0 18px}
  .brand img{width:48px;height:58px}
  .desktop-nav,.enter-top{display:none}
  .menu-button{display:block;justify-self:end}
  .hero{grid-template-columns:1fr;min-height:auto}
  .hero-copy{padding:60px 25px 25px}
  .crest-wrap{height:500px}
  .crest-wrap img{max-height:490px}
  .lower-panel{grid-template-columns:1fr;margin:0 12px}
  .crown-card{border-right:none;border-bottom:1px solid #6a4b18}
  .principles{grid-template-columns:repeat(2,1fr)}
  .principle:nth-child(3){border-left:none;border-top:1px solid #5d4318}
  .principle:nth-child(4){border-top:1px solid #5d4318}
  .footer-motto{padding:0 20px}
}

@media (max-width:600px){
  .hero-copy{padding-top:46px}
  .eyebrow{font-size:25px}
  h1{font-size:48px}
  .hero h2{font-size:13px;letter-spacing:.08em}
  .hero-quote{font-size:19px}
  .royal-button{min-width:0;width:92%;height:58px;font-size:16px}
  .crest-wrap{height:390px}
  .crest-wrap img{width:110%;max-width:none}
  .crown-card{grid-template-columns:1fr;text-align:center;padding:20px}
  .small-rule{margin:8px auto 14px}
  .coin-wrap img{width:230px}
  .principles{grid-template-columns:1fr}
  .principle,.principle:nth-child(3),.principle:nth-child(4){
    border-left:none;
    border-top:1px solid #5d4318;
    padding:20px 10px;
  }
  .principle:first-child{border-top:none}
  .footer-motto p{text-align:center;font-size:11px}
}
/* ACTARION FIRST CROWN — ROTATING COIN */

.actarion-coin {
    width: 245px;
    height: 245px;
    perspective: 1200px;
}

.actarion-coin-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: actarionCoinTurn 10s ease-in-out infinite;
}

.actarion-coin-face {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.actarion-coin-face img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.actarion-coin-front {
    transform: rotateY(0deg);
}

.actarion-coin-back {
    transform: rotateY(180deg);
}

@keyframes actarionCoinTurn {
    0%, 35% {
        transform: rotateY(0deg);
    }

    50%, 85% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}
.lineage-button {
    height: auto;
    min-height: 44px;
    padding: 7px 10px;
    box-sizing: border-box;
    line-height: 1.25;
    white-space: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
}
#history p {
    margin: auto 0 12px;
}

#history .lineage-button {
    min-height: 44px;
    padding: 6px 12px;
    line-height: 1.2;
    font-size: 11px;
    flex-shrink: 0;
}
/* ACTARION — ROYAL HOUSE */

.royal-house-section{
    display:grid;
    grid-template-columns:minmax(300px, 440px) 1fr;
    gap:70px;
    align-items:center;
    padding:90px 7%;
    border-top:1px solid #5d4318;
    background:
        radial-gradient(circle at 25% 45%, rgba(201,154,61,.06), transparent 38%),
        #080806;
}

.royal-house-portrait{
    position:relative;
    padding:10px;
    border:1px solid var(--gold-dim);
}

.royal-house-portrait::before{
    content:"";
    position:absolute;
    inset:5px;
    border:1px solid rgba(201,154,61,.35);
    pointer-events:none;
}

.royal-house-portrait img{
    display:block;
    width:100%;
    height:auto;
}

.royal-house-copy{
    max-width:680px;
}

.royal-house-eyebrow{
    font-family:"Cinzel", serif;
    text-transform:uppercase;
    letter-spacing:.28em;
    font-size:12px;
    color:var(--gold);
    margin-bottom:10px;
}

.royal-house-copy h2{
    margin:0;
    font-family:"Cinzel", serif;
    font-size:42px;
    font-weight:500;
    color:var(--text);
}

.royal-house-copy h3{
    margin:26px 0 8px;
    font-family:"Cinzel", serif;
    font-size:23px;
    font-weight:500;
    color:var(--gold-light);
}

.founder-title{
    font-family:"Cormorant Garamond", serif;
    font-style:italic;
    font-size:19px;
    color:var(--muted);
    margin-bottom:24px;
}

.royal-house-copy p{
    font-family:"Cormorant Garamond", serif;
    font-size:19px;
    line-height:1.7;
    color:#c5b28a;
    margin:0 0 22px;
}

.founder-quote{
    font-style:italic;
    color:#b49350 !important;
}

.royal-house-copy .small-button{
    margin-top:8px;
}

@media (max-width: 900px){

    .royal-house-section{
        grid-template-columns:1fr;
        gap:40px;
        padding:60px 7%;
    }

    .royal-house-portrait{
        max-width:420px;
        margin:0 auto;
    }

    .royal-house-copy{
        text-align:center;
        margin:0 auto;
    }

    .royal-house-copy h2{
        font-size:34px;
    }
}
/* =========================================================
   THE KINGDOM — DROPDOWN
   ========================================================= */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.desktop-nav .nav-dropdown-title {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.dropdown-arrow {
  font-size: 10px;
  color: #b78a2d;
  transition: transform 0.25s ease;
}

/* Выпадающее окно */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -20px;

  width: 355px;
  padding: 9px 0;

  background:
    linear-gradient(
      135deg,
      rgba(20, 15, 8, 0.98),
      rgba(5, 5, 4, 0.99)
    );

  border: 1px solid rgba(183, 138, 45, 0.65);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.75),
    inset 0 0 25px rgba(183, 138, 45, 0.035);

  z-index: 1000;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);

  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

/* Золотая линия сверху */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 18px;
  right: 18px;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    #c89b3c,
    transparent
  );
}

/* Пункты */
.desktop-nav .nav-dropdown-menu a {
  display: block;

  padding: 11px 22px;

  text-decoration: none;
  text-align: left;

  border-bottom: 1px solid rgba(183, 138, 45, 0.13);

  transition:
    background 0.2s ease,
    padding-left 0.2s ease;
}

.desktop-nav .nav-dropdown-menu a:last-child {
  border-bottom: none;
}

.desktop-nav .nav-dropdown-menu strong {
  display: block;

  font-family: "Cinzel", serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;

  color: #d7b55b;
}

.desktop-nav .nav-dropdown-menu small {
  display: block;

  margin-top: 3px;

  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0;

  color: rgba(232, 226, 210, 0.62);
}

/* Наведение */
.desktop-nav .nav-dropdown-menu a:hover {
  background: rgba(151, 25, 20, 0.13);
  padding-left: 27px;
}

.desktop-nav .nav-dropdown-menu a:hover strong {
  color: #f0cf73;
}

/* Открытие */
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Мостик между меню и dropdown —
   чтобы меню не закрывалось при движении мыши */
.nav-dropdown-menu::after {
  content: "";
  position: absolute;
  height: 22px;
  left: 0;
  right: 0;
  top: -22px;
}
/* =========================================================
   ACTARION — DOCUMENT LANGUAGE SELECTOR
   ========================================================= */

.document-language-modal{
  position:fixed;
  inset:0;
  z-index:5000;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:24px;

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transition:
    opacity .28s ease,
    visibility .28s ease;
}

.document-language-modal.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}


/* DARK BACKDROP */

.document-language-backdrop{
  position:absolute;
  inset:0;

  background:
    radial-gradient(
      circle at center,
      rgba(88,9,7,.16),
      transparent 42%
    ),
    rgba(0,0,0,.82);

  backdrop-filter:blur(5px);
}


/* DIALOG */

.document-language-dialog{
  position:relative;
  z-index:2;

  width:min(520px, 100%);

  padding:40px 44px 34px;

  text-align:center;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(126,19,12,.19),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      #100d09 0%,
      #080706 65%,
      #050504 100%
    );

  border:1px solid rgba(201,154,61,.72);

  box-shadow:
    0 28px 90px rgba(0,0,0,.85),
    0 0 0 1px rgba(201,154,61,.08) inset,
    0 0 50px rgba(94,11,7,.15);

  transform:translateY(14px) scale(.985);

  transition:transform .3s ease;
}

.document-language-modal.is-open
.document-language-dialog{
  transform:translateY(0) scale(1);
}


/* INNER GOLD FRAME */

.document-language-dialog::before{
  content:"";

  position:absolute;
  inset:7px;

  pointer-events:none;

  border:1px solid rgba(201,154,61,.16);
}


/* TOP GOLD LINE */

.document-language-dialog::after{
  content:"";

  position:absolute;
  top:7px;
  left:22%;
  right:22%;

  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold-light),
      transparent
    );

  opacity:.7;
}


/* CLOSE */

.document-language-close{
  position:absolute;
  right:13px;
  top:10px;

  z-index:3;

  width:34px;
  height:34px;

  border:0;
  background:transparent;

  color:#8f733c;

  font-family:Georgia, serif;
  font-size:27px;
  font-weight:300;

  cursor:pointer;

  transition:
    color .2s ease,
    transform .2s ease;
}

.document-language-close:hover{
  color:var(--gold-light);
  transform:rotate(90deg);
}


/* ACTARION MARK */

.document-language-mark{
  height:67px;

  display:flex;
  justify-content:center;
  align-items:center;

  margin-bottom:12px;
}

.document-language-mark img{
  display:block;

  width:52px;
  height:65px;

  object-fit:cover;
  object-position:center;
}


/* EYEBROW */

.document-language-eyebrow{
  margin-bottom:9px;

  font-family:"Cinzel", Georgia, serif;

  font-size:10px;
  font-weight:500;

  letter-spacing:.25em;
  text-transform:uppercase;

  color:#9c7831;
}


/* TITLE */

.document-language-dialog h2{
  margin:0;

  font-family:"Cinzel", Georgia, serif;

  font-size:25px;
  font-weight:500;

  letter-spacing:.08em;
  text-transform:uppercase;

  color:#ead08a;
}


/* ORNAMENT */

.document-language-rule{
  width:270px;
  max-width:80%;

  margin:13px auto 17px;

  display:flex;
  align-items:center;

  gap:10px;

  color:#c99a3d;
}

.document-language-rule span{
  flex:1;
  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #74551f
    );
}

.document-language-rule span:last-child{
  background:
    linear-gradient(
      90deg,
      #74551f,
      transparent
    );
}

.document-language-rule i{
  font-style:normal;
  font-size:10px;
}


/* DOCUMENT NAME */

.document-language-name{
  min-height:22px;

  margin-bottom:21px;

  font-family:"Cormorant Garamond", Georgia, serif;

  font-size:19px;
  font-style:italic;

  color:#bca676;
}


/* OPTIONS */

.document-language-options{
  display:grid;
  grid-template-columns:1fr;
  gap:11px;
}


/* LANGUAGE BUTTON */

.document-language-option{
  position:relative;

  display:flex;
  flex-direction:column;

  justify-content:center;
  align-items:center;

  min-height:72px;

  padding:12px 18px;

  border:1px solid rgba(116,85,31,.85);

  text-decoration:none;

  background:
    linear-gradient(
      180deg,
      rgba(36,28,15,.66),
      rgba(10,9,7,.68)
    );

  transition:
    border-color .22s ease,
    background .22s ease,
    transform .22s ease,
    box-shadow .22s ease;
}

.document-language-option strong{
  font-family:"Cinzel", Georgia, serif;

  font-size:13px;
  font-weight:500;

  letter-spacing:.055em;
  text-transform:uppercase;

  color:#e1be68;
}

.document-language-option small{
  margin-top:5px;

  font-family:"Cormorant Garamond", Georgia, serif;

  font-size:15px;
  font-style:italic;

  color:rgba(238,231,217,.59);
}


/* ORIGINAL — ACTARION */

.document-language-original{
  border-color:rgba(157,25,18,.85);

  background:
    linear-gradient(
      180deg,
      rgba(100,11,8,.32),
      rgba(31,5,4,.32)
    );

  box-shadow:
    inset 0 0 22px rgba(116,8,5,.10);
}

.document-language-original::before{
  content:"ORIGINAL";

  position:absolute;
  top:-7px;

  padding:1px 8px;

  background:#0b0907;

  font-family:"Cinzel", Georgia, serif;
  font-size:8px;
  letter-spacing:.16em;

  color:#b58a34;
}


/* HOVER */

.document-language-option:hover{
  transform:translateY(-1px);

  border-color:var(--gold-light);

  background:
    linear-gradient(
      180deg,
      rgba(91,65,24,.35),
      rgba(20,15,8,.65)
    );

  box-shadow:
    0 8px 25px rgba(0,0,0,.35),
    inset 0 0 25px rgba(201,154,61,.05);
}

.document-language-original:hover{
  background:
    linear-gradient(
      180deg,
      rgba(112,13,9,.42),
      rgba(31,5,4,.55)
    );
}


/* LEGAL NOTE */

.document-language-note{
  max-width:390px;

  margin:22px auto 0;

  font-family:"Cormorant Garamond", Georgia, serif;

  font-size:13px;
  line-height:1.4;
  font-style:italic;

  color:rgba(178,155,110,.62);
}


/* LOCK PAGE WHILE MODAL IS OPEN */

body.document-modal-open{
  overflow:hidden;
}


/* MOBILE */

@media (max-width:600px){

  .document-language-modal{
    padding:15px;
  }

  .document-language-dialog{
    padding:34px 22px 27px;
  }

  .document-language-dialog h2{
    font-size:21px;
  }

  .document-language-name{
    font-size:17px;
  }

  .document-language-option{
    min-height:68px;
  }

  .document-language-option strong{
    font-size:11px;
  }

}
/* =========================================================
   ACTARION — GATES CLOSED MODAL
   ========================================================= */

.actarion-gates-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.actarion-gates-modal.is-open {
  display: flex;
}

.actarion-gates-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(5px);
}

.actarion-gates-dialog {
  position: relative;
  z-index: 2;

  width: min(520px, calc(100vw - 40px));
  padding: 42px 44px 38px;

  text-align: center;

  background:
    radial-gradient(circle at top,
      rgba(74, 17, 12, 0.32),
      rgba(10, 8, 6, 0.98) 58%),
    #0b0907;

  border: 1px solid #8e6819;
  box-shadow:
    0 0 0 8px rgba(120, 84, 15, 0.06),
    0 18px 70px rgba(0, 0, 0, 0.75);
}

.actarion-gates-dialog::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(161, 119, 32, 0.32);
  pointer-events: none;
}

.actarion-gates-close {
  position: absolute;
  top: 14px;
  right: 17px;

  border: none;
  background: transparent;

  color: #a77b22;
  font-family: Cinzel, serif;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.actarion-gates-dialog h2 {
  margin: 10px 0 20px;

  font-family: Cinzel, serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 1.7px;
  text-transform: uppercase;

  color: #d5b36a;
}

.actarion-gates-text {
  margin: 22px auto 0;
  max-width: 410px;

  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  line-height: 1.55;

  color: #c6b99c;
}

.actarion-gates-fiat {
  margin-top: 32px;

  font-family: Cinzel, serif;
  font-size: 15px;
  letter-spacing: 4px;

  color: #b88a2f;
}