:root {
  --kings-navy: #062d55;
  --kings-navy-dark: #031d38;
  --kings-red: #d9251c;
  --kings-gold: #f7bf25;
  --kings-white: #ffffff;
  --kings-ivory: #fff9ed;
  --kings-text: #172535;
  --kings-muted: #5b6876;
  --kings-border: #d8dee5;
  --kings-container: 1180px;
  --kings-wide: 1360px;
  --kings-radius: 18px;
  --kings-shadow: 0 22px 55px rgb(3 29 56 / 12%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--kings-text);
  background: var(--kings-white);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

/* Progressive scroll reveal: content remains visible unless JavaScript opts in. */
.kings-reveal-enabled .kings-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--kings-reveal-delay, 0ms);
}

.kings-reveal-enabled .kings-reveal.kings-reveal--visible,
.kings-reveal-enabled .kings-reveal:focus-within {
  opacity: 1;
  transform: none;
}

.kings-reveal-enabled .kings-reveal:focus-within {
  transition-delay: 0ms;
}

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

a {
  color: var(--kings-navy);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--kings-red);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--kings-gold);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--kings-navy-dark);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.02em;
  line-break: strict;
  word-break: normal;
  word-break: auto-phrase;
  text-wrap: balance;
}

.heading-line {
  display: block;
}

.heading-line--nowrap {
  white-space: nowrap;
}

.word-unit {
  white-space: nowrap;
}

p {
  margin-top: 0;
}

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

.site-container--wide {
  width: min(calc(100% - 48px), var(--kings-wide));
}

.site-container--narrow {
  max-width: 860px;
}

.site-main {
  min-height: 55vh;
  padding-block: clamp(56px, 8vw, 104px);
}

.section {
  position: relative;
  padding-block: clamp(76px, 9vw, 132px);
}

.section--ivory {
  background: var(--kings-ivory);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--kings-red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.section-label::before,
.section-label::after {
  flex: 0 0 32px;
  width: 32px;
  height: 3px;
  content: "";
  background: var(--kings-gold);
}

.section-label--light {
  color: var(--kings-gold);
}

.section-label--dark {
  color: var(--kings-navy-dark);
}

.section-label--dark::before,
.section-label--dark::after {
  background: var(--kings-red);
}

.section-title {
  margin-bottom: 28px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.28;
}

.section-title--light {
  color: var(--kings-white);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(32px, 8vw, 100px);
  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-heading--split .section-title {
  margin-bottom: 0;
}

.section-heading--split > p {
  margin-bottom: 6px;
  color: var(--kings-muted);
}

.section-heading--center {
  margin-bottom: clamp(44px, 6vw, 72px);
  text-align: center;
}

.section-heading--center .section-label {
  justify-content: center;
}

.section-heading--bottom {
  align-items: end;
}

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

.screen-reader-text:focus {
  z-index: 10000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: var(--kings-navy-dark);
  background: var(--kings-gold);
  font-weight: 800;
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 4px solid var(--kings-gold);
  background: var(--kings-white);
}

.site-header__inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-header__actions {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 16px;
}

.site-branding {
  flex: 0 0 auto;
}

.custom-logo {
  display: block;
  width: auto;
  max-height: 66px;
}

.brand {
	  display: flex;
	  align-items: center;
	  gap: 11px;
	  color: var(--kings-navy);
	  line-height: 1;
	  text-decoration: none;
}

.brand:hover {
  color: var(--kings-navy);
}

.brand__company-name {
	  font-size: 0.83rem;
	  font-weight: 800;
	  letter-spacing: 0.04em;
	  white-space: nowrap;
}

.brand-logo-frame {
	  --logo-frame-width: 45px;
	  --logo-frame-height: 54px;
	  position: relative;
	  display: block;
	  width: var(--logo-frame-width);
	  height: var(--logo-frame-height);
	  flex: 0 0 auto;
	  overflow: hidden;
	  background: var(--kings-white);
}

.brand-logo-frame img {
	  display: block;
	  width: 100%;
	  height: 100%;
	  object-fit: contain;
}

.brand-logo-frame--header {
	  --logo-frame-width: 45px;
	  --logo-frame-height: 56px;
}

.site-header__panel {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-menu {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  list-style: none;
}

.primary-menu a {
  position: relative;
  display: block;
  padding-block: 10px;
  color: var(--kings-navy-dark);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
}

.primary-menu a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--kings-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  color: var(--kings-navy-dark);
  line-height: 1.25;
  text-align: right;
  text-decoration: none;
}

.header-phone:hover {
  color: var(--kings-red);
}

.header-phone__label {
  display: block;
  color: var(--kings-muted);
  font-size: 0.64rem;
  font-weight: 700;
}

.header-phone__number {
  display: block;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 11px;
  border: 2px solid var(--kings-navy);
  border-radius: 8px;
  background: var(--kings-white);
  cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--kings-navy);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.button,
button,
input[type="submit"] {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 24px;
  border: 2px solid var(--kings-red);
  border-radius: 6px;
  color: var(--kings-white);
  background: var(--kings-red);
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  line-break: strict;
  word-break: normal;
  word-break: auto-phrase;
  text-wrap: balance;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--kings-white);
  background: var(--kings-navy-dark);
  border-color: var(--kings-navy-dark);
  transform: translateY(-2px);
}

.button--header {
	  min-height: 50px;
	  padding-inline: 20px;
	  font-size: 0.86rem;
	  white-space: nowrap;
}

.button--gold {
  color: var(--kings-navy-dark);
  background: var(--kings-gold);
  border-color: var(--kings-gold);
}

.button--outline-light {
  color: var(--kings-white);
  background: transparent;
  border-color: rgb(255 255 255 / 55%);
}

.button--outline-light:hover {
  color: var(--kings-navy-dark);
  background: var(--kings-white);
  border-color: var(--kings-white);
}

.button--navy {
  background: var(--kings-navy-dark);
  border-color: var(--kings-navy-dark);
}

.button--red {
	  background: var(--kings-red);
	  border-color: var(--kings-red);
}

.button--external,
.button--external:visited {
  color: var(--kings-white);
  background: var(--kings-navy-dark);
  border-color: var(--kings-navy-dark);
}

.button--external:hover,
.button--external:focus-visible {
  color: var(--kings-white);
  background: var(--kings-red);
  border-color: var(--kings-red);
}

.button--external:focus-visible {
  outline: 4px solid var(--kings-white);
  outline-offset: 3px;
}

.button__label {
  min-width: 0;
}

.button__arrow {
  flex: 0 0 auto;
  margin-left: auto;
  font-size: 1.15em;
  line-height: 1;
}

.button--contact-form {
	  color: var(--kings-navy-dark);
	  background: var(--kings-gold);
	  border-color: var(--kings-gold);
}

.button--contact-form:hover {
	  color: var(--kings-navy-dark);
	  background: var(--kings-white);
	  border-color: var(--kings-white);
}

.button--large {
  min-height: 68px;
  padding-inline: 34px;
}

.line-brand-icon {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 40px;
}

.button--line,
.button--line:visited {
  border-color: #06c755;
  color: var(--kings-navy-dark);
  background: var(--kings-white);
  gap: 12px;
}

.button--line:hover,
.button--line:focus-visible {
  border-color: #06c755;
  color: var(--kings-navy-dark);
  background: #eefbf3;
  transform: none;
}

.button--line:focus-visible {
  outline: 3px solid var(--kings-gold);
  outline-offset: 3px;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(820px, calc(100svh - 94px));
  overflow: hidden;
  color: var(--kings-white);
  background: var(--kings-navy-dark);
}

.hero__grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero__gold-ring {
	  position: absolute;
	  z-index: 1;
	  top: -260px;
	  right: -230px;
	  width: 720px;
  height: 720px;
  border: 110px solid var(--kings-gold);
  border-radius: 50%;
}

.hero__red-line {
	  position: absolute;
	  z-index: 1;
	  right: -35%;
	  bottom: 8%;
	  width: 150%;
  height: 18px;
  background: var(--kings-red);
  transform: rotate(-12deg);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: min(820px, calc(100svh - 94px));
  padding-block: clamp(72px, 9vw, 122px);
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
}

.hero__copy {
  position: relative;
  z-index: 4;
}

.hero h1 {
  margin: 0 0 30px;
  color: var(--kings-white);
  font-size: clamp(3rem, 5vw, 4.35rem);
  line-height: 1.13;
  letter-spacing: 0.015em;
}

.hero h1 em {
  color: var(--kings-gold);
  font-style: normal;
}

.hero__lead {
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 5px solid var(--kings-red);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.65;
}

.hero__description {
  max-width: 660px;
  margin-bottom: 36px;
  color: #d8e2ec;
  font-size: 1.02rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__visual {
  position: relative;
  z-index: 3;
  align-self: end;
}

.hero__visual-star {
  position: absolute;
	  z-index: 3;
  top: 4%;
  right: -5%;
  color: var(--kings-red);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 1;
}

.king-kun {
  display: block;
  height: auto;
  background: transparent;
}

.king-kun--hero {
  position: relative;
  z-index: 6;
  width: min(100%, 470px);
  margin: 0 auto -28px;
}

.hero__bottom-mark {
  position: absolute;
  z-index: 1;
  right: 1vw;
  bottom: -0.36em;
  color: rgb(255 255 255 / 4%);
  font-size: clamp(7rem, 19vw, 18rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.05em;
}

/* Introduction */
.intro {
  overflow: hidden;
  text-align: center;
}

.intro::before,
.intro::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.intro::before {
  top: -110px;
  left: -110px;
  width: 230px;
  height: 230px;
  border: 36px solid var(--kings-gold);
}

.intro::after {
  right: -50px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  background: var(--kings-red);
}

.intro__inner {
  position: relative;
  z-index: 2;
}

.intro .section-label {
  justify-content: center;
}

.intro__rule {
  display: flex;
  width: 160px;
  height: 5px;
  margin: 0 auto 36px;
  background: var(--kings-navy);
}

.intro__rule span {
  width: 42%;
  background: var(--kings-red);
}

.intro__text {
  margin-bottom: 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 2.15;
}

/* Services */
.services {
  background: var(--kings-white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  padding: clamp(36px, 5vw, 62px);
  border-radius: var(--kings-radius);
  color: var(--kings-white);
  box-shadow: var(--kings-shadow);
}

.service-card::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  content: "";
  border: 44px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
}

.service-card--cargo {
  background: linear-gradient(145deg, var(--kings-navy), var(--kings-navy-dark));
}

.service-card--moving {
  background: linear-gradient(145deg, #e1332b, #aa1711);
}

.service-card__number {
  position: absolute;
  top: 18px;
  right: 28px;
  color: rgb(255 255 255 / 12%);
  font-size: clamp(5rem, 11vw, 9rem);
  font-weight: 950;
  line-height: 1;
}

.service-card__eyebrow {
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
  color: var(--kings-gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  color: var(--kings-white);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.service-list {
  position: relative;
  z-index: 2;
  display: grid;
  margin: 0 0 28px;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 20px;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 17px;
  font-size: 0.95rem;
}

.service-list li::before {
  position: absolute;
  top: 0.77em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--kings-gold);
  transform: rotate(45deg);
}

.service-card__area {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
  padding: 16px 18px;
  border: 1px solid rgb(255 255 255 / 26%);
  font-size: 0.95rem;
}

.service-card__area span {
  display: block;
  color: var(--kings-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.text-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--kings-gold);
  color: var(--kings-white);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  color: var(--kings-gold);
}

.text-link--navy {
  color: var(--kings-navy);
}

.text-link--navy:hover {
  color: var(--kings-red);
}

/* Three-way good */
.three-good__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.three-good__grid::before {
  position: absolute;
  z-index: 0;
  top: 72px;
  right: 12%;
  left: 12%;
  height: 3px;
  content: "";
  background: var(--kings-gold);
}

.value-card {
  position: relative;
  z-index: 1;
  min-height: 280px;
  padding: 40px 28px;
  border-top: 6px solid var(--kings-navy);
  background: var(--kings-white);
  text-align: center;
  box-shadow: 0 14px 40px rgb(3 29 56 / 9%);
}

.value-card:nth-child(2) {
  border-top-color: var(--kings-red);
}

.value-card:nth-child(3) {
  border-top-color: var(--kings-gold);
}

.value-card__number {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  place-items: center;
  color: var(--kings-white);
  background: var(--kings-navy-dark);
  font-weight: 900;
}

.value-card:nth-child(2) .value-card__number {
  background: var(--kings-red);
}

.value-card:nth-child(3) .value-card__number {
  color: var(--kings-navy-dark);
  background: var(--kings-gold);
}

.value-card h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.value-card p {
  margin-bottom: 0;
}

/* Message */
.message {
  overflow: hidden;
  color: var(--kings-white);
  background: var(--kings-navy-dark);
}

.message__stripe {
  position: absolute;
  z-index: 1;
  top: -100px;
  right: -80px;
  width: 360px;
  height: 760px;
  border-left: 42px solid var(--kings-red);
  border-right: 84px solid var(--kings-gold);
  transform: rotate(17deg);
}

.message__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.7fr);
  align-items: end;
  gap: clamp(40px, 7vw, 90px);
}

.message__content {
  position: relative;
  z-index: 3;
}

.message__body {
  color: #dce6ef;
}

.message__body p {
  margin-bottom: 1.3em;
}

.message__signature {
  margin: 36px 0 20px;
  text-align: right;
}

.message__signature strong {
  font-size: 1.22rem;
}

.social-groups {
  display: grid;
  gap: 14px;
}

.social-groups--message {
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-group {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-top: 3px solid var(--kings-gold);
  border-radius: 8px;
  background: rgb(255 255 255 / 7%);
}

.social-group h3 {
  margin: 0 0 12px;
  color: var(--kings-white);
  font-size: 1rem;
}

.social-links {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a,
.social-links a:visited {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  padding: 8px 12px;
  border: 2px solid transparent;
  border-radius: 6px;
  align-items: center;
  gap: 8px;
  color: var(--kings-white);
  background: var(--kings-navy-dark);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--kings-white);
  background: var(--kings-red);
  border-color: var(--kings-gold);
}

.social-links a:focus-visible {
  outline: 3px solid var(--kings-gold);
  outline-offset: 3px;
}

.social-link__icon {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 23px;
  object-fit: contain;
}

.social-link__icon--instagram {
  height: 24px;
}

.message__visual {
  position: relative;
  z-index: 3;
  min-height: 500px;
}

.message__gold-disc {
  position: absolute;
  z-index: 1;
  right: -60px;
  bottom: -90px;
  width: 390px;
  height: 390px;
  border: 62px solid var(--kings-gold);
  border-radius: 50%;
}

.king-kun--message {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: calc(clamp(76px, 9vw, 132px) * -1);
  width: min(100%, 390px);
}

/* Recruit */
.recruit {
  overflow: hidden;
  background: var(--kings-gold);
}

.recruit__mark {
  position: absolute;
  z-index: 1;
  top: -0.25em;
  right: -0.02em;
  color: rgb(255 255 255 / 25%);
  font-size: clamp(18rem, 46vw, 42rem);
  font-weight: 950;
  line-height: 1;
}

.recruit__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(38px, 8vw, 110px);
}

.recruit__visual {
  position: relative;
  min-height: 480px;
}

.recruit__red-block {
  position: absolute;
  z-index: 1;
  bottom: -70px;
  left: -100px;
  width: 430px;
  height: 300px;
  background: var(--kings-red);
  transform: rotate(-8deg);
}

.king-kun--recruit {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: -75px;
  width: min(100%, 370px);
}

.recruit__content {
  position: relative;
  z-index: 4;
}

.recruit__content > p:not(.section-label) {
  max-width: 700px;
  font-weight: 650;
}

.recruit__actions {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.recruit-summary {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.recruit__actions .button--line {
  width: min(100%, 480px);
  justify-content: center;
}

.recruit-line-label > span {
  display: inline;
}

.recruit-summary span {
  padding: 7px 11px;
  border: 1px solid rgb(3 29 56 / 22%);
  border-radius: 999px;
  color: var(--kings-navy-dark);
  background: rgb(255 255 255 / 60%);
  font-size: 0.9rem;
  font-weight: 800;
}

.recruit__content .recruit__source-note {
  margin: 18px 0 0;
  font-size: 0.95rem;
  font-weight: 800;
}

/* News */
.news {
  background: var(--kings-white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--kings-border);
  border-radius: 12px;
  background: var(--kings-white);
  box-shadow: 0 12px 34px rgb(3 29 56 / 8%);
}

.news-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--kings-navy);
}

.news-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.news-card__image:hover img {
  transform: scale(1.035);
}

.news-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
	  gap: 10px;
	  color: var(--kings-white);
  background: linear-gradient(135deg, var(--kings-navy), var(--kings-navy-dark));
  text-align: center;
}

.brand-logo-frame--news {
	  --logo-frame-width: 88px;
	  --logo-frame-height: 111px;
	  margin-inline: auto;
}

.news-card__placeholder-label {
	  display: block;
	  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.news-card__body {
  padding: 26px;
}

.news-card__meta {
  display: flex;
  margin-bottom: 12px;
  align-items: center;
  gap: 12px;
  color: var(--kings-muted);
  font-size: 0.76rem;
}

.news-card__meta span {
  padding: 2px 8px;
  color: var(--kings-white);
  background: var(--kings-red);
  font-weight: 800;
}

.news-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.news-card h3 a {
  color: var(--kings-navy-dark);
  text-decoration: none;
}

.news-card__body > p {
  color: var(--kings-muted);
  font-size: 0.9rem;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--kings-navy);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.news-empty {
  margin: 0;
  padding: 44px;
  border: 1px solid var(--kings-border);
  background: var(--kings-ivory);
  text-align: center;
}

/* Company */
.company__inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
  align-items: start;
  gap: clamp(44px, 9vw, 120px);
}

.company__heading {
  position: sticky;
  top: 36px;
}

.company__heading p:last-child {
  color: var(--kings-muted);
}

.company-list {
  margin: 0;
  border-top: 2px solid var(--kings-navy-dark);
}

.company-list > div {
  display: grid;
  padding: 20px 10px;
  border-bottom: 1px solid var(--kings-border);
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
}

.company-list dt {
  color: var(--kings-navy);
  font-weight: 900;
}

.company-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.company-list a {
  font-weight: 700;
}

.company-list small {
  margin-left: 8px;
  color: var(--kings-muted);
}

.company-area-line {
  display: block;
}

.company-area-line + .company-area-line {
  margin-top: 7px;
}

/* Contact */
.contact-cta {
  overflow: hidden;
  color: var(--kings-white);
  background: var(--kings-navy);
}

.contact-cta__lines {
	  position: absolute;
	  z-index: 1;
	  top: -330px;
	  right: -280px;
	  width: 360px;
	  height: 360px;
	  border: 56px solid var(--kings-red);
	  border-radius: 50%;
}

.contact-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(44px, 8vw, 100px);
}

.contact-cta__inner > div {
	  position: relative;
	  z-index: 3;
}

.contact-cta__inner > div:first-child > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: #d9e4ed;
}

.contact-cta__actions {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 14px;
}

.contact-phone {
  display: flex;
  min-height: 92px;
  padding: 16px 24px;
  border: 2px solid var(--kings-gold);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--kings-white);
  text-decoration: none;
}

.contact-phone:hover {
  color: var(--kings-navy-dark);
  background: var(--kings-gold);
}

.contact-phone span {
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-phone strong {
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.25;
}

/* Lower pages */
.breadcrumbs {
  border-bottom: 1px solid var(--kings-border);
  color: var(--kings-muted);
  background: var(--kings-white);
  font-size: 0.78rem;
}

.breadcrumbs ol {
  display: flex;
  min-height: 48px;
  margin-block: 0;
  padding-block: 10px;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.breadcrumbs li:not(:last-child)::after {
  color: var(--kings-red);
  content: "/";
  font-weight: 900;
}

.breadcrumbs a {
  font-weight: 700;
  text-decoration: none;
}

.breadcrumbs [aria-current="page"] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lower-page {
  overflow: hidden;
}

.lower-section {
  position: relative;
  padding-block: clamp(72px, 8vw, 120px);
}

.lower-section--ivory {
  background: var(--kings-ivory);
}

.lower-heading {
  margin-bottom: clamp(38px, 5vw, 64px);
}

.lower-heading--center {
  text-align: center;
}

.lower-heading--center .section-label {
  justify-content: center;
}

.lower-heading h2,
.pricing h2,
.recruit-band h2,
.lower-contact h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.lower-heading > p:last-child {
  max-width: 660px;
  margin-inline: auto;
  color: var(--kings-muted);
}

.lower-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--kings-white);
  background: var(--kings-navy-dark);
}

.lower-hero__grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-size: 72px 72px;
}

.lower-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 650px;
  padding-block: 70px 36px;
  align-items: center;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(36px, 6vw, 84px);
}

.lower-hero__copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.lower-hero h1 {
  margin-bottom: 30px;
  color: var(--kings-white);
  font-size: clamp(2.5rem, 3.3vw, 3.5rem);
  line-height: 1.25;
}

.lower-hero h1 .heading-line {
  white-space: nowrap;
}

.service-detail--moving .lower-hero h1 .heading-line:last-child {
  color: var(--kings-gold);
}

.service-detail--cargo .lower-hero h1 .heading-line:last-child,
.lower-hero--contact h1 .heading-line:last-child {
  color: var(--kings-gold);
}

.lower-hero__copy > p:not(.section-label) {
  max-width: 690px;
  margin-bottom: 34px;
  color: #d9e4ed;
  font-size: 1.08rem;
}

.lower-hero__visual {
  position: relative;
  min-height: 520px;
  align-self: end;
}

.lower-hero__disc {
  position: absolute;
  z-index: 1;
  top: 6%;
  left: 2%;
  width: 430px;
  height: 430px;
  border: 72px solid var(--kings-gold);
  border-radius: 50%;
}

.lower-hero__stripe {
  position: absolute;
  z-index: 1;
  right: -38%;
  bottom: 18%;
  width: 150%;
  height: 18px;
  background: var(--kings-red);
  transform: rotate(-12deg);
  transform-origin: center;
}

.king-kun--lower {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: -12px;
  width: min(100%, 410px);
  height: auto;
}

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

.service-menu__grid li {
  display: flex;
  min-height: 116px;
  padding: 22px;
  border: 1px solid var(--kings-border);
  border-top: 5px solid var(--kings-navy);
  align-items: center;
  gap: 16px;
  background: var(--kings-white);
  box-shadow: 0 12px 30px rgb(3 29 56 / 8%);
  font-weight: 900;
}

.service-detail--moving .service-menu__grid li {
  border-top-color: var(--kings-red);
}

.service-menu__grid li span {
  color: var(--kings-gold);
  font-size: 1.6rem;
  font-weight: 950;
}

.service-area {
  display: flex;
  margin-top: 28px;
  padding: 24px 30px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: var(--kings-white);
  background: var(--kings-navy);
}

.service-detail--moving .service-area {
  background: var(--kings-red);
}

.service-area__label {
  color: var(--kings-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-area__text {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-break: strict;
}

.service-area__text--split {
  display: inline-flex;
  flex-wrap: nowrap;
}

.service-area__line {
  display: inline;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-detail--moving .feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  min-height: 290px;
  padding: 42px 32px 32px;
  overflow: hidden;
  border: 1px solid var(--kings-border);
  border-radius: 8px;
  background: var(--kings-white);
  box-shadow: var(--kings-shadow);
}

.feature-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border: 22px solid var(--kings-gold);
  border-radius: 50%;
  content: "";
}

.feature-card__number {
  display: inline-flex;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--kings-white);
  background: var(--kings-navy);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-detail--moving .feature-card__number {
  background: var(--kings-red);
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--kings-muted);
}

.fleet-section {
  background: var(--kings-white);
}

.fleet-section__inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(36px, 6vw, 82px);
}

.fleet-section__media {
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--kings-white);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgb(3 29 56 / 16%);
}

.fleet-section__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 58%;
}

.fleet-section__content h2 {
  margin-bottom: 24px;
  color: var(--kings-navy-dark);
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.fleet-section__content > p:not(.section-label) {
  max-width: 560px;
  color: var(--kings-muted);
}

.pricing {
  color: var(--kings-white);
  background: var(--kings-navy);
}

.pricing__inner {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 8vw, 110px);
}

.pricing h2 {
  color: var(--kings-white);
}

.pricing__body > p:first-child {
  font-size: 1.08rem;
}

.pricing__note {
  margin-bottom: 26px;
  color: var(--kings-gold);
  font-weight: 900;
}

.pricing__body {
  min-width: 0;
}

.pricing-block {
  display: grid;
  gap: 28px;
}

.pricing-title-row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.pricing-title-row h3,
.pricing-subsection h3,
.pricing-subsection h4 {
  margin: 0;
  color: var(--kings-white);
}

.pricing-title-row h3,
.pricing-subsection--major > h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.tax-badge {
  display: inline-flex;
  min-width: 62px;
  min-height: 32px;
  padding: 3px 12px;
  color: var(--kings-navy-dark);
  background: var(--kings-gold);
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.pricing-subsection {
  display: grid;
  gap: 14px;
}

.pricing-subsection--major {
  padding-top: 26px;
  border-top: 1px solid rgb(255 255 255 / 34%);
}

.price-rule-grid,
.extra-fee-grid,
.van-condition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.price-rule-grid--basic {
  grid-template-columns: minmax(0, 1fr);
}

.price-rule-card,
.extra-fee-grid article,
.van-condition-grid > div {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 28%);
  background: rgb(255 255 255 / 10%);
}

.price-rule-card {
  display: grid;
  gap: 8px;
}

.price-rule-card span,
.price-example-grid span,
.distance-fee-grid span,
.cargo-space-grid span {
  color: var(--kings-gold);
  font-weight: 800;
}

.price-rule-card strong {
  font-size: 1.05rem;
  line-height: 1.55;
}

.price-example-grid,
.distance-fee-grid,
.cargo-space-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgb(255 255 255 / 25%);
  border-left: 1px solid rgb(255 255 255 / 25%);
}

.price-example-grid > div,
.distance-fee-grid > div,
.cargo-space-grid > div {
  display: grid;
  min-width: 0;
  padding: 14px;
  border-right: 1px solid rgb(255 255 255 / 25%);
  border-bottom: 1px solid rgb(255 255 255 / 25%);
  gap: 3px;
}

.distance-note {
  margin: 0;
  padding: 18px 20px;
  color: var(--kings-navy-dark);
  background: var(--kings-gold);
}

.distance-note strong {
  display: block;
  margin-bottom: 4px;
}

.pricing-notes {
  margin: 0;
  padding-left: 1.4em;
}

.pricing-notes li + li {
  margin-top: 5px;
}

.pricing-inline-note {
  margin: -14px 0 0;
  font-weight: 800;
}

.extra-fee-grid article h4,
.van-condition-grid h4 {
  margin-bottom: 10px;
}

.extra-fee-grid article p:last-child {
  margin-bottom: 0;
}

.extra-fee-price {
  margin-bottom: 8px;
  color: var(--kings-gold);
  font-size: 1.08rem;
  font-weight: 900;
}

.pricing-title-row--small {
  justify-content: flex-start;
}

.responsive-price-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.responsive-price-table th,
.responsive-price-table td {
  padding: 13px 10px;
  border: 1px solid rgb(255 255 255 / 32%);
  text-align: center;
}

.responsive-price-table thead th {
  color: var(--kings-navy-dark);
  background: var(--kings-gold);
}

.responsive-price-table tbody th {
  color: var(--kings-gold);
}

.cargo-space-grid {
  margin-top: 4px;
}

.van-condition-grid ul {
  margin: 0;
  padding-left: 1.35em;
}

.van-condition-grid li + li {
  margin-top: 4px;
}

/* Moving price section: calm, high-contrast presentation distinct from cargo. */
.service-detail--moving .pricing {
  color: var(--kings-text);
  background: var(--kings-ivory);
  border-block: 1px solid #eadfc9;
}

.service-detail--moving .pricing .section-label {
  color: #a51d17;
}

.service-detail--moving .pricing .section-label::before,
.service-detail--moving .pricing .section-label::after {
  background: #d49a00;
}

.service-detail--moving .pricing h2 {
  color: var(--kings-navy-dark);
  scroll-margin-top: 230px;
}

.service-detail--moving .pricing-block {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid #e2d7c3;
  border-top: 6px solid var(--kings-red);
  border-radius: 14px;
  background: var(--kings-white);
  box-shadow: 0 18px 46px rgb(3 29 56 / 10%);
}

.service-detail--moving .pricing-title-row h3,
.service-detail--moving .pricing-subsection h3,
.service-detail--moving .pricing-subsection h4 {
  color: var(--kings-navy-dark);
}

.service-detail--moving .tax-badge {
  color: var(--kings-navy-dark);
  background: var(--kings-gold);
  box-shadow: inset 0 0 0 1px #d49a00;
}

.service-detail--moving .distance-fee-grid,
.service-detail--moving .cargo-space-grid {
  overflow: hidden;
  border: 1px solid #d8dee5;
  border-top: 4px solid var(--kings-red);
  border-radius: 10px;
  background: var(--kings-white);
  box-shadow: 0 10px 28px rgb(3 29 56 / 8%);
}

.service-detail--moving .distance-fee-grid > div,
.service-detail--moving .cargo-space-grid > div {
  border-color: #d8dee5;
  background: var(--kings-white);
}

.service-detail--moving .distance-fee-grid span,
.service-detail--moving .cargo-space-grid span {
  color: #a51d17;
}

.service-detail--moving .distance-fee-grid strong,
.service-detail--moving .cargo-space-grid strong,
.service-detail--moving .responsive-price-table th,
.service-detail--moving .responsive-price-table td {
  color: var(--kings-navy-dark);
  word-break: keep-all;
  overflow-wrap: normal;
}

.service-detail--moving .distance-note {
  padding: 22px 24px;
  border-left: 7px solid var(--kings-gold);
  color: var(--kings-white);
  background: var(--kings-navy);
  box-shadow: 0 10px 26px rgb(3 29 56 / 12%);
}

.service-detail--moving .distance-note strong {
  color: var(--kings-gold);
}

.service-detail--moving .pricing-inline-note {
  margin: -8px 0 0;
  padding: 14px 18px;
  border: 1px solid #ead18c;
  border-radius: 8px;
  color: var(--kings-navy-dark);
  background: #fff3c9;
}

.service-detail--moving .pricing-subsection--major {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid #e2d7c3;
  border-top: 5px solid var(--kings-red);
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 10px 28px rgb(3 29 56 / 7%);
}

.service-detail--moving .extra-fee-grid article,
.service-detail--moving .van-condition-grid > div {
  border: 1px solid #d8dee5;
  border-top: 4px solid var(--kings-gold);
  border-radius: 9px;
  color: var(--kings-text);
  background: var(--kings-white);
}

.service-detail--moving .extra-fee-price {
  color: #a51d17;
}

.service-detail--moving .responsive-price-table {
  overflow: hidden;
  border-radius: 9px;
  box-shadow: 0 8px 22px rgb(3 29 56 / 8%);
}

.service-detail--moving .responsive-price-table th,
.service-detail--moving .responsive-price-table td {
  border-color: #d8dee5;
  background: var(--kings-white);
}

.service-detail--moving .responsive-price-table thead th {
  color: var(--kings-white);
  background: var(--kings-navy);
}

.service-detail--moving .responsive-price-table tbody th {
  color: #a51d17;
  background: #fff7df;
}

.service-detail--moving .pricing__note {
  color: var(--kings-navy-dark);
}

.service-detail--moving .pricing .button--red,
.service-detail--moving .pricing .button--red:visited {
  color: var(--kings-white);
  background: var(--kings-navy);
  border-color: var(--kings-navy);
}

.service-detail--moving .pricing .button--red:hover,
.service-detail--moving .pricing .button--red:focus-visible {
  color: var(--kings-white);
  background: var(--kings-red);
  border-color: var(--kings-red);
}

.service-detail--moving .pricing .button--red:focus-visible {
  outline: 4px solid var(--kings-gold);
  outline-offset: 4px;
}

.service-detail--moving .pricing .button--red:active {
  color: var(--kings-white);
  background: var(--kings-navy-dark);
  border-color: var(--kings-navy-dark);
  transform: translateY(0);
}

/* Moving price hierarchy: full-width groups with one visual layer. */
.service-detail--moving .pricing__inner {
  display: block;
  max-width: 1200px;
}

.service-detail--moving .pricing__heading {
  margin-bottom: clamp(42px, 6vw, 72px);
}

.service-detail--moving .pricing__heading h2 {
  margin-bottom: 0;
}

.service-detail--moving .pricing-block {
  display: grid;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  gap: clamp(58px, 7vw, 88px);
}

.moving-pricing-group {
  display: grid;
  min-width: 0;
  gap: 24px;
}

.moving-pricing-group + .moving-pricing-group {
  padding-top: clamp(42px, 5vw, 62px);
  border-top: 1px solid #ded3bf;
}

.moving-pricing-group > h3,
.moving-pricing-group .pricing-title-row h3 {
  margin: 0;
  color: var(--kings-navy-dark);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  scroll-margin-top: 150px;
}

.moving-route-prices {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.moving-route-prices::before {
  position: absolute;
  z-index: 0;
  top: 20px;
  right: 6%;
  left: 6%;
  height: 3px;
  content: "";
  background: var(--kings-gold);
  pointer-events: none;
}

.moving-route-price {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  min-height: 164px;
  padding: 38px 12px 20px;
  border: 1px solid #d8dee5;
  border-top: 4px solid var(--kings-red);
  border-radius: 10px;
  background: var(--kings-white);
  box-shadow: 0 9px 24px rgb(3 29 56 / 7%);
  align-content: center;
  gap: 4px;
  text-align: center;
}

.moving-route-price__point {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 5px solid var(--kings-white);
  border-radius: 50%;
  background: var(--kings-gold);
  box-shadow: 0 0 0 2px #d49a00;
  transform: translateX(-50%);
}

.moving-route-price__distance {
  color: #a51d17;
  font-size: 1rem;
  font-weight: 900;
}

.moving-route-price strong {
  color: var(--kings-navy-dark);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.35;
  white-space: nowrap;
}

.moving-route-price small {
  color: var(--kings-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.moving-over-distance {
  display: flex;
  min-width: 0;
  padding: 22px 28px;
  border-left: 7px solid var(--kings-red);
  border-radius: 8px;
  color: var(--kings-navy-dark);
  background: var(--kings-white);
  box-shadow: 0 8px 22px rgb(3 29 56 / 7%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.moving-over-distance > span {
  font-size: 1.05rem;
  font-weight: 900;
}

.moving-over-distance strong {
  display: flex;
  min-width: 0;
  color: #a51d17;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.35;
  align-items: baseline;
  gap: 0.5em;
  white-space: normal;
  overflow-wrap: anywhere;
}

.moving-over-distance strong span {
  min-width: 0;
}

.service-detail--moving .distance-note {
  display: grid;
  gap: 16px;
}

.service-detail--moving .distance-note > strong {
  margin: 0;
  font-size: 1.15rem;
}

.service-detail--moving .distance-note p {
  margin: 0;
  font-size: 1rem;
}

.distance-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.distance-route span {
  padding: 9px 12px;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 6px;
  color: var(--kings-white);
  background: rgb(255 255 255 / 8%);
  font-weight: 800;
  text-align: center;
}

.distance-route i {
  color: var(--kings-gold);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 900;
}

.service-detail--moving .pricing-inline-note {
  margin: 0;
  font-size: 1rem;
}

.service-detail--moving .extra-fee-grid {
  gap: 20px;
}

.service-detail--moving .extra-fee-card {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 30px;
  border-top-color: var(--kings-red);
  align-content: start;
  gap: 12px;
}

.extra-fee-card__icon {
  width: 48px;
  height: 48px;
  color: var(--kings-red);
  fill: none;
  stroke: currentcolor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-detail--moving .extra-fee-card h4 {
  margin: 0;
  font-size: 1.25rem;
}

.service-detail--moving .extra-fee-price {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.4;
}

.service-detail--moving .extra-fee-card > p:not(.extra-fee-price, .extra-fee-example) {
  margin: 0;
  font-size: 1rem;
}

.extra-fee-example {
  margin: 0;
  padding: 16px 18px;
  border-radius: 7px;
  color: var(--kings-navy-dark);
  background: #fff3c9;
  font-size: 1rem;
}

.service-detail--moving .responsive-price-table {
  border: 1px solid #d8dee5;
}

.service-detail--moving .responsive-price-table th,
.service-detail--moving .responsive-price-table td {
  padding: 16px 14px;
  font-size: 1rem;
}

.service-detail--moving .cargo-space-grid {
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-detail--moving .cargo-space-grid > div {
  padding: 20px;
}

.service-detail--moving .cargo-space-grid strong {
  font-size: 1.3rem;
  white-space: nowrap;
}

.service-detail--moving .van-condition-grid {
  gap: 20px;
}

.service-detail--moving .van-condition-grid > div {
  padding: 26px 28px;
}

.service-detail--moving .van-condition-grid h4,
.service-detail--moving .van-condition-grid li {
  font-size: 1rem;
}

.service-detail--moving .pricing-cta {
  display: flex;
  margin-top: clamp(52px, 7vw, 84px);
  padding: clamp(24px, 4vw, 34px);
  border-top: 5px solid var(--kings-gold);
  border-radius: 10px;
  background: var(--kings-white);
  box-shadow: 0 12px 32px rgb(3 29 56 / 9%);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.service-detail--moving .pricing-cta .pricing__note {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.service-detail--moving .pricing-cta .button {
  flex: 0 0 auto;
}

.flow-section {
  background: var(--kings-white);
}

.flow-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.flow-list li {
  position: relative;
  display: flex;
  min-height: 170px;
  padding: 24px 6px;
  border: 1px solid var(--kings-border);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.flow-list li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -18px;
  width: 18px;
  height: 3px;
  content: "";
  background: var(--kings-gold);
}

.flow-list li span {
  color: var(--kings-red);
  font-size: 0.8rem;
  font-weight: 900;
}

.flow-list li strong {
  font-size: 0.875rem;
  line-height: 1.55;
  white-space: nowrap;
}

@media (min-width: 769px) and (max-width: 1240px) {
  .flow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-list li:nth-child(3)::after {
    display: none;
  }
}

.faq-list {
  border-top: 2px solid var(--kings-navy-dark);
}

.faq-item {
  border-bottom: 1px solid var(--kings-border);
  background: var(--kings-white);
}

.faq-item summary {
  display: flex;
  padding: 24px 30px;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  color: var(--kings-navy-dark);
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  margin-left: auto;
  color: var(--kings-red);
  content: "+";
  font-size: 1.8rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary > span,
.faq-item > div > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--kings-white);
  background: var(--kings-navy);
  font-weight: 900;
}

.faq-item > div {
  display: flex;
  padding: 0 30px 28px;
  align-items: flex-start;
  gap: 18px;
  color: var(--kings-muted);
}

.faq-item > div > span {
  color: var(--kings-navy-dark);
  background: var(--kings-gold);
}

.faq-item > div p {
  margin: 4px 0 0;
}

.service-social {
  text-align: center;
  background: var(--kings-ivory);
}

.service-social__inner {
  display: grid;
  justify-items: center;
}

.service-social h2 {
  margin-bottom: 18px;
  color: var(--kings-navy-dark);
}

.service-social__inner > p:not(.section-label) {
  max-width: 640px;
  color: var(--kings-muted);
}

.social-links--service {
  margin-top: 22px;
  justify-content: center;
}

.social-links--service a,
.social-links--service a:visited {
  min-height: 50px;
  padding-inline: 18px;
  border-color: var(--kings-gold);
  box-shadow: 0 8px 20px rgb(3 29 56 / 8%);
}

.recruit-band {
  overflow: hidden;
  background: var(--kings-gold);
}

.recruit-band__shape {
  position: absolute;
  z-index: 1;
  right: -80px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  border: 64px solid var(--kings-red);
  transform: rotate(16deg);
}

.service-detail--cargo .recruit-band__shape {
  right: -180px;
  bottom: -190px;
}

.recruit-band__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 7vw, 92px);
}

.recruit-band__visual {
  position: relative;
  min-height: 430px;
}

.king-kun--recruit-band {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: -120px;
  width: min(100%, 330px);
  height: auto;
}

.recruit-band__copy {
  position: relative;
  z-index: 4;
}

.recruit-band__copy > p:not(.section-label) {
  max-width: 680px;
}

.recruit-band__notice {
  font-weight: 900;
}

.recruit-facts {
  display: grid;
  margin: 24px 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.recruit-facts > div,
.recruit-timeline {
  border: 1px solid rgb(3 29 56 / 18%);
  border-radius: 7px;
  background: rgb(255 255 255 / 58%);
}

.recruit-facts > div {
  min-width: 0;
  padding: 11px 13px;
}

.recruit-facts dt {
  color: #8d1a15;
  font-size: 0.76rem;
  font-weight: 900;
}

.recruit-facts dd {
  margin: 3px 0 0;
  color: var(--kings-navy-dark);
  font-size: 0.95rem;
  font-weight: 850;
}

.recruit-timeline {
  position: relative;
  z-index: 5;
  min-width: 0;
  margin-top: 22px;
  padding: 22px;
  color: var(--kings-navy-dark);
}

.recruit-timeline__heading {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.recruit-timeline__heading h3 {
  margin: 0;
  color: var(--kings-navy-dark);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.recruit-timeline__heading > span {
  flex: 0 0 auto;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--kings-navy-dark);
  background: var(--kings-gold);
  font-size: 0.76rem;
  font-weight: 900;
}

.recruit-timeline__list {
  position: relative;
  display: grid;
  min-width: 0;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.recruit-timeline__list::before {
  position: absolute;
  z-index: 0;
  top: 13px;
  right: 10%;
  left: 10%;
  height: 3px;
  content: "";
  background: var(--kings-gold);
}

.recruit-timeline__list li {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  padding: 0 6px;
  justify-items: center;
  gap: 8px;
  color: var(--kings-navy-dark);
  line-height: 1.45;
  text-align: center;
}

.recruit-timeline__list li::before {
  width: 17px;
  height: 17px;
  border: 4px solid var(--kings-white);
  border-radius: 50%;
  content: "";
  background: var(--kings-red);
  box-shadow: 0 0 0 2px var(--kings-gold);
}

.recruit-timeline__list time {
  color: #a51c16;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 950;
  white-space: nowrap;
}

.recruit-timeline__list li > span {
  font-size: 0.9rem;
  font-weight: 800;
  line-break: strict;
  word-break: normal;
  word-break: auto-phrase;
}

@media (max-width: 980px) and (min-width: 601px) {
  .recruit-timeline__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .recruit-timeline__list::before {
    display: none;
  }

  .recruit-timeline__list li {
    min-height: 116px;
    padding: 14px 8px;
    border-top: 3px solid var(--kings-gold);
    border-radius: 5px;
    align-content: start;
    background: var(--kings-ivory);
  }
}

@media (max-width: 600px) {
  .recruit-timeline {
    padding: 20px 16px;
  }

  .recruit-timeline__heading {
    margin-bottom: 18px;
  }

  .recruit-timeline__heading h3 {
    font-size: 1.12rem;
  }

  .recruit-timeline__list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .recruit-timeline__list::before {
    top: 16px;
    right: auto;
    bottom: 16px;
    left: 78px;
    width: 3px;
    height: auto;
  }

  .recruit-timeline__list li {
    min-height: 58px;
    padding: 10px 0;
    grid-template-columns: 66px 1fr;
    align-items: center;
    justify-items: start;
    gap: 28px;
    text-align: left;
  }

  .recruit-timeline__list li::before {
    position: absolute;
    left: 71px;
  }

  .recruit-timeline__list time {
    font-size: 1rem;
  }

  .recruit-timeline__list li > span {
    font-size: 0.94rem;
  }

}

.recruit-band__actions {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.recruit-band__actions .button {
  min-height: 58px;
  flex: 1 1 250px;
  justify-content: center;
  gap: 10px;
  padding-inline: 18px;
}

@media (max-width: 600px) {
  .recruit-line-label > span {
    display: block;
  }

  .recruit-band__actions .button {
    min-height: 58px;
    padding-inline: 14px;
    flex: 0 0 auto;
  }
}

.lower-contact {
  padding-block: clamp(72px, 8vw, 110px);
  color: var(--kings-white);
  background: var(--kings-navy-dark);
}

.lower-contact__inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(36px, 7vw, 90px);
}

.lower-contact h2 {
  margin-bottom: 0;
  color: var(--kings-white);
}

.lower-contact__actions {
  display: grid;
  gap: 14px;
}

.lower-contact__actions > a {
  width: 100%;
}

.lower-contact__actions .button--line {
  justify-content: center;
}

/* Contact page */
.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-method {
  min-height: 250px;
  padding: 34px;
  border-top: 6px solid var(--kings-navy);
  background: var(--kings-ivory);
}

.contact-method--mobile,
.contact-method--line {
  border-top-color: var(--kings-red);
}

.contact-method--line {
  border-top-color: #06c755;
}

.contact-method__label {
  margin-bottom: 8px;
  color: var(--kings-red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.contact-method h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.contact-method a,
.contact-method__preparing {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--kings-navy-dark);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 950;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-method > p:last-child {
  margin-bottom: 0;
  color: var(--kings-muted);
}

.contact-method .contact-method__line-link {
  color: var(--kings-navy-dark);
  text-decoration: underline;
  text-decoration-color: #06c755;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.contact-method .contact-method__line-link:hover {
  color: var(--kings-red);
}

.line-contact-section {
  border-block: 1px solid #cdebd8;
  background: #eefbf3;
}

.line-contact__inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 7vw, 84px);
}

.line-contact__qr-card {
  display: flex;
  padding: clamp(18px, 3vw, 28px);
  border: 2px solid var(--kings-gold);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: var(--kings-white);
  box-shadow: var(--kings-shadow);
}

.line-contact__qr {
  display: block;
  width: min(100%, 300px);
  height: auto;
  aspect-ratio: 1;
}

.line-contact__content {
  min-width: 0;
}

.line-contact__content h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.line-contact__content > p:not(.section-label) {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--kings-muted);
  font-size: 1.05rem;
}

.line-contact__content .button--line {
  min-width: min(100%, 300px);
  justify-content: flex-start;
}

.contact-form-slot {
  padding: clamp(30px, 5vw, 56px);
  border: 2px solid var(--kings-gold);
  border-radius: 8px;
  background: var(--kings-white);
  box-shadow: var(--kings-shadow);
  text-align: center;
}

.contact-form-slot > p {
  max-width: 650px;
  margin: 0 auto 28px;
  font-weight: 700;
}

.contact-form-slot__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-form-wrap {
  padding: clamp(24px, 5vw, 56px);
  border: 2px solid var(--kings-gold);
  border-radius: 8px;
  background: var(--kings-white);
  box-shadow: var(--kings-shadow);
}

.kings-form {
  color: var(--kings-navy-dark);
}

.kings-form__intro {
  max-width: 680px;
  margin: 0 auto 34px;
  color: var(--kings-muted);
  text-align: center;
}

.kings-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.kings-form__field,
.kings-form__fieldset {
  min-width: 0;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.kings-form__grid .kings-form__field {
  margin-bottom: 0;
}

.kings-form__field--full {
  grid-column: 1 / -1;
}

.kings-form label,
.kings-form legend {
  display: block;
  margin-bottom: 9px;
  color: var(--kings-navy-dark);
  font-weight: 850;
  line-height: 1.6;
}

.kings-form__required,
.kings-form__optional {
  display: inline-block;
  margin-left: 7px;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  vertical-align: 0.1em;
}

.kings-form__required {
  color: var(--kings-white);
  background: var(--kings-red);
}

.kings-form__optional {
  color: var(--kings-white);
  background: var(--kings-navy);
}

.kings-form .wpcf7-form-control-wrap {
  display: block;
}

.kings-form input[type="text"],
.kings-form input[type="tel"],
.kings-form input[type="email"],
.kings-form input[type="date"],
.kings-form select,
.kings-form textarea {
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 2px solid #aab3bc;
  border-radius: 4px;
  color: var(--kings-navy-dark);
  background: var(--kings-white);
  font: inherit;
  line-height: 1.5;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.kings-form textarea {
  min-height: 190px;
  resize: vertical;
}

.kings-form input:focus,
.kings-form select:focus,
.kings-form textarea:focus {
  border-color: var(--kings-gold);
  outline: 3px solid rgba(247, 191, 37, 0.32);
  outline-offset: 1px;
  box-shadow: 0 0 0 1px var(--kings-navy-dark);
}

.kings-form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 14px 15px;
  border: 2px solid #aab3bc;
  border-radius: 4px;
  background: var(--kings-white);
}

.kings-form .wpcf7-list-item {
  margin: 0;
}

.kings-form .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
}

.kings-form input[type="radio"],
.kings-form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--kings-red);
  flex: 0 0 auto;
}

.kings-form__privacy {
  margin: 8px 0 28px;
  padding: 18px;
  border-left: 5px solid var(--kings-gold);
  background: var(--kings-ivory);
}

.kings-form__privacy .wpcf7-list-item label {
  align-items: flex-start;
}

.kings-form__privacy a {
  color: var(--kings-navy);
  font-weight: 900;
  text-underline-offset: 3px;
}

.kings-form__actions {
  margin: 0;
  text-align: center;
}

.kings-form input[type="submit"] {
  min-width: min(100%, 320px);
  min-height: 56px;
  padding: 14px 28px;
  border: 2px solid var(--kings-gold);
  border-radius: 4px;
  color: var(--kings-navy-dark);
  background: var(--kings-gold);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.kings-form input[type="submit"]:hover {
  border-color: var(--kings-navy-dark);
  background: var(--kings-white);
  transform: translateY(-2px);
}

.kings-form input[type="submit"]:focus-visible {
  outline: 3px solid var(--kings-red);
  outline-offset: 4px;
}

.kings-form input[type="submit"]:disabled,
.kings-form.is-submitting input[type="submit"] {
  cursor: wait;
  transform: none;
}

.kings-form .wpcf7-not-valid {
  border-color: var(--kings-red) !important;
  box-shadow: inset 4px 0 0 var(--kings-red);
}

.kings-form .wpcf7-not-valid-tip {
  position: relative;
  margin-top: 7px;
  padding-left: 22px;
  color: #a11610;
  font-size: 0.9rem;
  font-weight: 800;
}

.kings-form .wpcf7-not-valid-tip::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--kings-white);
  background: var(--kings-red);
  content: "!";
  font-size: 0.78rem;
  line-height: 18px;
  text-align: center;
}

.kings-form .wpcf7-response-output {
  margin: 24px 0 0 !important;
  padding: 14px 16px !important;
  border-width: 2px !important;
  border-radius: 4px;
  font-weight: 800;
}

.kings-form .wpcf7-spinner {
  vertical-align: middle;
}

@media (max-width: 768px) {
  .kings-form__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .kings-form__field--full {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .contact-form-wrap {
    padding: 24px 16px;
  }

  .kings-form__intro {
    margin-bottom: 26px;
    text-align: left;
  }

  .kings-form__field,
  .kings-form__fieldset {
    margin-bottom: 20px;
  }

  .kings-form .wpcf7-radio {
    align-items: flex-start;
    flex-direction: column;
  }

  .kings-form input[type="submit"] {
    width: 100%;
    min-width: 0;
  }
}

/* Blog archive */
.archive-hero,
.single-hero {
  position: relative;
  overflow: hidden;
  color: var(--kings-white);
  background: var(--kings-navy-dark);
}

.archive-hero::after,
.single-hero::after {
  position: absolute;
  top: -120px;
  right: -70px;
  width: 320px;
  height: 320px;
  border: 58px solid var(--kings-gold);
  border-radius: 50%;
  content: "";
}

.archive-hero__inner,
.single-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(68px, 8vw, 108px);
}

.archive-hero h1,
.single-hero h1 {
  margin-bottom: 20px;
  color: var(--kings-white);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.archive-hero__inner > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: #d9e4ed;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.archive-card {
  overflow: hidden;
  border: 1px solid var(--kings-border);
  border-radius: 8px;
  background: var(--kings-white);
  box-shadow: var(--kings-shadow);
}

.archive-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--kings-navy);
}

.archive-card__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-card__placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--kings-gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.archive-card__placeholder img {
  width: auto;
  height: 72%;
  object-fit: contain;
}

.archive-card__body {
  padding: 26px;
}

.archive-card__meta,
.single-hero__meta {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--kings-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.archive-card__meta span,
.single-hero__meta span {
  padding: 3px 10px;
  color: var(--kings-white);
  background: var(--kings-red);
}

.archive-card h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.archive-card h2 a,
.archive-card__link {
  text-decoration: none;
}

.archive-card__body > p {
  color: var(--kings-muted);
}

.archive-card__link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--kings-navy);
  font-weight: 900;
}

.archive-pagination {
  margin-top: 56px;
}

.archive-pagination .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--kings-border);
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.archive-pagination .current {
  color: var(--kings-white);
  background: var(--kings-navy);
}

.archive-empty {
  padding: 60px 24px;
  border: 1px solid var(--kings-border);
  background: var(--kings-ivory);
  text-align: center;
}

/* Single posts */
.single-hero__meta {
  color: #d9e4ed;
}

.single-hero h1 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
}

.single-article__body {
  padding-block: clamp(58px, 8vw, 100px);
}

.single-thumbnail {
  display: flex;
  min-height: 260px;
  margin-bottom: 52px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--kings-navy);
}

.single-thumbnail > img {
  display: block;
  width: 100%;
  height: auto;
}

.single-thumbnail--placeholder img {
  width: auto;
  height: min(360px, 45vw);
  padding: 28px;
  object-fit: contain;
}

.entry-content {
  line-break: strict;
  word-break: normal;
  word-break: auto-phrase;
}

.entry-content > * + * {
  margin-top: 1.5em;
}

.entry-content h2 {
  margin-top: 2.2em;
  padding: 14px 18px;
  border-left: 6px solid var(--kings-red);
  border-bottom: 2px solid var(--kings-gold);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.entry-content h3 {
  margin-top: 2em;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--kings-gold);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.entry-content img {
  border-radius: 6px;
}

.entry-content blockquote {
  margin-inline: 0;
  padding: 26px 30px;
  border-left: 6px solid var(--kings-gold);
  color: var(--kings-navy-dark);
  background: var(--kings-ivory);
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.5em;
}

.entry-content li + li {
  margin-top: 0.45em;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 14px;
  border: 1px solid var(--kings-border);
  text-align: left;
}

.entry-content th {
  color: var(--kings-white);
  background: var(--kings-navy);
}

.post-navigation-kings {
  display: grid;
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid var(--kings-border);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.post-navigation-kings > div:last-child {
  text-align: right;
}

.post-navigation-kings a {
  display: inline-flex;
  flex-direction: column;
  font-weight: 800;
  text-decoration: none;
}

.post-navigation-kings a span {
  color: var(--kings-red);
  font-size: 0.72rem;
}

.back-to-blog {
  margin: 42px 0 0;
  text-align: center;
}

/* Footer */
.site-footer {
  color: #cbd7e2;
  background: var(--kings-navy-dark);
  border-top: 6px solid var(--kings-gold);
}

.site-footer__main {
  display: grid;
  padding-block: 70px;
  grid-template-columns: minmax(260px, 1.2fr) minmax(180px, 0.7fr) minmax(280px, 1.1fr);
  gap: clamp(36px, 7vw, 88px);
}

.footer-brand {
	  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--kings-white);
	  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
}

.footer-brand:hover {
  color: var(--kings-gold);
}

.brand-logo-frame--footer {
	  --logo-frame-width: 60px;
	  --logo-frame-height: 76px;
	  border: 5px solid var(--kings-white);
	  border-radius: 4px;
}

.site-footer__catch {
  margin: 18px 0 0;
  color: var(--kings-white);
  font-weight: 700;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--kings-gold);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

.site-footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__nav li + li {
  margin-top: 8px;
}

.site-footer a {
  color: var(--kings-white);
}

.site-footer a:hover {
  color: var(--kings-gold);
}

.site-footer__company p {
  margin-bottom: 14px;
}

.site-footer__company a {
  overflow-wrap: anywhere;
}

.site-footer__line-link,
.site-footer__line-link:visited {
  display: inline-flex;
  min-height: 52px;
  margin-top: 6px;
  padding: 6px 12px 6px 6px;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 6px;
  align-items: center;
  gap: 10px;
  color: var(--kings-white);
  font-weight: 850;
  text-decoration: none;
}

.site-footer__line-link:hover,
.site-footer__line-link:focus-visible {
  border-color: #06c755;
  color: var(--kings-white);
  background: rgb(255 255 255 / 8%);
}

.mobile-line-button {
  display: none;
}

.site-footer__phone {
  font-size: 1.35rem;
  font-weight: 900;
  text-decoration: none;
}

.site-footer__bottom {
  border-top: 1px solid rgb(255 255 255 / 13%);
}

.site-footer__bottom .site-container {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.75rem;
}

.site-footer__bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  text-decoration: none;
}

/* Shared content templates */
.page-header,
.entry-header {
  margin-bottom: 36px;
  border-bottom: 3px solid var(--kings-gold);
}

.post-list {
  display: grid;
  gap: 24px;
}

.post-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--kings-border);
  border-left: 6px solid var(--kings-red);
  border-radius: var(--kings-radius);
  background: var(--kings-white);
  box-shadow: var(--kings-shadow);
}

.post-card__title {
  margin: 0.15em 0;
}

.post-card__title a {
  text-decoration: none;
}

.post-card__date,
.entry-meta {
  color: var(--kings-muted);
  font-size: 0.9rem;
}

.entry-content > * {
  max-width: 100%;
}

.entry-content .alignwide {
  width: min(1100px, 100vw - 40px);
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.entry-content .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.entry-thumbnail img {
  display: block;
  border-radius: var(--kings-radius);
}

.error-404 {
  text-align: center;
}

.error-404__code {
  margin: 0;
  color: var(--kings-gold);
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 900;
  line-height: 1;
}

.comments-area {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--kings-border);
}

input,
textarea {
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid #8996a3;
  border-radius: 6px;
  font: inherit;
}

@media (max-width: 1180px) {
  .site-header__panel {
    gap: 24px;
  }

  .primary-menu {
    gap: 18px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  }
}

@media (max-width: 980px) {
  .site-container,
  .site-container--wide {
    width: min(calc(100% - 40px), var(--kings-container));
  }

	  .site-header__inner {
	    min-height: 84px;
	    gap: 12px;
  }

  .site-header__actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-header__panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100svh - 84px);
    overflow-y: auto;
    padding: 30px max(20px, calc((100vw - var(--kings-container)) / 2));
    border-bottom: 5px solid var(--kings-gold);
    align-items: stretch;
    flex-direction: column;
    background: var(--kings-white);
    box-shadow: 0 24px 44px rgb(3 29 56 / 18%);
  }

  .site-header__panel.is-open {
    display: flex;
  }

  .primary-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-menu li {
    border-bottom: 1px solid var(--kings-border);
  }

  .primary-menu a {
    padding: 14px 4px;
    font-size: 1rem;
  }

	  .header-phone {
    display: block;
    padding: 8px 12px;
    border: 1px solid var(--kings-border);
    text-align: center;
  }

  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero__inner {
    padding-top: 80px;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  }

  .hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
  }

  .service-card {
    min-height: 640px;
    padding: 40px 34px;
  }

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

  .message__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.85fr);
  }

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

  .news-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

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

  .flow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-list li:nth-child(3)::after {
    display: none;
  }

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

@media (max-width: 768px) {
  .section-heading--split,
  .company__inner,
  .contact-cta__inner {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    align-items: start;
    gap: 22px;
  }

	  .hero__gold-ring {
	    top: 50%;
	    right: auto;
	    left: 50%;
	    width: min(84vw, 390px);
	    height: min(84vw, 390px);
	    border-width: 58px;
	    transform: translate(-50%, -50%);
	  }

  .hero__inner {
    padding-top: 68px;
    padding-bottom: 0;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 650px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.25rem);
  }

	  .hero__visual {
	    position: relative;
	    justify-self: center;
	    width: min(72vw, 390px);
	    margin-top: 12px;
	    overflow: visible;
	  }

	  .hero__red-line {
	    right: -20%;
	    bottom: 8%;
	    width: 140%;
	    height: 12px;
	  }

	  .hero__visual-star {
	    top: 8%;
	    right: -2%;
	  }

  .king-kun--hero {
    margin-bottom: 0;
  }

  .service-grid,
  .three-good__grid,
  .message__inner,
  .recruit__inner,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

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

  .three-good__grid::before {
    top: 8%;
    right: auto;
    bottom: 8%;
    left: 31px;
    width: 3px;
    height: auto;
  }

  .value-card {
    min-height: auto;
    padding: 30px 26px 30px 100px;
    text-align: left;
  }

  .value-card__number {
    position: absolute;
    top: 50%;
    left: 22px;
    margin: 0;
    transform: translateY(-50%);
  }

  .message {
    padding-bottom: 0;
  }

  .message__stripe {
    right: -210px;
  }

  .message__visual {
    min-height: 440px;
  }

  .king-kun--message {
    right: 50%;
    bottom: -5px;
    width: min(78vw, 340px);
    transform: translateX(50%);
  }

  .message__gold-disc {
    right: 50%;
    bottom: -100px;
    transform: translateX(50%);
  }

  .social-groups--message {
    grid-template-columns: 1fr;
  }

  .recruit__inner {
    gap: 0;
  }

  .recruit__content {
    grid-row: 1;
  }

  .recruit__visual {
    min-height: 430px;
    grid-row: 2;
  }

  .king-kun--recruit {
    right: 50%;
    bottom: -78px;
    width: min(78vw, 340px);
    transform: translateX(50%);
  }

  .company__heading {
    position: static;
  }

	  .contact-cta__lines {
	    top: -190px;
	    right: -210px;
	    width: 280px;
	    height: 280px;
	    border-width: 44px;
	  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .lower-hero,
  .lower-hero__inner {
    min-height: auto;
  }

  .lower-hero__inner {
    padding-top: 64px;
    padding-bottom: 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lower-hero h1 {
    font-size: clamp(2.35rem, 6vw, 3rem);
  }

  .lower-hero__visual {
    justify-self: center;
    width: min(78vw, 430px);
    min-height: 440px;
  }

  .lower-hero__disc {
    top: 5%;
    left: 50%;
    width: min(76vw, 390px);
    height: min(76vw, 390px);
    border-width: 60px;
    transform: translateX(-50%);
  }

  .lower-hero__stripe {
    right: -25%;
    bottom: 16%;
    width: 150%;
  }

  .king-kun--lower {
    right: 50%;
    width: min(74vw, 350px);
    transform: translateX(50%);
  }

  .feature-grid,
  .service-detail--moving .feature-grid,
  .fleet-section__inner,
  .pricing__inner,
  .recruit-band__inner,
  .lower-contact__inner {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 16px;
  }

  .feature-card {
    min-height: auto;
  }

  .pricing__inner,
  .lower-contact__inner {
    gap: 26px;
  }

  .recruit-band__copy {
    grid-row: 1;
  }

  .recruit-band__visual {
    min-height: 350px;
    grid-row: 2;
  }

  .king-kun--recruit-band {
    right: 50%;
    bottom: -120px;
    width: min(74vw, 310px);
    transform: translateX(50%);
  }

  .contact-method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-container,
  .site-container--wide {
    width: min(calc(100% - 32px), var(--kings-container));
  }

  .section {
    padding-block: 70px;
  }

  .section-title {
    font-size: clamp(1.65rem, 7.8vw, 2.2rem);
  }

  .section-label {
    gap: 9px;
    font-size: 0.7rem;
  }

  .section-label::before,
  .section-label::after {
    flex-basis: 24px;
    width: 24px;
  }

	  .brand-logo-frame--header {
	    --logo-frame-width: 36px;
	    --logo-frame-height: 45px;
	  }

	  .brand__company-name {
	    font-size: 0.72rem;
	  }

	  .site-header__inner {
	    min-height: 78px;
	    gap: 8px;
  }

  .site-header__panel {
    max-height: calc(100svh - 78px);
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    padding: 9px;
  }

	  .button--header {
	    min-height: 44px;
	    padding: 8px 12px;
	    font-size: 0.76rem;
	  }

	  .hero__inner {
	    padding-top: 52px;
	  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 9.4vw, 2.45rem);
    line-height: 1.28;
  }

  .hero__lead {
    font-size: 1.1rem;
  }

  .hero__actions,
  .recruit__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .recruit__actions .button {
    width: 100%;
  }

  .social-group {
    padding: 16px;
  }

  .social-links {
    align-items: stretch;
    flex-direction: column;
  }

  .social-links a {
    width: 100%;
    justify-content: center;
  }

  .fleet-section__inner {
    gap: 30px;
  }

  .fleet-section__media {
    border-width: 5px;
  }

  .fleet-section__media img {
    object-position: 53% center;
  }

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

  .recruit-band__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .recruit-band__actions .button {
    width: 100%;
  }

	  .hero__visual {
	    width: min(76vw, 310px);
	    margin-top: 4px;
	  }

	  .hero__gold-ring {
	    width: min(80vw, 300px);
	    height: min(80vw, 300px);
	    border-width: 46px;
	  }

	  .hero__visual-star {
	    right: 0;
	    font-size: 4.25rem;
	  }

  .intro__text {
    text-align: left;
  }

  .service-card {
    padding: 34px 24px;
  }

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

  .value-card {
    padding-left: 88px;
  }

  .value-card__number {
    left: 14px;
  }

  .message__visual,
  .recruit__visual {
    min-height: 390px;
  }

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

  .news-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .company-list > div {
    padding-block: 16px;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .company-list small {
    display: block;
    margin-left: 0;
  }

	  .contact-cta__actions {
	    min-width: 0;
	  }

	  .contact-cta__lines {
	    top: -115px;
	    right: -165px;
	    width: 210px;
	    height: 210px;
	    border-width: 34px;
	  }

  .contact-phone strong {
    font-size: 1.55rem;
  }

  .site-footer__main {
    padding-block: 56px;
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__bottom .site-container {
    padding-block: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .breadcrumbs ol {
    min-height: 44px;
    flex-wrap: nowrap;
  }

  .breadcrumbs li:last-child {
    min-width: 0;
  }

  .lower-section {
    padding-block: 68px;
  }

  .lower-heading h2,
  .pricing h2,
  .recruit-band h2,
  .lower-contact h2 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .lower-hero__inner {
    padding-top: 48px;
  }

  .lower-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2rem, 9.2vw, 2.55rem);
  }

  .service-detail--moving .lower-hero h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .lower-hero__copy > p:not(.section-label) {
    margin-bottom: 26px;
    font-size: 1rem;
  }

  .lower-hero__copy .button {
    width: 100%;
  }

  .lower-hero__visual {
    width: min(82vw, 330px);
    min-height: 350px;
  }

  .lower-hero__disc {
    width: min(74vw, 290px);
    height: min(74vw, 290px);
    border-width: 44px;
  }

  .king-kun--lower {
    width: min(68vw, 275px);
  }

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

  .service-menu__grid li {
    min-height: 88px;
    padding: 18px 22px;
  }

  .service-area {
    padding: 22px 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .service-area__text--split .service-area__line {
    display: block;
  }

  .service-area__text--split {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-card {
    padding: 30px 24px;
  }

  .flow-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow-list li {
    min-height: 94px;
    padding: 18px 22px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    text-align: left;
  }

  .flow-list li strong {
    font-size: 1rem;
    white-space: normal;
  }

  .flow-list li:not(:last-child)::after {
    display: block;
    top: auto;
    right: auto;
    bottom: -15px;
    left: 42px;
    width: 3px;
    height: 28px;
  }

  .faq-item summary {
    padding: 20px 16px;
    gap: 12px;
  }

  .faq-item > div {
    padding: 0 16px 24px;
    gap: 12px;
  }

  .recruit-band__shape {
    right: -170px;
    bottom: -90px;
    width: 250px;
    height: 250px;
    border-width: 42px;
  }

  .recruit-band__visual {
    min-height: 310px;
  }

  .king-kun--recruit-band {
    bottom: -90px;
    width: min(70vw, 270px);
  }

  .contact-method {
    min-height: auto;
    padding: 28px 22px;
  }

  .contact-form-slot__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-slot__actions .button {
    width: 100%;
  }

  .archive-hero::after,
  .single-hero::after {
    top: -90px;
    right: -130px;
    width: 220px;
    height: 220px;
    border-width: 38px;
  }

  .archive-hero h1,
  .single-hero h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

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

  .archive-card__body {
    padding: 22px;
  }

  .single-thumbnail {
    min-height: 190px;
    margin-bottom: 36px;
  }

  .single-thumbnail--placeholder img {
    height: 230px;
  }

  .entry-content table {
    display: block;
    overflow-x: auto;
  }

  .post-navigation-kings {
    grid-template-columns: 1fr;
  }

  .post-navigation-kings > div:last-child {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .pricing-block {
    gap: 22px;
  }

  .price-rule-grid,
  .extra-fee-grid,
  .van-condition-grid {
    grid-template-columns: 1fr;
  }

  .price-example-grid,
  .distance-fee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-title-row {
    align-items: flex-start;
  }
}

@media (max-width: 390px) {
  .pricing-title-row h3,
  .pricing-subsection--major > h3 {
    font-size: 1.3rem;
  }

  .price-example-grid > div,
  .distance-fee-grid > div,
  .cargo-space-grid > div,
  .responsive-price-table th,
  .responsive-price-table td {
    padding: 11px 7px;
  }

  .responsive-price-table {
    font-size: 0.9rem;
  }

  .price-rule-card,
  .extra-fee-grid article,
  .van-condition-grid > div,
  .distance-note {
    padding: 16px;
  }
}

@media (max-width: 520px) {
  .service-detail--moving .pricing-block {
    padding: 20px 16px;
  }

  .service-detail--moving .distance-fee-grid {
    grid-template-columns: 1fr;
  }

  .service-detail--moving .distance-fee-grid strong,
  .service-detail--moving .cargo-space-grid strong,
  .service-detail--moving .responsive-price-table th,
  .service-detail--moving .responsive-price-table td {
    white-space: nowrap;
  }

  .service-detail--moving .pricing-subsection--major {
    padding: 20px 14px;
  }

  .service-detail--moving .responsive-price-table {
    font-size: 0.84rem;
  }
}

@media (max-width: 900px) {
  .service-detail--moving .pricing__heading {
    margin-bottom: 42px;
  }

  .service-detail--moving .pricing-block {
    gap: 58px;
  }

  .moving-route-prices {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .moving-route-prices::before {
    display: none;
  }

  .moving-route-price {
    min-height: 150px;
  }
}

@media (max-width: 600px) {
  .service-detail--moving .pricing-block {
    padding: 0;
    gap: 52px;
  }

  .moving-pricing-group {
    gap: 18px;
  }

  .moving-pricing-group + .moving-pricing-group {
    padding-top: 38px;
  }

  .moving-pricing-group > h3,
  .moving-pricing-group .pricing-title-row h3 {
    font-size: 1.5rem;
  }

  .moving-route-prices {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .moving-route-prices::before {
    display: block;
    top: 24px;
    right: auto;
    bottom: 24px;
    left: 26px;
    width: 3px;
    height: auto;
  }

  .moving-route-price {
    min-height: 0;
    padding: 18px 18px 18px 62px;
    align-content: start;
    text-align: left;
  }

  .moving-route-price__point {
    top: 50%;
    left: 17px;
    transform: translateY(-50%);
  }

  .moving-route-price strong {
    font-size: 1.4rem;
  }

  .moving-over-distance {
    padding: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .moving-over-distance strong {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .moving-over-distance strong span:last-child {
    white-space: nowrap;
  }

  .distance-route {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .distance-route i {
    line-height: 1;
    transform: rotate(90deg);
    justify-self: center;
  }

  .service-detail--moving .extra-fee-card,
  .service-detail--moving .van-condition-grid > div {
    padding: 22px 20px;
  }

  .service-detail--moving .extra-fee-price {
    font-size: 1.35rem;
  }

  .service-detail--moving .responsive-price-table {
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .service-detail--moving .responsive-price-table table,
  .service-detail--moving .responsive-price-table tbody,
  .service-detail--moving .responsive-price-table tr,
  .service-detail--moving .responsive-price-table th,
  .service-detail--moving .responsive-price-table td {
    display: block;
    width: 100%;
  }

  .service-detail--moving .responsive-price-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
  }

  .service-detail--moving .responsive-price-table tbody {
    display: grid;
    gap: 12px;
  }

  .service-detail--moving .responsive-price-table tr {
    overflow: hidden;
    border: 1px solid #d8dee5;
    border-radius: 9px;
    background: var(--kings-white);
    box-shadow: 0 7px 20px rgb(3 29 56 / 6%);
  }

  .service-detail--moving .responsive-price-table tbody th,
  .service-detail--moving .responsive-price-table td {
    padding: 13px 16px;
    border: 0;
    font-size: 1rem;
    white-space: normal;
  }

  .service-detail--moving .responsive-price-table tbody th {
    color: var(--kings-white);
    background: var(--kings-navy);
    text-align: left;
  }

  .service-detail--moving .responsive-price-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: right;
  }

  .service-detail--moving .responsive-price-table td + td {
    border-top: 1px solid #e5e9ed;
  }

  .service-detail--moving .responsive-price-table td::before {
    color: var(--kings-muted);
    content: attr(data-label);
    font-weight: 700;
    text-align: left;
  }

  .service-detail--moving .cargo-space-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-detail--moving .cargo-space-grid > div {
    padding: 12px 8px;
  }

  .service-detail--moving .cargo-space-grid strong {
    font-size: 1rem;
  }

  .service-detail--moving .pricing-cta {
    margin-top: 52px;
    padding: 24px 20px;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .service-detail--moving .pricing-cta .button {
    width: 100%;
    padding-inline: 12px;
  }
}

@media (max-width: 768px) {
  .line-contact__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .line-contact__qr-card {
    width: min(100%, 340px);
    justify-self: center;
  }

  .line-contact__content {
    text-align: center;
  }

  .line-contact__content > p:not(.section-label) {
    margin-inline: auto;
  }

  .line-contact__content .button--line,
  .lower-contact__actions .button--line {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .mobile-line-button,
  .mobile-line-button:visited {
    position: fixed;
    z-index: 90;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    display: inline-flex;
    min-height: 56px;
    padding: 7px 13px 7px 7px;
    border: 2px solid #06c755;
    border-radius: 8px;
    align-items: center;
    gap: 8px;
    color: var(--kings-navy-dark);
    background: var(--kings-white);
    font-size: 0.82rem;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
  }

  .mobile-line-button:hover,
  .mobile-line-button:focus-visible {
    color: var(--kings-navy-dark);
    background: #eefbf3;
  }

  .mobile-line-button:focus-visible {
    outline: 3px solid var(--kings-gold);
    outline-offset: 3px;
  }

  .site-footer__bottom {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 390px) {
  .line-contact__qr-card {
    width: min(100%, 290px);
    padding: 16px;
  }

  .line-contact__content .button--line {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
  }

  .mobile-line-button,
  .mobile-line-button:visited {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .kings-reveal-enabled .kings-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media print {
  .mobile-line-button {
    display: none !important;
  }

  .kings-reveal-enabled .kings-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
