:root {
  --bg-dark: #2a1f19;
  --bg-light: #f1e9df;
  --panel-dark: #3a2b24;
  --panel-mid: #4b372e;
  --stroke: #6a5246;
  --title-dark: #2a1f19;
  --title-light: #e5c39f;
  --text-dark: #40332d;
  --text-light: #f6eee6;
  --muted: #9f8c7f;
  --accent: #bf8f66;
  --accent-2: #d6b089;

  --card-light: #fffaf5;
  --card-light-strong: #f7efe4;
  --card-light-soft: #fbf6ef;
  --card-line: rgba(106, 82, 70, 0.1);
  --card-line-strong: rgba(106, 82, 70, 0.14);

  --shadow: 0 18px 60px rgba(31, 18, 12, 0.14);
  --shadow-soft: 0 14px 38px rgba(31, 18, 12, 0.08);

  --radius: 28px;
  --font-title: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
  --max: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
}

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

button {
  font: inherit;
}

.container {
  width: min(92vw, var(--max));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 48px 0;
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-dark {
  background: linear-gradient(180deg, #2a1f19 0%, #241b16 100%);
  color: var(--text-light);
}

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

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

.section-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-lead {
  font-size: 1.06rem;
  color: inherit;
  opacity: 0.85;
}

.editorial {
  display: grid;
  gap: 18px;
}

.editorial-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.editorial-left {
  text-align: left;
}

.editorial-left p,
.case-intro p {
  text-align: left;
}

.editorial-spaced {
  margin-bottom: 30px;
}

.two-col-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 34px;
}

p,
li {
  font-size: 1.02rem;
}

.section-light p,
.section-light li {
  color: var(--text-dark);
}

.section-dark p,
.section-dark li {
  color: rgba(246, 238, 230, 0.9);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.46), transparent 36%),
    linear-gradient(180deg, #f4eadf 0%, #efe4d7 100%);
}

.hero-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding-block: 32px;
}

.hero-bg-logo {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(92vw, 1040px);
  opacity: 0.255;
  filter: grayscale(1);
  transform: translate(-50%, -49%);
  z-index: 0;
}

.hero-glass {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(241, 233, 223, 0.6) 0%, rgba(241, 233, 223, 0.84) 54%, rgba(241, 233, 223, 0.95) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  transform: translateY(-73px);
}

.hero-seal {
  width: min(430px, 62vw);
  margin: 36px auto 2px;
  transform: translateY(18px);
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 5.6vw, 5.2rem);
  line-height: 1.02;
  color: var(--title-dark);
  margin-bottom: 6px;
  transform: translateY(-18px);
}

.hero-tagline {
  font-family: var(--font-title);
  font-size: clamp(1.22rem, 2.2vw, 1.9rem);
  color: #5f4337;
  margin-bottom: 14px;
  transform: translateY(-16px);
}

.subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: #4c392f;
  font-size: 1.08rem;
  transform: translateY(-10px);
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin: 18px 0 0;
  transform: translateY(-4px);
}

.hero-scope,
.footer-scope {
  max-width: 780px;
  font-size: 0.84rem;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.hero-scope {
  margin: 18px auto 0;
  color: rgba(95, 67, 55, 0.72);
}

.footer-scope {
  margin: 4px auto 22px;
  color: var(--accent-2);
}

/* CTA */

.cta {
  border: none;
  border-radius: 999px;
  padding: 16px 28px;
  cursor: pointer;
  transition:
    transform 0.28s ease,
    filter 0.28s ease,
    box-shadow 0.28s ease;
}

.cta-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow:
    0 12px 30px rgba(191, 143, 102, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.cta-primary:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
}

/* Footer carousel */

.footer-carousel-track {
  position: relative;
}

.footer-carousel-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  font-family: var(--font-title);
  font-size: 1.12rem;
  color: var(--accent-2);
  white-space: nowrap;
}

.footer-carousel-item.active {
  opacity: 1;
  position: relative;
}

/* Checker */

.checker-accent::before,
.checker-subtle::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.6) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.6) 75%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.6) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.6) 75%);
  background-size: 36px 36px;
  background-position: 0 0, 18px 18px;
}

.checker-accent::before {
  opacity: 0.013;
}

.checker-subtle::before {
  opacity: 0.01;
  mix-blend-mode: multiply;
}

/* Grids */

.feature-list,
.module-grid,
.frame-grid,
.apporte-why-grid {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.feature-list,
.module-grid,
.frame-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.apporte-why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 30px;
}

.rr-grid,
.steps-grid,
.benefits-grid,
.cases-grid.six-grid {
  display: grid;
  gap: 22px;
}

.rr-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-grid,
.benefits-grid,
.cases-grid.six-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Shared card motion */

.feature-item,
.module-card,
.frame-card,
.cred-point,
.benefit-card,
.case-card,
.step-card,
.price-card,
.rr-card,
.apporte-why-card,
.cred-main,
.diploma-panel {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.feature-item:hover,
.module-card:hover,
.frame-card:hover,
.cred-point:hover,
.benefit-card:hover,
.case-card:hover,
.step-card:hover,
.price-card:hover,
.rr-card:hover,
.apporte-why-card:hover,
.cred-main:hover,
.diploma-panel:hover {
  transform: translateY(-3px);
}

/* Dark-section cards */

.feature-item,
.module-card,
.frame-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(108%);
}

/* Light-section cards */

.apporte-why-card,
.step-card,
.price-card,
.cred-main,
.diploma-panel,
.section-light .feature-item,
.section-light .module-card {
  background: var(--card-light);
  border: 1px solid var(--card-line);
  box-shadow: var(--shadow-soft);
}

/* Slightly stronger beige cards for credibility section */

.cred-main,
.diploma-panel,
.cred-point {
  background: var(--card-light-strong);
  border: 1px solid var(--card-line-strong);
}

/* Specific cards */

.apporte-why-card {
  padding: 24px;
  border-radius: 24px;
}

.apporte-why-card h3 {
  color: var(--title-dark);
  margin-bottom: 10px;
}

.apporte-intro,
.apporte-bridge {
  max-width: 860px;
}

.benefit-card,
.case-card {
  padding: 24px;
  border-radius: 24px;
  backdrop-filter: saturate(108%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-card-highlight {
  background: linear-gradient(135deg, rgba(214, 176, 137, 0.18), rgba(255, 255, 255, 0.04));
}

.case-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
}

.case-intro {
  margin-bottom: 26px;
}

.step-card {
  padding: 24px;
  border-radius: 24px;
  backdrop-filter: saturate(108%);
  border: 1px solid var(--card-line);
}

.step-number,
.price-value {
  font-family: var(--font-title);
}

.step-number {
  font-size: 1.65rem;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Shared headings */

.feature-item h3,
.module-card h3,
.frame-card h3,
.cred-point h3,
.benefit-card h3,
.case-card h3,
.step-card h3,
.price-card .price-label,
.diploma-panel h3,
.apporte-why-card h3 {
  font-family: var(--font-title);
  margin-bottom: 8px;
}

/* Constat */

.constat-shell {
  max-width: 1320px;
}

.constat-head {
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.constat-head .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.constat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) 260px;
  gap: 20px 18px;
  align-items: center;
}

.constat-text {
  width: 100%;
  max-width: none;
}

.constat-text p {
  max-width: 1020px;
  font-size: 1.04rem;
  line-height: 1.72;
}

.constat-visual {
  display: grid;
  place-items: center;
}

.constat-knight-wrap {
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
}

.constat-knight {
  font-family: var(--font-title);
  font-size: 11.5rem;
  line-height: 1;
  color: rgba(220, 182, 141, 0.32);
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.14));
  transform: scaleX(1.03);
  user-select: none;
}

.constat-quote {
  max-width: 1100px;
  margin: 38px auto 0;
  text-align: center;
}

/* RR */

.rr-visual {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
}

.rr-visual-copy {
  max-width: 620px;
}

.rr-visual-copy p,
.cred-identity-copy p {
  margin-bottom: 15px;
}

.rr-photo-frame {
  justify-self: end;
  width: min(100%, 420px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.rr-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rr-card {
  padding: 28px 22px;
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(108%);
}

.rr-card-icon {
  font-family: var(--font-title);
  font-size: 2.4rem;
  color: var(--accent-2);
  margin-bottom: 10px;
}

.rr-card h3 {
  font-family: var(--font-title);
  font-size: 1.22rem;
  margin-bottom: 10px;
  color: var(--title-light);
  white-space: nowrap;
}

.rr-title-tight {
  font-size: 1.05rem !important;
}

.rr-quote {
  margin: 28px auto 10px;
}

.rr-roque-inline {
  display: flex;
  justify-content: center;
  margin: 0;
}

.rr-roque-board {
  position: relative;
  width: 300px;
  height: 120px;
  margin-inline: auto;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.035) 75%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.035) 75%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  background-size: 24px 24px, 24px 24px, 100% 100%;
  background-position: 0 0, 12px 12px, 0 0;
}

.roque-piece {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-title);
}

.rr-roque-board .roque-piece {
  font-size: 2.8rem;
  color: var(--accent-2);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.roque-trail {
  position: absolute;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  opacity: 0;
}

.rr-roque-board .roque-trail {
  background: linear-gradient(90deg, rgba(214, 176, 137, 0), rgba(214, 176, 137, 0.72), rgba(214, 176, 137, 0));
}

.rr-roque-board .roque-king {
  left: 92px;
  animation: castleKingRight 5.8s ease-in-out infinite;
}

.rr-roque-board .roque-rook {
  left: 184px;
  animation: castleRookRight 5.8s ease-in-out infinite;
}

.rr-roque-board .roque-trail-king {
  left: 118px;
  width: 42px;
  animation: castleTrailKingRight 5.8s ease-in-out infinite;
}

.rr-roque-board .roque-trail-rook {
  left: 148px;
  width: 58px;
  animation: castleTrailRookRight 5.8s ease-in-out infinite;
}

/* Credibility */

.cred-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 26px;
  align-items: start;
}

.cred-main,
.diploma-panel {
  border-radius: 28px;
}

.cred-main {
  padding: 28px;
}

.cred-identity {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
}

.cred-portrait {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(191, 143, 102, 0.2);
}

.cred-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  align-items: start;
}

.cred-point {
  padding: 22px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  box-shadow: none;
}

.cred-point h3 {
  min-height: 0;
  margin-bottom: 10px;
}

.cred-point p {
  margin: 0;
}

.diploma-panel {
  padding: 24px;
}

.diploma-panel-head {
  margin-bottom: 16px;
}

.diploma-badge {
  display: inline-block;
  padding: 6px 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(191, 143, 102, 0.14);
  color: #7b563e;
  font-size: 0.82rem;
}

.diploma-preview {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(106, 82, 70, 0.12);
  box-shadow: var(--shadow);
  background: #fff;
}

.diploma-preview img {
  width: 100%;
  height: auto;
}

.diploma-caption {
  margin-top: 16px;
  color: #59473e;
}

/* Pricing */

.pricing-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.price-card {
  padding: 30px 24px;
  text-align: center;
  border-radius: 28px;
  border: 1px solid var(--card-line);
  backdrop-filter: saturate(108%);
  background: linear-gradient(180deg, var(--card-light-soft) 0%, var(--card-light) 100%);
}

.price-label {
  display: block;
  color: #7b5b49;
  margin-bottom: 12px;
}

.price-value {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1;
  color: #8d613f;
  margin-bottom: 12px;
}

/* Quotes */

.section-quote {
  max-width: 980px;
  margin: 48px auto 0;
  text-align: center;
  white-space: nowrap;
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--accent-2);
}

.section-quote-dark {
  color: #6f5345;
}

/* Footer */

.footer {
  position: relative;
  overflow: hidden;
  padding: 62px 0 50px;
  background: linear-gradient(180deg, #2a1f19 0%, #221914 100%);
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  text-align: center;
}

.footer h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 12px;
}

.footer p {
  max-width: 780px;
  margin: 0 auto 18px;
}

.footer-note {
  margin-top: 8px;
  font-size: 0.88rem;
  color: rgba(246, 238, 230, 0.65);
}

.footer-carousel {
  max-width: 1240px;
  margin: 18px auto 0;
  min-height: 30px;
}

/* Modal */

.modal {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: grid;
  place-items: center;
  background: rgba(25, 17, 13, 0.56);
  opacity: 0;
  visibility: hidden;
  transition: 0.28s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: min(92vw, 560px);
  padding: 32px;
  border-radius: 28px;
  color: var(--text-dark);
  background: var(--card-light);
  box-shadow: 0 30px 80px rgba(25, 17, 13, 0.28);
}

.modal-content-premium {
  background:
    radial-gradient(circle at top center, rgba(214, 176, 137, 0.18), transparent 36%),
    linear-gradient(180deg, #fffdf9 0%, #f9f0e6 100%);
  border: 1px solid rgba(106, 82, 70, 0.12);
}

.modal-content h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--title-dark);
  margin-bottom: 12px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 2rem;
  color: #6a5246;
}

.modal-kicker {
  display: inline-block;
  padding: 8px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(191, 143, 102, 0.12);
  color: #7b563e;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(106, 82, 70, 0.1);
  border-radius: 18px;
}

.contact-details li div {
  display: grid;
  gap: 2px;
}

.contact-details li strong {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--title-dark);
}

.contact-details li span {
  font-size: 1.15rem;
  margin-top: 1px;
}

.contact-details a {
  color: var(--title-dark);
  text-decoration: none;
}

/* Animations */

@keyframes castleKingRight {

  0%,
  14% {
    left: 92px;
  }

  24%,
  56% {
    left: 160px;
  }

  66%,
  100% {
    left: 92px;
  }
}

@keyframes castleRookRight {

  0%,
  14% {
    left: 184px;
  }

  24%,
  56% {
    left: 126px;
  }

  66%,
  100% {
    left: 184px;
  }
}

@keyframes castleTrailKingRight {

  0%,
  10%,
  62%,
  100% {
    opacity: 0;
  }

  20%,
  46% {
    opacity: 1;
  }
}

@keyframes castleTrailRookRight {

  0%,
  10%,
  62%,
  100% {
    opacity: 0;
  }

  22%,
  48% {
    opacity: 0.8;
  }
}

/* Responsive */

@media (max-width: 1100px) {
  .constat-grid {
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 18px 12px;
  }

  .constat-knight-wrap {
    width: 170px;
    height: 170px;
  }

  .constat-knight {
    font-size: 8.8rem;
  }
}

@media (max-width: 1080px) {
  .hero-content {
    transform: translateY(-18px);
  }

  .apporte-why-grid,
  .rr-grid,
  .steps-grid,
  .benefits-grid,
  .cases-grid.six-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cred-layout {
    grid-template-columns: 1fr;
  }

  .rr-visual {
    grid-template-columns: 1fr;
  }

  .rr-photo-frame {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .constat-head {
    margin-bottom: 28px;
  }

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

  .constat-visual {
    display: none;
  }

  .constat-text p {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }

  .hero-shell {
    min-height: 100svh;
    padding-block: 22px;
  }

  .hero-content {
    transform: translateY(-8px);
  }

  .hero-seal {
    width: min(330px, 76vw);
    margin: 18px auto 0;
    transform: translateY(8px);
  }

  .hero-bg-logo {
    width: min(110vw, 760px);
    opacity: 0.19;
    transform: translate(-50%, -50%);
  }

  .hero h1 {
    margin-bottom: 8px;
    transform: translateY(-8px);
  }

  .hero-tagline {
    margin-bottom: 12px;
    transform: translateY(-6px);
  }

  .subtitle,
  .hero-actions {
    transform: none;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-scope,
  .footer-scope {
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    line-height: 1.45;
  }

  .hero-scope {
    margin-top: 16px;
  }

  .footer-scope {
    margin: 2px auto 18px;
  }

  .two-col-copy,
  .feature-list,
  .module-grid,
  .frame-grid,
  .cred-points,
  .pricing-hero,
  .apporte-why-grid,
  .steps-grid,
  .benefits-grid,
  .cases-grid.six-grid,
  .rr-grid,
  .cred-identity {
    grid-template-columns: 1fr;
  }

  .rr-card h3,
  .section-quote,
  .footer-carousel-item {
    white-space: normal;
  }

  .footer-carousel {
    min-height: 72px;
  }

  .rr-quote {
    margin: 24px auto 8px;
  }

  .rr-roque-board {
    width: 240px;
    height: 98px;
  }

  .rr-roque-board .roque-piece {
    font-size: 2.2rem;
  }

  .rr-roque-board .roque-king {
    left: 70px;
  }

  .rr-roque-board .roque-rook {
    left: 146px;
  }

  .rr-roque-board .roque-trail-king {
    left: 90px;
    width: 36px;
  }

  .rr-roque-board .roque-trail-rook {
    left: 114px;
    width: 48px;
  }

  @keyframes castleKingRight {

    0%,
    14% {
      left: 70px;
    }

    24%,
    56% {
      left: 126px;
    }

    66%,
    100% {
      left: 70px;
    }
  }

  @keyframes castleRookRight {

    0%,
    14% {
      left: 146px;
    }

    24%,
    56% {
      left: 98px;
    }

    66%,
    100% {
      left: 146px;
    }
  }
}