/* ROYAL PACKERS & MOVERS — core styles (cinematic redesign) */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --white: #ffffff;
  --warm-white: #f7f3ed;
  --warm-white-2: #efe9e1;
  --soft-grey: #e3ddd4;
  --grey: #8a8279;
  --charcoal: #16120f;
  --ink: #2b2622;
  --red: #d81f26;
  --red-dark: #9d1319;
  --red-glow: rgba(216, 31, 38, 0.14);
  --green: #1d7a46;
  --max: 1320px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-2: cubic-bezier(0.65, 0, 0.35, 1);
  --grad-red: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  --grad-tint: linear-gradient(180deg, #faf7f2 0%, #f1ebe2 100%);
  --grad-brand: linear-gradient(135deg, rgba(216,31,38,0.07) 0%, rgba(29,122,70,0.06) 60%, rgba(255,255,255,0) 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.62;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section { padding: 104px 0; position: relative; }
.section--sm { padding: 78px 0; }
.section--tint { background: var(--warm-white); }
.section--tint-2 { background: var(--grad-tint); }
.section--brand { background: #fbf8f4; position: relative; }
.section--brand::before { content: ""; position: absolute; inset: 0; background: var(--grad-brand); pointer-events: none; }
.section--dark { background: var(--charcoal); color: rgba(255,255,255,0.72); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.66); }

/* Section index marker */
.sec-num {
  position: absolute; top: 42px; right: 34px; font-size: 0.68rem; letter-spacing: 0.3em;
  color: rgba(0,0,0,0.22); font-weight: 600;
}
.bg-word {
  position: absolute; left: -0.06em; font-family: "Inter", sans-serif; font-weight: 700;
  font-size: clamp(5rem, 16vw, 15rem); line-height: 0.8; letter-spacing: -0.05em;
  color: rgba(22,18,15,0.035); pointer-events: none; user-select: none; white-space: nowrap;
}

h1, h2, h3, h4 { font-weight: 600; line-height: 1.02; letter-spacing: -0.035em; color: var(--charcoal); }
h1 { font-size: clamp(3rem, 9vw, 7.4rem); }
h2 { font-size: clamp(2.1rem, 5vw, 4.1rem); }
h3 { font-size: clamp(1.3rem, 2.1vw, 1.8rem); }
p { color: #5a534d; }
.lead { font-size: clamp(1rem, 1.25vw, 1.14rem); max-width: 58ch; }
.display { font-size: clamp(2.6rem, 7.4vw, 6rem); line-height: 0.95; letter-spacing: -0.045em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--grad-red); }
.eyebrow--green { color: var(--green); }
.eyebrow--green::before { background: var(--green); }
.eyebrow--light { color: #fff; }
.eyebrow--light::before { background: var(--red); }
.serif { font-family: "Playfair Display", Georgia, serif; font-style: italic; font-weight: 500; }
.rule { height: 1px; background: linear-gradient(90deg, var(--red), rgba(216,31,38,0) 60%); margin: 26px 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 32px !important; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; border: 1px solid transparent;
  transition: all 0.5s var(--ease); border-radius: 2px; background: none; position: relative; overflow: hidden;
}
.btn span { position: relative; z-index: 2; }
.btn--primary { background: var(--grad-red); color: #fff; box-shadow: 0 14px 30px -14px rgba(216,31,38,0.7); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -16px rgba(216,31,38,0.75); }
.btn--ghost { border-color: rgba(22,18,15,0.22); color: var(--charcoal); }
.btn--ghost:hover { border-color: var(--charcoal); background: var(--charcoal); color: #fff; transform: translateY(-3px); }
.btn--light { border: 1px solid rgba(255,255,255,0.45); color: #fff; }
.btn--light:hover { background: #fff; color: var(--charcoal); transform: translateY(-3px); }
.btn__arrow { display: inline-block; transition: transform 0.5s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(6px); }

/* Header */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  background: rgba(255,255,255,0.86); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.55s var(--ease), box-shadow 0.4s, background 0.4s;
}
.header::after { content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: var(--grad-red); transition: width 0.6s var(--ease); }
.header--scrolled::after { width: 100%; }
.header--hidden { transform: translateY(-100%); }
.header--scrolled { box-shadow: 0 10px 34px rgba(0,0,0,0.07); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 24px; }
.logo img { height: 59px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--charcoal); padding: 8px 0; position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--grad-red); transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__item { position: relative; }
.nav__toggle { display: inline-flex; align-items: center; gap: 6px; border: 0; background: none; }
.nav__caret { width: 7px; height: 7px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg) translate(-2px,-2px); transition: transform 0.4s var(--ease); }
.nav__item:hover .nav__caret { transform: rotate(225deg) translate(-1px,-1px); }
.dropdown {
  position: absolute; top: calc(100% + 16px); left: -24px; min-width: 306px;
  background: #fff; border: 1px solid rgba(0,0,0,0.06); padding: 14px 0 10px;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease), clip-path 0.55s var(--ease), visibility 0.4s;
  box-shadow: 0 34px 70px -24px rgba(0,0,0,0.28);
}
.dropdown::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 2px; background: var(--grad-red); }
.nav__item:hover .dropdown, .nav__item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); clip-path: inset(0 0 0 0); }
.dropdown a {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 11px 26px; font-size: 0.86rem; color: #4a443f; transition: 0.35s var(--ease);
}
.dropdown a::after { content: "→"; opacity: 0; transform: translateX(-8px); transition: 0.35s var(--ease); color: var(--red); }
.dropdown a:hover { background: var(--warm-white); color: var(--red); padding-left: 32px; }
.dropdown a:hover::after { opacity: 1; transform: translateX(0); }
.header__cta { display: inline-flex; padding: 14px 26px; }
.burger { display: none; width: 46px; height: 46px; border: 1px solid rgba(0,0,0,0.12); background: none; position: relative; }
.burger span { position: absolute; left: 13px; width: 20px; height: 1.6px; background: var(--charcoal); transition: 0.4s var(--ease); }
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 25px; }
.burger.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { top: 22px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 890; background: var(--warm-white);
  transform: translateX(100%); transition: transform 0.6s var(--ease);
  overflow-y: auto; padding: 108px 26px 60px; display: flex; flex-direction: column;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a { display: block; padding: 15px 0; font-size: 1.15rem; font-weight: 500; color: var(--charcoal); border-bottom: 1px solid rgba(0,0,0,0.07); }
.m-acc__head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,0.07); background: none; border-width: 0 0 1px;
  font-size: 1.15rem; font-weight: 500; color: var(--charcoal); text-align: left;
}
.m-acc__head span:last-child { color: var(--red); font-size: 1.4rem; line-height: 1; }
.m-acc__body { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.m-acc__body a { padding-left: 16px; font-size: 0.96rem; color: #5a534d; font-weight: 400; }
.mobile-menu .btn { margin-top: 30px; }

/* ============ HERO ============ */
.hero {
  position: relative; padding: 148px 0 90px; overflow: hidden; min-height: 92svh;
  display: flex; align-items: center;
  background:
    radial-gradient(120% 80% at 88% 78%, rgba(216,31,38,0.10) 0%, rgba(216,31,38,0) 58%),
    radial-gradient(80% 60% at 8% 12%, rgba(29,122,70,0.07) 0%, rgba(29,122,70,0) 60%),
    linear-gradient(180deg, #ffffff 0%, #faf7f2 46%, #efe9e1 100%);
}
.hero__inner { position: relative; z-index: 3; width: 100%; padding-bottom: 30px; }
.hero__word {
  position: absolute; left: -0.05em; top: 2%; font-weight: 700; letter-spacing: -0.06em;
  font-size: clamp(6rem, 21vw, 20rem); line-height: 0.78; color: rgba(22,18,15,0.032);
  pointer-events: none; user-select: none; z-index: 1; white-space: nowrap;
}
.hero__grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: linear-gradient(90deg, rgba(22,18,15,0.045) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  opacity: 0.8;
}
.hero__content { max-width: 60%; position: relative; z-index: 4; }
.hero h1 { letter-spacing: -0.05em; text-transform: uppercase; font-weight: 700; font-size: 90px; }
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: block; transform: translateY(105%); }
.hero__line em { font-style: normal; color: var(--red); }
.hero__sub { margin-top: 20px; font-size: clamp(1.1rem, 1.7vw, 1.5rem); color: var(--charcoal); }
.hero__text { margin-top: 14px; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__stage { position: absolute; inset: auto 0 0 0; height: 62%; z-index: 2; pointer-events: none; }
.hero__road {
  position: absolute; left: 0; right: 0; bottom: 108px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22,18,15,0.2) 14%, rgba(22,18,15,0.2) 86%, transparent);
}
.hero__road::after {
  content: ""; position: absolute; left: 0; right: 0; top: 16px; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(22,18,15,0.14) 0 30px, transparent 30px 66px);
  animation: roadDash 1.5s linear infinite;
}
.hero__route {
  position: absolute; right: 2%; bottom: 118px; width: min(56vw, 780px); height: 200px;
  opacity: 0; transition: opacity 1s ease 1.9s; z-index: 1;
}
.hero__route path { stroke: var(--red); stroke-width: 1.4; fill: none; stroke-dasharray: 6 8; opacity: 0.45; }
.hero__route circle { fill: var(--red); }
.hero__route text { font-size: 11px; letter-spacing: 0.24em; fill: rgba(22,18,15,0.45); text-transform: uppercase; }
.is-ready .hero__route { opacity: 1; }

.hero__truck {
  position: absolute; bottom: 84px; right: -2%; width: clamp(400px, 46vw, 880px);
  transform: translateX(118%); z-index: 3;
}
.hero__truck img { width: 100%; height: auto; filter: drop-shadow(0 40px 40px rgba(22,18,15,0.22)); }
.hero__dust { position: absolute; bottom: 108px; left: 0; width: 100%; height: 90px; pointer-events: none; opacity: 0; }
.hero__dust span {
  position: absolute; bottom: 0; width: 7px; height: 7px; border-radius: 50%;
  background: rgba(22,18,15,0.07); animation: dust 3s linear infinite;
}
.hero__scroll {
  display: flex; align-items: center; gap: 12px; padding: 30px 0 34px;
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey);
  position: relative; z-index: 4;
}
.hero__scroll i { display: block; width: 64px; height: 2px; background: var(--grad-red); transform-origin: left; animation: scrollLine 2.6s var(--ease) infinite; }
.hero__marks { display: flex; gap: 34px; margin-top: 30px; flex-wrap: wrap; position: relative; z-index: 4; }
.hero__mark { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey); display: flex; align-items: center; gap: 9px; }
.hero__mark::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.hero__mark:nth-child(2)::before { background: var(--red); }

/* Page hero (inner pages) */
.page-hero {
  padding: 124px 0 84px; position: relative; overflow: hidden;
  background:
    radial-gradient(80% 120% at 92% 10%, rgba(216,31,38,0.09) 0%, rgba(216,31,38,0) 60%),
    linear-gradient(180deg, #fbf8f4 0%, var(--warm-white) 100%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.page-hero h1 { max-width: 16ch; font-size: clamp(2.5rem, 6.4vw, 3.2rem); text-transform: uppercase; font-weight: 700; letter-spacing: -0.045em; }
.page-hero .lead { margin-top: 22px; }
.crumbs { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--grey); margin-bottom: 22px; }
.crumbs a:hover { color: var(--red); }

/* Story / split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 74px; align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; overflow: hidden; border-radius: 3px; }
.split__media img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 4/3; }
.split__media::after { content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: var(--grad-red); transform: scaleX(0); transform-origin: left; transition: transform 1.1s var(--ease) 0.3s; }
.media-reveal.is-in.split__media::after, .is-in > .split__media::after { transform: scaleX(1); }
.media-reveal img { transform: scale(1.14); transition: transform 1.6s var(--ease); }
.media-reveal.is-in img { transform: scale(1); }

/* Cinematic story bands */
.band { position: relative; overflow: hidden; padding: 0; }
.band__media { position: relative; height: clamp(300px, 46vw, 560px); overflow: hidden; }
.band__media img { width: 100%; height: 118% !important; object-fit: cover; }
.band__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,18,15,0.72) 0%, rgba(22,18,15,0.25) 55%, rgba(22,18,15,0.05) 100%); }
.band__copy { position: absolute; inset: 0; z-index: 3; display: flex; align-items: center; }
.band__copy h2 { color: #fff; text-transform: uppercase; font-weight: 700; letter-spacing: -0.04em; }
.band__copy p { color: rgba(255,255,255,0.72); margin-top: 18px; }
.band--right .band__copy { justify-content: flex-end; text-align: right; }
.band--right .band__media::after { background: linear-gradient(270deg, rgba(22,18,15,0.72) 0%, rgba(22,18,15,0.25) 55%, rgba(22,18,15,0.05) 100%); }
.band--right .band__copy .eyebrow { flex-direction: row-reverse; }

/* ===== Service editorial rows (compact, controlled image size) ===== */
.srow {
  display: grid; grid-template-columns: minmax(280px, 400px) minmax(300px, 500px);
  gap: 64px; align-items: center; padding: 52px 0;
  border-top: 1px solid rgba(22,18,15,0.09); position: relative;
}
.srow:nth-child(even) { justify-content: end; }
.srow:nth-child(even) .srow__media { order: 2; }
.srow__media {
  position: relative; overflow: hidden; border-radius: 3px; width: 100%;
  box-shadow: 0 26px 50px -30px rgba(22,18,15,0.5);
}
.srow__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 1s var(--ease); }
.srow:nth-child(even) .srow__media img { aspect-ratio: 5/4; }
.srow:hover .srow__media img { transform: scale(1.05); }
.srow__media::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(216,31,38,0.12), rgba(22,18,15,0.18));
  opacity: 0; transition: opacity 0.7s var(--ease);
}
.srow:hover .srow__media::after { opacity: 1; }
.srow__num {
  display: block; font-size: clamp(2.4rem, 4.4vw, 3.6rem); font-weight: 700;
  line-height: 1; letter-spacing: -0.05em; color: transparent;
  -webkit-text-stroke: 1px rgba(216,31,38,0.55); margin-bottom: 10px;
}
.srow h3 { margin: 0 0 12px; font-size: clamp(1.5rem, 2.5vw, 2.15rem); text-transform: uppercase; letter-spacing: -0.03em; }
.srow p { font-size: 0.98rem; max-width: 46ch; }
.srow::after { content: ""; position: absolute; left: 0; top: -1px; height: 1px; width: 0; background: var(--grad-red); transition: width 1.2s var(--ease); }
.srow.is-in::after, .srow:hover::after { width: 34%; }

.link-arrow { display: inline-flex; align-items: center; gap: 12px; margin-top: 20px; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--charcoal); }
.link-arrow::after { content: ""; width: 28px; height: 2px; background: var(--grad-red); transition: width 0.5s var(--ease); }
.link-arrow:hover::after { width: 52px; }

/* Process */
.process { position: relative; }
.process__track { position: relative; margin-top: 62px; }
.process__line { position: absolute; left: 0; top: 27px; width: 100%; height: 2px; background: rgba(22,18,15,0.1); }
.process__line i { display: block; height: 100%; width: 0; background: var(--grad-red); transition: width 0.5s linear; box-shadow: 0 0 18px rgba(216,31,38,0.45); }
.process__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; }
.pstep { padding-top: 62px; position: relative; opacity: 0.34; transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); transform: translateY(6px); }
.pstep::before {
  content: ""; position: absolute; top: 21px; left: 0; width: 13px; height: 13px;
  border-radius: 50%; background: #fff; border: 2px solid rgba(22,18,15,0.2); transition: 0.45s var(--ease);
}
.pstep.is-active { opacity: 1; transform: none; }
.pstep.is-active::before { background: var(--red); border-color: var(--red); transform: scale(1.2); box-shadow: 0 0 0 8px var(--red-glow); }
.pstep__n { font-size: clamp(1.5rem, 2.4vw, 2.2rem); font-weight: 700; letter-spacing: -0.04em; color: transparent; -webkit-text-stroke: 1px rgba(216,31,38,0.5); }
.pstep.is-active .pstep__n { color: var(--red); -webkit-text-stroke: 0; }
.pstep h4 { margin: 6px 0 8px; font-size: 1rem; letter-spacing: 0.14em; text-transform: uppercase; }
.pstep p { font-size: 0.88rem; }

/* Why — editorial asymmetric */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.why__statement h2 { text-transform: uppercase; font-weight: 700; }
.why__statement .lead { margin-top: 22px; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 40px; }
.why-item { position: relative; padding-top: 20px; border-top: 1px solid rgba(22,18,15,0.12); }
.why-item:nth-child(even) { transform: translateY(30px); }
.why-item span { font-size: 0.68rem; letter-spacing: 0.24em; color: var(--red); font-weight: 700; }
.why-item h4 { margin: 12px 0 8px; font-size: 1rem; letter-spacing: -0.01em; }
.why-item p { font-size: 0.88rem; }

/* Legacy grid (inner pages) */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(22,18,15,0.08); margin-top: 56px; }
.why-grid .why-item { background: #fff; padding: 34px 28px 38px; border-top: 0; transform: none; }
.section--tint .why-grid .why-item { background: var(--warm-white); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { position: relative; padding-top: 26px; border-top: 2px solid rgba(22,18,15,0.12); }
.stat:first-child { border-top-color: var(--red); }
.stat__n { font-size: clamp(3rem, 7.4vw, 6rem); font-weight: 700; letter-spacing: -0.055em; color: var(--charcoal); line-height: 0.9; }
.stat__n em { font-style: normal; color: var(--red); }
.section--dark .stat { border-top-color: rgba(255,255,255,0.16); }
.section--dark .stat__n { color: #fff; }
.stat__l { margin-top: 14px; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey); }
.note { margin-top: 32px; font-size: 0.76rem; color: var(--grey); }
.section--dark .note { color: rgba(255,255,255,0.4); }

/* Testimonials */
.tslider { position: relative; margin-top: 34px; overflow: hidden; }
.tslider__track { display: flex; transition: transform 0.85s var(--ease); }
.tslide { min-width: 100%; padding-right: 40px; }
.tslide blockquote {
  font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.6rem, 3.6vw, 3rem);
  line-height: 1.22; color: var(--charcoal); letter-spacing: -0.02em; max-width: 22ch;
}
.section--dark .tslide blockquote { color: #fff; }
.tslide cite { display: block; margin-top: 28px; font-style: normal; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey); }
.tquote { font-family: "Playfair Display", serif; font-size: clamp(5rem, 12vw, 11rem); line-height: 0.7; color: var(--red); opacity: 0.16; display: block; }
.tnav { display: flex; gap: 12px; margin-top: 38px; }
.tnav button { width: 50px; height: 50px; border: 1px solid rgba(22,18,15,0.18); background: none; transition: 0.4s var(--ease); }
.tnav button:hover { background: var(--red); color: #fff; border-color: var(--red); }
.section--dark .tnav button { border-color: rgba(255,255,255,0.24); color: #fff; }

/* Gallery */
.gal-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 36px 0 32px; }
.gal-filters button {
  padding: 11px 22px; border: 1px solid rgba(22,18,15,0.14); background: none;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; transition: 0.35s var(--ease);
}
.gal-filters button.is-active, .gal-filters button:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gal-item { position: relative; overflow: hidden; cursor: pointer; background: var(--soft-grey); border-radius: 3px; }
.gal-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 1s var(--ease); }
.gal-item:hover img { transform: scale(1.07); }
.gal-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 18px 20px; color: #fff;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  background: linear-gradient(transparent, rgba(22,18,15,0.72));
}
.lightbox { position: fixed; inset: 0; z-index: 1200; background: rgba(14,11,9,0.96); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 82vh; object-fit: contain; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; background: none; border: 1px solid rgba(255,255,255,0.4); color: #fff;
  width: 48px; height: 48px; font-size: 1.1rem;
}
.lightbox__close { top: 28px; right: 28px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }

/* Locations */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(22,18,15,0.08); margin-top: 48px; }
.loc { background: #fff; padding: 34px 28px 38px; transition: 0.45s var(--ease); }
.loc:hover { background: var(--warm-white); }
.section--tint .loc { background: var(--warm-white); }
.section--tint .loc:hover { background: #fff; }
.loc h4 { font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; }
.loc address { font-style: normal; margin-top: 14px; font-size: 0.9rem; color: #5a534d; white-space: pre-line; }
.loc--hq { border-top: 3px solid var(--red); }

/* Branch selector */
.branches { display: grid; grid-template-columns: 300px 1fr; gap: 56px; margin-top: 48px; }
.branches__list { display: flex; flex-direction: column; }
.branches__list button {
  text-align: left; padding: 15px 0; background: none; border: 0;
  border-bottom: 1px solid rgba(22,18,15,0.08); font-size: 0.82rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--grey); transition: 0.35s var(--ease);
}
.branches__list button.is-active, .branches__list button:hover { color: var(--red); padding-left: 12px; }
.branches__panel { background: var(--warm-white); padding: 44px; border-left: 2px solid var(--red); }
.section--tint .branches__panel { background: #fff; }

/* Forms */
.quote { background: #fff; border: 1px solid rgba(22,18,15,0.09); padding: 44px; box-shadow: 0 40px 80px -50px rgba(22,18,15,0.5); }
.qstep { display: none; }
.qstep.is-active { display: block; animation: fadeUp 0.55s var(--ease); }
.qstep__label { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); font-weight: 600; }
.qstep h3 { margin: 12px 0 26px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid rgba(22,18,15,0.16);
  background: #fff; font: inherit; font-size: 0.95rem; border-radius: 2px; transition: 0.35s;
}
.field input:focus, .field textarea:focus { border-color: var(--red); outline: none; box-shadow: 0 0 0 4px var(--red-glow); }
.field .err { display: block; color: var(--red); font-size: 0.76rem; margin-top: 6px; min-height: 1em; letter-spacing: 0; text-transform: none; }
.choices { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.choice { border: 1px solid rgba(22,18,15,0.16); padding: 22px 12px; text-align: center; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; background: none; transition: 0.35s var(--ease); }
.choice.is-active, .choice:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.qbar { height: 2px; background: rgba(22,18,15,0.1); margin-bottom: 34px; }
.qbar i { display: block; height: 100%; background: var(--grad-red); width: 20%; transition: width 0.55s var(--ease); }
.qactions { display: flex; justify-content: space-between; gap: 14px; margin-top: 26px; }
.qsuccess { display: none; text-align: center; padding: 30px 0; }
.qsuccess.is-on { display: block; animation: fadeUp 0.6s var(--ease); }

/* FAQ */
.faq { border-top: 1px solid rgba(22,18,15,0.1); margin-top: 38px; }
.faq__item { border-bottom: 1px solid rgba(22,18,15,0.1); transition: 0.4s; }
.faq__item.is-open { background: rgba(216,31,38,0.02); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; gap: 24px; align-items: center;
  padding: 26px 0; background: none; border: 0; text-align: left;
  font-size: clamp(1rem, 1.6vw, 1.24rem); color: var(--charcoal); font-weight: 500;
}
.faq__q span:last-child { color: var(--red); font-size: 1.5rem; line-height: 1; transition: transform 0.45s var(--ease); }
.faq__item.is-open .faq__q span:last-child { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.55s var(--ease); }
.faq__a p { padding-bottom: 26px; max-width: 78ch; }

/* CTA band */
.cta-band {
  background: var(--charcoal); color: #fff; padding: 118px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 130% at 84% 110%, rgba(216,31,38,0.42) 0%, rgba(216,31,38,0) 60%);
}
.cta-band::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--grad-red);
}
.cta-band .container { position: relative; z-index: 3; }
.cta-band h2, .cta-band h3 { color: #fff; text-transform: uppercase; font-weight: 700; letter-spacing: -0.045em; }
.cta-band p { color: rgba(255,255,255,0.66); }
.cta-band .btn--primary { background: var(--grad-red); }
.cta-truck { position: absolute; right: -4%; bottom: -6%; width: min(46vw, 640px); opacity: 0.13; z-index: 1; }

/* Footer */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.66); padding: 88px 0 32px; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 100%; background: linear-gradient(90deg, var(--red) 0%, var(--red) 42%, var(--green) 42%, var(--green) 56%, rgba(255,255,255,0.08) 56%); }
.footer__shout {
  font-size: clamp(3.4rem, 13vw, 11rem); line-height: 0.84; font-weight: 700; letter-spacing: -0.055em;
  color: rgba(255,255,255,0.07); text-transform: uppercase; margin-bottom: 56px;
}
.footer__shout em { font-style: normal; color: rgba(216,31,38,0.35); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; }
.footer__logo { background: #fff; padding: 12px 16px; display: inline-block; border-radius: 2px; }
.footer__logo img { height: 64px; }
.footer h5 { color: #fff; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; position: relative; padding-bottom: 12px; }
.footer h5::after { content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 2px; background: var(--red); }
.footer a:hover { color: var(--red); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 0.9rem; }
.footer address { font-style: normal; font-size: 0.9rem; white-space: pre-line; }
.footer__bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.78rem; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.16); display: grid; place-items: center; border-radius: 50%; transition: 0.4s var(--ease); }
.footer__social a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 16px; height: 16px; }

/* Floating actions */
.floats { position: fixed; right: 20px; bottom: 20px; z-index: 800; display: flex; flex-direction: column; gap: 10px; }
.floats a {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1px solid rgba(22,18,15,0.08); box-shadow: 0 14px 30px rgba(22,18,15,0.16);
  transition: transform 0.35s var(--ease);
}
.floats a:hover { transform: translateY(-3px); }
.floats a svg { width: 21px; height: 21px; }
.floats .f-quote { background: var(--grad-red); color: #fff; border-color: var(--red); width: auto; border-radius: 26px; padding: 0 20px; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.f-wa { color: #128c7e; }
.f-call { color: var(--charcoal); }

/* Cursor */
.cursor { position: fixed; top: 0; left: 0; width: 26px; height: 26px; border: 1px solid rgba(22,18,15,0.35); border-radius: 50%; pointer-events: none; z-index: 1500; transform: translate(-50%,-50%); transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s; display: none; }
.cursor.is-big { width: 56px; height: 56px; background: var(--red-glow); border-color: var(--red); }

/* Page transition veil */
.veil { position: fixed; inset: 0; background: var(--charcoal); z-index: 1400; display: grid; place-items: center; transition: opacity 0.6s var(--ease), visibility 0.6s; }
.veil img { height: 52px; animation: fadeUp 0.7s var(--ease); }
.veil.is-out { opacity: 0; visibility: hidden; }
.veil.is-in { opacity: 1; visibility: visible; }

/* Curtain image reveal (IntersectionObserver-safe) */
.clip-reveal { position: relative; overflow: hidden; }
.clip-reveal::before {
  content: ""; position: absolute; inset: 0; z-index: 4;
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--red-dark) 100%);
  transform: translateY(0); transition: transform 1.25s var(--ease);
}
.clip-reveal.is-in::before { transform: translateY(-101%); }










/* =========================================================
   ROYAL SERVICES CUSTOM CAROUSEL
   NO BOOTSTRAP
   ========================================================= */

/* =========================================================
   ROYAL PACKERS & MOVERS
   SERVICES CUSTOM CAROUSEL
   NO BOOTSTRAP
   FULLY SCOPED
   ========================================================= */


/* =========================================================
   SECTION
   ========================================================= */

#royalServicesOnly.royal-services-section {
  position: relative;
  overflow: hidden;
}


/* =========================================================
   HEADING
   ========================================================= */

#royalServicesOnly .royal-services-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 32px;

  margin-bottom: 48px;
}


/* =========================================================
   CONTROLS
   ========================================================= */

#royalServicesOnly .royal-services-controls {
  display: flex;
  align-items: center;

  gap: 10px;

  flex-shrink: 0;
}


#royalServicesOnly .royal-services-btn {
  width: 52px;
  height: 52px;

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

  padding: 0;

  border: 1px solid rgba(0, 0, 0, 0.18);

  background: transparent;

  color: inherit;

  font-size: 20px;
  line-height: 1;

  cursor: pointer;

  transition:
    background .3s ease,
    color .3s ease,
    border-color .3s ease,
    transform .3s ease;
}


#royalServicesOnly .royal-services-btn:hover {
  background: #111;

  color: #fff;

  border-color: #111;

  transform: translateY(-3px);
}


#royalServicesOnly .royal-services-btn:active {
  transform: translateY(0);
}


/* =========================================================
   CAROUSEL
   ========================================================= */

#royalServicesOnly .royal-services-carousel {
  width: 100%;

  overflow: hidden;
}


#royalServicesOnly .royal-services-viewport {
  width: 100%;

  overflow: hidden;

  position: relative;
}


/* =========================================================
   TRACK
   ========================================================= */

#royalServicesOnly .royal-services-track {
  --royal-gap: 24px;

  display: flex;

  flex-wrap: nowrap;

  align-items: stretch;

  gap: var(--royal-gap);

  width: max-content;

  margin: 0;
  padding: 0;

  transform: translate3d(0, 0, 0);

  will-change: transform;

  transition:
    transform .8s cubic-bezier(.22, 1, .36, 1);
}


/* =========================================================
   CARD
   ========================================================= */

#royalServicesOnly .royal-service-card {

  /*
    JS updates this width dynamically.
    Desktop = 4 cards
    Tablet = 2 cards
    Mobile = 1 card
  */

  flex: 0 0 auto;

  width: var(--royal-card-width);

  min-width: var(--royal-card-width);

  box-sizing: border-box;

  margin: 0;

  padding: 0;

  background: #fff;

  border: 1px solid rgba(0, 0, 0, .08);

  overflow: hidden;

  display: flex;

  flex-direction: column;

  position: relative;

  transition:
    transform .45s cubic-bezier(.22, 1, .36, 1),
    box-shadow .45s ease;
}


/* =========================================================
   CARD HOVER
   ========================================================= */

#royalServicesOnly .royal-service-card:hover {

  transform: translateY(-8px);

  box-shadow:
    0 22px 50px rgba(0, 0, 0, .10);
}


/* =========================================================
   IMAGE
   ========================================================= */

#royalServicesOnly .royal-service-image {

  width: 100%;

  height: 245px;

  overflow: hidden;

  position: relative;

  flex-shrink: 0;
}


#royalServicesOnly .royal-service-image img {

  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  transition:
    transform .8s cubic-bezier(.22, 1, .36, 1);
}


#royalServicesOnly .royal-service-card:hover
.royal-service-image img {

  transform: scale(1.07);
}


/* =========================================================
   CONTENT
   ========================================================= */

#royalServicesOnly .royal-service-content {

  display: flex;

  flex-direction: column;

  flex: 1;

  padding: 28px 28px 30px;
}


/* =========================================================
   NUMBER
   ========================================================= */

#royalServicesOnly .royal-service-number {

  display: block;

  margin-bottom: 17px;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: .15em;

  line-height: 1;

  opacity: .55;
}


/* =========================================================
   TITLE
   ========================================================= */

#royalServicesOnly .royal-service-content h3 {

  margin: 0 0 14px;

  font-size: 22px;

  line-height: 1.18;

  letter-spacing: -.025em;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

#royalServicesOnly .royal-service-content p {

  margin: 0;

  font-size: 15px;

  line-height: 1.7;

  opacity: .72;
}


/* =========================================================
   LINK
   ========================================================= */

#royalServicesOnly .royal-service-link {

  display: inline-flex;

  align-items: center;

  gap: 9px;

  width: fit-content;

  margin-top: auto;
  padding-top: 25px;

  color: inherit;

  font-size: 14px;

  font-weight: 700;

  line-height: 1;

  text-decoration: none;

  transition:
    gap .3s ease,
    opacity .3s ease;
}


#royalServicesOnly .royal-service-link span {

  display: inline-block;

  transition:
    transform .3s ease;
}


#royalServicesOnly .royal-service-link:hover {

  gap: 13px;

  opacity: .75;
}


#royalServicesOnly .royal-service-link:hover span {

  transform: translateX(3px);
}


/* =========================================================
   FOOTER CTA
   ========================================================= */

#royalServicesOnly .royal-services-footer {

  margin-top: 48px;
}







/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

  #royalServicesOnly .royal-services-heading {

    align-items: flex-end;

    margin-bottom: 38px;
  }


  #royalServicesOnly .royal-services-track {

    --royal-gap: 24px;
  }


  #royalServicesOnly .royal-service-image {

    height: 230px;
  }


  #royalServicesOnly .royal-service-content {

    padding: 25px;
  }


  #royalServicesOnly .royal-service-content h3 {

    font-size: 21px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 575px) {

  #royalServicesOnly .royal-services-heading {

    display: block;

    margin-bottom: 30px;
  }


  #royalServicesOnly .royal-services-controls {

    margin-top: 25px;
  }


  #royalServicesOnly .royal-services-btn {

    width: 46px;
    height: 46px;

    font-size: 18px;
  }


  #royalServicesOnly .royal-services-track {

    --royal-gap: 15px;
  }


  #royalServicesOnly .royal-service-image {

    height: 220px;
  }


  #royalServicesOnly .royal-service-content {

    padding: 24px;
  }


  #royalServicesOnly .royal-service-content h3 {

    font-size: 20px;
  }


  #royalServicesOnly .royal-service-content p {

    font-size: 14px;

    line-height: 1.65;
  }


  #royalServicesOnly .royal-services-footer {

    margin-top: 35px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  #royalServicesOnly .royal-services-track {

    transition: none !important;
  }


  #royalServicesOnly .royal-service-card,
  #royalServicesOnly .royal-service-image img {

    transition: none !important;
  }

}




/* =========================================================
   ROYAL TESTIMONIALS MAP BACKGROUND
   Scoped ONLY to testimonial section
========================================================= */

.royal-testimonials {
    position: relative;
    overflow: hidden;

    

    background-image:
        url("../assets/images/map.webp");

    background-repeat: no-repeat;

    /*
      Map only on right side
    */
    background-position:
        right center;

    /*
      Large enough to show India map
    */
    background-size:
        100% auto;
}


/* =========================================================
   SOFT WHITE FADE
   Keeps left testimonial text readable
========================================================= */

.royal-testimonials::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    z-index: 0;

    background:
        linear-gradient(
            90deg,
            #f8f5ef 0%,
            rgba(248, 245, 239, 0.98) 28%,
            rgba(248, 245, 239, 0.82) 48%,
            rgba(248, 245, 239, 0.28) 72%,
            rgba(248, 245, 239, 0) 100%
        );
}


/* =========================================================
   CONTENT ABOVE BACKGROUND
========================================================= */

.royal-testimonials .container {
    position: relative;

    z-index: 2;
}


/* Section number */

.royal-testimonials .sec-num {
    position: relative;

    z-index: 3;
}


/* =========================================================
   TESTIMONIAL SLIDER
========================================================= */

.royal-testimonials .tslider {
    position: relative;

    z-index: 2;

    max-width: 720px;
}


/* Keep testimonial content left */

.royal-testimonials .tslide {
    max-width: 700px;
}


/* =========================================================
   QUOTE
========================================================= */

.royal-testimonials .tquote {
    position: relative;

    z-index: 2;

    display: block;

    color: rgba(220, 30, 35, 0.18);
}


/* =========================================================
   NAVIGATION
========================================================= */

.royal-testimonials .tnav {
    position: relative;

    z-index: 3;

    display: flex;

    gap: 12px;
}


.royal-testimonials .tnav button {
    position: relative;

    width: 52px;
    height: 52px;

    display: flex;

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

    background: rgba(255,255,255,0.35);

    border: 1px solid rgba(0,0,0,0.15);

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.royal-testimonials .tnav button:hover {
    background: #111;

    color: #fff;

    transform: translateY(-3px);
}


/* =========================================================
   NOTE
========================================================= */

.royal-testimonials .note {
    position: relative;

    z-index: 3;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .royal-testimonials {

        background-size: 65% auto;

        background-position:
            115% center;
    }


    .royal-testimonials::before {

        background:
            linear-gradient(
                90deg,
                #f8f5ef 0%,
                rgba(248,245,239,.96) 40%,
                rgba(248,245,239,.65) 65%,
                rgba(248,245,239,.12) 100%
            );
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .royal-testimonials {

        /*
          Put map behind lower/right portion
        */

        background-size: 100% auto;

        background-position:
            center bottom;
    }


    .royal-testimonials::before {

        background:
            linear-gradient(
                180deg,
                #f8f5ef 0%,
                rgba(248,245,239,.96) 48%,
                rgba(248,245,239,.70) 75%,
                rgba(248,245,239,.30) 100%
            );
    }

}






/* =========================================================
   ROYAL WHY — PREMIUM FEATURE SECTION
   Scoped only to .royal-why
========================================================= */

.royal-why {
  position: relative;
  overflow: hidden;
  background: #f7f4ee;
}


/* ================= HEADER ================= */

.royal-why__header {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: end;

  padding-bottom: 70px;

  border-bottom: 1px solid rgba(0,0,0,.12);
}


.royal-why__title h2 {
  margin: 22px 0 0;

  max-width: 700px;

  font-size: clamp(48px, 6vw, 82px);
  line-height: .95;

  letter-spacing: -.05em;
}


.royal-why__intro {
  max-width: 440px;
  padding-bottom: 5px;
}


.royal-why__intro .lead {
  margin: 0 0 28px;

  font-size: 17px;
  line-height: 1.7;
}


/* ================= FEATURE GRID ================= */

.royal-why__features {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  border-left: 1px solid rgba(0,0,0,.12);
}


/* ================= FEATURE ================= */

.royal-why__feature {
  position: relative;

  min-height: 265px;

  padding: 30px 27px;

  border-right: 1px solid rgba(0,0,0,.12);
  border-bottom: 1px solid rgba(0,0,0,.12);

  overflow: hidden;

  transition:
    background .4s ease,
    transform .4s cubic-bezier(.22,1,.36,1);
}


/* ================= NUMBER ================= */

.royal-why__number {
  display: block;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: .14em;

  color: #d71920;

  margin-bottom: 32px;
}


/* ================= ICON ================= */

.royal-why__icon {
  width: 43px;
  height: 43px;

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

  margin-bottom: 28px;

  border: 1px solid rgba(0,0,0,.18);

  border-radius: 50%;

  font-size: 17px;

  transition:
    background .35s ease,
    color .35s ease,
    transform .4s ease;
}


/* ================= TITLE ================= */

.royal-why__feature h4 {
  margin: 0 0 12px;

  font-size: 18px;
  line-height: 1.25;

  letter-spacing: -.02em;
}


/* ================= DESCRIPTION ================= */

.royal-why__feature p {
  margin: 0;

  max-width: 260px;

  font-size: 13px;
  line-height: 1.65;

  opacity: .58;
}


/* ================= HOVER ================= */

.royal-why__feature:hover {
  background: #fff;

  transform: translateY(-5px);

  z-index: 2;
}


.royal-why__feature:hover
.royal-why__icon {
  background: #d71920;

  color: #fff;

  border-color: #d71920;

  transform: rotate(8deg) scale(1.08);
}


.royal-why__feature:hover p {
  opacity: .82;
}


/* ================= RED ACCENT ================= */

.royal-why__feature::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 3px;

  background: #d71920;

  transition:
    width .45s cubic-bezier(.22,1,.36,1);
}


.royal-why__feature:hover::after {
  width: 100%;
}


/* ================= NOTE ================= */

.royal-why__note {
  margin-top: 38px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .royal-why__header {
    grid-template-columns: 1fr;

    gap: 30px;

    padding-bottom: 55px;
  }


  .royal-why__intro {
    max-width: 650px;
  }


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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .royal-why__header {
    gap: 25px;
    padding-bottom: 40px;
  }


  .royal-why__title h2 {
    font-size: 45px;
  }


  .royal-why__features {
    grid-template-columns: 1fr;

    border-left: 0;
  }


  .royal-why__feature {
    min-height: 220px;

    padding: 25px 20px;

    border-left: 1px solid rgba(0,0,0,.12);
  }


  .royal-why__number {
    margin-bottom: 22px;
  }


  .royal-why__icon {
    margin-bottom: 20px;
  }

.hero h1 {

font-size:46px;
}
.is-ready .hero__marks {
display: none;

}


}