@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --rhl-ivory: #f5f1ec;
  --rhl-ivory-dark: #ebe3d9;
  --rhl-charcoal: #3d332e;
  --rhl-charcoal-deep: #261f1b;
  --rhl-taupe: #908178;
  --rhl-taupe-dark: #6d5c51;
  --rhl-gold: #b99854;
  --rhl-gold-light: #d7bf89;
  --rhl-gold-dark: #8b6b2d;
  --rhl-white: #fcfaf7;
  --rhl-border: rgba(93, 73, 59, 0.14);
  --rhl-shadow: 0 18px 32px rgba(31, 22, 18, 0.14);
}

.rhl-section,
.rhl-footer {
  position: relative;
  overflow: hidden;
  font-family: 'Raleway', sans-serif;
  color: var(--rhl-charcoal);
}

.rhl-section {
  padding: clamp(80px, 8vw, 132px) 24px;
}

.rhl-container {
  width: min(100%, 1400px);
  margin: 0 auto;
}

.rhl-heading,
.rhl-hero__title,
.rhl-hero__subtitle,
.rhl-brand-card__title,
.rhl-team__name,
.rhl-team__role,
.rhl-footer__brand-name {
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.rhl-heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.rhl-label {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: var(--rhl-taupe-dark);
}

.rhl-separator {
  width: 64px;
  height: 1px;
  background: var(--rhl-gold);
  margin: 24px auto 0;
}

.rhl-separator--left {
  margin-left: 0;
}

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

.rhl-section-heading .rhl-label {
  margin-bottom: 18px;
}

.rhl-reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-delay: var(--rhl-reveal-delay, 0s);
}

.rhl-reveal.is-immediate,
.rhl-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.elementor-editor-active .rhl-reveal,
body.elementor-editor-preview .rhl-reveal,
.elementor-editor-active .rhl-reveal,
.elementor-editor-preview .rhl-reveal,
.elementor-edit-area-active .rhl-reveal {
  opacity: 1;
  transform: none;
}

.rhl-button,
.rhl-inline-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 2px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transition: transform 0.45s ease, opacity 0.45s ease, border-color 0.45s ease, background-color 0.45s ease, box-shadow 0.45s ease;
}

.rhl-button,
.rhl-button:hover,
.rhl-button:focus,
.rhl-button:visited,
.rhl-inline-link,
.rhl-inline-link:hover,
.rhl-inline-link:focus,
.rhl-inline-link:visited {
  text-decoration: none !important;
  outline: none;
}

.rhl-button {
  padding: 16px 34px;
  font-size: 0.78rem;
  font-weight: 500;
  overflow: hidden;
}

.rhl-button::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(1200px 220px at 50% -20%, rgba(255, 255, 255, 0.26), transparent 55%);
  transition: opacity 0.45s ease;
}

.rhl-button::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -30%;
  width: 38%;
  height: 180%;
  transform: rotate(18deg);
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.24), transparent);
  opacity: 0;
}

.rhl-button:hover {
  transform: translateY(-2px);
}

.rhl-button--primary,
.rhl-button--primary:hover,
.rhl-button--primary:focus,
.rhl-button--primary:visited {
  color: var(--rhl-charcoal) !important;
}

.rhl-button--secondary,
.rhl-button--secondary:hover,
.rhl-button--secondary:focus,
.rhl-button--secondary:visited {
  color: var(--rhl-ivory) !important;
}

.rhl-button:hover::before {
  opacity: 1;
}

.rhl-button:hover::after {
  opacity: 1;
  animation: rhlButtonSheen 1.05s ease forwards;
}

.rhl-button--primary {
  color: var(--rhl-charcoal);
  background: linear-gradient(135deg, var(--rhl-gold-light) -45%, var(--rhl-gold) 58%, var(--rhl-gold-dark) 115%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.rhl-button--secondary {
  color: var(--rhl-ivory);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.rhl-inline-link {
  gap: 0.55rem;
  padding: 0;
  font-size: 0.77rem;
  font-weight: 500;
  color: var(--rhl-charcoal) !important;
}

.rhl-inline-link--solid {
  padding: 12px 20px;
  color: var(--rhl-white) !important;
  background: var(--rhl-charcoal);
}

.rhl-inline-link:hover,
.rhl-inline-link:focus,
.rhl-inline-link:visited {
  color: var(--rhl-charcoal) !important;
}

.rhl-inline-link--solid:hover,
.rhl-inline-link--solid:focus,
.rhl-inline-link--solid:visited {
  color: var(--rhl-white) !important;
}

.rhl-button__text,
.rhl-inline-link span {
  position: relative;
  z-index: 1;
}

.rhl-button__icon,
.rhl-button__elementor-icon {
  position: relative;
  z-index: 1;
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.rhl-button__icon svg,
.rhl-button__elementor-icon i,
.rhl-button__elementor-icon svg,
.rhl-footer__icon i,
.rhl-footer__icon svg {
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
}

.rhl-svg-icon,
.rhl-svg-icon svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.rhl-svg-icon svg {
  vertical-align: -0.125em;
}

.rhl-button:hover .rhl-button__icon,
.rhl-button:hover .rhl-button__elementor-icon,
.rhl-inline-link:hover .rhl-button__icon {
  transform: translateX(3px);
}

.rhl-hero {
  min-height: 100vh;
  padding: 24px;
  background: var(--rhl-charcoal);
}

.rhl-hero__background,
.rhl-hero__overlay,
.rhl-hero__veil {
  position: absolute;
  inset: 0;
}

.rhl-hero__background {
  inset: -2px 0 -12%;
  will-change: transform;
}

.rhl-hero__background img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05) brightness(0.95);
}

.rhl-hero__overlay {
  background: linear-gradient(to bottom, rgba(38, 31, 27, 0.72), rgba(38, 31, 27, 0.46), rgba(38, 31, 27, 0.78));
}

.rhl-hero__veil {
  background: rgba(38, 31, 27, 0.18);
}

.rhl-hero__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rhl-hero__copy {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  color: var(--rhl-white);
}

.rhl-hero__eyebrow {
  margin: 0 0 22px;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  letter-spacing: 0.35em;
  font-weight: 300;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.rhl-hero__title {
  font-size: clamp(3.9rem, 10vw, 6.8rem);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.rhl-hero__subtitle {
  margin-top: 18px;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 300;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

.rhl-hero__description {
  max-width: 740px;
  margin: 22px auto 0;
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.7;
  font-weight: 300;
  color: rgba(252, 250, 247, 0.86);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.rhl-hero__actions {
  margin-top: 38px;
}

.rhl-hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  z-index: 3;
  color: rgba(252, 250, 247, 0.72);
  transform: translateX(-50%);
  animation: rhlScrollDown 2s ease-in-out infinite;
}

.rhl-hero__scroll-indicator svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.rhl-about {
  background: var(--rhl-ivory);
}

.rhl-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.rhl-about__headline {
  font-size: clamp(2.1rem, 4vw, 3.05rem);
}

.rhl-about__body {
  display: grid;
  gap: 22px;
  max-width: 720px;
  margin-top: 36px;
}

.rhl-about__body p {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.9;
  font-weight: 300;
  color: rgba(61, 51, 46, 0.82);
}

.rhl-about__portrait-wrap {
  position: relative;
  max-width: 430px;
  margin-inline: auto;
}

.rhl-about__portrait-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(185, 152, 84, 0.28);
}

.rhl-about__portrait {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
}

.rhl-about__portrait img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(0.12);
}

.rhl-about__portrait-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38, 31, 27, 0.14), transparent 45%);
}

.rhl-about__portrait-corner {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 96px;
  height: 96px;
  border-right: 1px solid rgba(185, 152, 84, 0.36);
  border-bottom: 1px solid rgba(185, 152, 84, 0.36);
}

.rhl-brands,
.rhl-ticker {
  background: var(--rhl-ivory-dark);
}

.rhl-ticker {
  padding: clamp(56px, 6vw, 96px) 0;
}

.rhl-ticker .rhl-container {
  padding-inline: 24px;
}

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

.rhl-brand-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(252, 250, 247, 0.65);
  border: 1px solid var(--rhl-border);
  box-shadow: 0 12px 24px rgba(43, 33, 28, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.rhl-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rhl-shadow);
  border-color: rgba(185, 152, 84, 0.32);
}

.rhl-brand-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.rhl-brand-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transition: transform 0.7s ease;
}

.rhl-brand-card:hover .rhl-brand-card__media img {
  transform: scale(1.05);
}

.rhl-brand-card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38, 31, 27, 0.36), transparent 65%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.rhl-brand-card:hover .rhl-brand-card__media-overlay {
  opacity: 1;
}

.rhl-brand-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 30px 30px;
}

.rhl-brand-card__logo-wrap {
  display: flex;
  align-items: center;
  height: 80px;
  margin-bottom: 24px;
}

.rhl-brand-card__logo {
  max-width: 280px;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.86;
  filter: grayscale(1);
}

.rhl-brand-card__title {
  font-size: clamp(1.8rem, 3vw, 2.05rem);
  line-height: 1.2;
  font-weight: 300;
  color: var(--rhl-gold);
}

.rhl-brand-card__separator,
.rhl-team__separator,
.rhl-footer__mini-separator {
  width: 40px;
  height: 1px;
  margin: 18px 0 20px;
  background: var(--rhl-gold);
}

.rhl-brand-card__description,
.rhl-team__bio,
.rhl-footer__description,
.rhl-manifesto__supporting {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 300;
  color: rgba(61, 51, 46, 0.76);
}

.rhl-brand-card__footer {
  margin-top: auto;
  padding-top: 30px;
}

.rhl-brand-card__footer .rhl-inline-link {
  padding: 12px 22px;
  background: var(--rhl-charcoal);
  color: var(--rhl-ivory) !important;
}

.rhl-brand-card__footer .rhl-inline-link:hover,
.rhl-brand-card__footer .rhl-inline-link:focus,
.rhl-brand-card__footer .rhl-inline-link:visited {
  background: rgba(61, 51, 46, 0.92);
  color: var(--rhl-ivory) !important;
}

.rhl-manifesto {
  background: var(--rhl-white);
}

.rhl-manifesto__inner {
  max-width: 980px;
  text-align: center;
}

.rhl-manifesto__quote {
  margin-top: 36px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.45rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 300;
}

.rhl-manifesto__quote p {
  margin: 0;
}

.rhl-manifesto__quote em {
  font-style: italic;
}

.rhl-manifesto__supporting {
  max-width: 760px;
  margin: 28px auto 0;
}

.rhl-manifesto__attribution {
  margin-top: 26px;
}

.rhl-ticker__viewport {
  overflow: hidden;
}

.rhl-ticker__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: rhlTicker var(--rhl-ticker-speed, 40s) linear infinite;
}

.rhl-ticker__group {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 5vw, 5rem);
  padding: 0 clamp(1.5rem, 3vw, 2.5rem);
}

.rhl-ticker__viewport:hover .rhl-ticker__track {
  animation-play-state: paused;
}

.rhl-ticker__item {
  flex: 0 0 auto;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rhl-ticker__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rhl-ticker .rhl-ticker__image {
  display: block;
  height: 44px !important;
  min-width: 0;
  max-width: 180px !important;
  width: auto !important;
  object-fit: contain;
  opacity: 0.74;
  filter: grayscale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.rhl-ticker--members .rhl-ticker__image,
.rhl-ticker[data-rhl-variant='members'] .rhl-ticker__image {
  height: 38px !important;
  max-width: 150px !important;
}

.rhl-ticker__item:hover .rhl-ticker__image {
  opacity: 1;
  transform: translateY(-1px);
}

.rhl-ticker__viewport.is-inverted .rhl-ticker__image {
  filter: grayscale(1) brightness(0);
}

.rhl-testimonials {
  background: var(--rhl-ivory);
}

.rhl-testimonials__carousel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.rhl-testimonials__viewport {
  overflow: hidden;
}

.rhl-testimonials__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.rhl-testimonials__slide {
  flex: 0 0 100%;
  padding: 0 12px;
  text-align: center;
}

.rhl-testimonials__quote-mark {
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(185, 152, 84, 0.5);
}

.rhl-testimonials__text {
  max-width: 820px;
  margin: 0 auto 30px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
}

.rhl-testimonials__name {
  margin: 22px 0 0;
  font-weight: 500;
}

.rhl-testimonials__location {
  margin-top: 6px;
  letter-spacing: 0.22em;
}

.rhl-testimonials__arrow {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent !important;
  color: rgba(61, 51, 46, 0.55) !important;
  font-size: 2rem;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 0.3s ease, transform 0.3s ease;
}

.rhl-testimonials__arrow:hover,
.rhl-testimonials__arrow:focus,
.rhl-testimonials__arrow:active {
  background: transparent !important;
  color: var(--rhl-charcoal) !important;
  box-shadow: none !important;
  outline: none;
}

.rhl-testimonials__arrow--prev {
  left: -48px;
}

.rhl-testimonials__arrow--next {
  right: -48px;
}

.rhl-testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.rhl-testimonials__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(145, 129, 120, 0.25) !important;
  cursor: pointer;
  transition: width 0.35s ease, background-color 0.35s ease;
}

.rhl-testimonials__dot.is-active {
  width: 28px;
  background: var(--rhl-gold) !important;
}

.rhl-team {
  background: var(--rhl-white);
}

.rhl-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px 56px;
}

.rhl-team__tail {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 72px 56px;
  margin-top: 72px;
}

.rhl-team__card {
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}

.rhl-team__photo {
  width: 192px;
  height: 192px;
  margin: 0 auto 26px;
}

.rhl-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.rhl-team__name {
  font-size: clamp(1.75rem, 3vw, 1.95rem);
  line-height: 1.2;
}

.rhl-team__role {
  margin-top: 8px;
  font-size: clamp(1.9rem, 3.2vw, 2.1rem);
  line-height: 1.18;
  font-weight: 300;
  color: var(--rhl-gold);
}

.rhl-footer {
  padding: clamp(72px, 7vw, 112px) 24px 48px;
  background: #3d3732;
  color: var(--rhl-ivory);
}

.rhl-footer .rhl-container {
  width: min(100%, 1280px);
}

.rhl-footer .rhl-label,
.rhl-footer__copyright {
  color: rgba(245, 241, 236, 0.52);
}

.rhl-footer__cta {
  position: relative;
  margin-bottom: 72px;
  padding: 0 24px;
  text-align: center;
}

.rhl-footer__preheadline {
  margin-bottom: 16px;
  letter-spacing: 0.3em;
}

.rhl-footer__heading {
  color: var(--rhl-ivory);
  font-size: clamp(2.5rem, 4.2vw, 3.75rem);
}

.rhl-footer__description {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(245, 241, 236, 0.72);
}

.rhl-footer__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.rhl-footer__main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.rhl-footer__brand,
.rhl-footer__contact,
.rhl-footer__social {
  min-width: 0;
}

.rhl-footer__brand-name {
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  color: var(--rhl-ivory);
}

.rhl-footer__brand-tagline {
  margin-top: 10px;
}

.rhl-footer__mini-separator {
  margin-top: 24px;
}

.rhl-footer__location,
.rhl-footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  color: rgba(245, 241, 236, 0.84);
  text-decoration: none;
}

.rhl-footer__contact-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.rhl-footer__contact-link {
  transition: color 0.3s ease;
}

.rhl-footer__contact-link span:last-child,
.rhl-footer__location span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.rhl-footer__contact-link,
.rhl-footer__contact-link:visited {
  color: rgba(245, 241, 236, 0.84) !important;
  text-decoration: none !important;
}

.rhl-footer__contact-link:hover,
.rhl-footer__contact-link:focus {
  color: var(--rhl-gold-light) !important;
  text-decoration: none !important;
}

.rhl-footer__social {
  text-align: right;
}

.rhl-footer__social-list {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.rhl-footer__social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 241, 236, 0.2) !important;
  background: transparent !important;
  color: rgba(245, 241, 236, 0.88) !important;
  text-decoration: none;
  box-shadow: none !important;
  transition: color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.rhl-footer__social-link:hover,
.rhl-footer__social-link:focus,
.rhl-footer__social-link:visited {
  color: rgba(245, 241, 236, 0.88) !important;
  background: transparent !important;
  border-color: rgba(245, 241, 236, 0.2) !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

.rhl-footer__social-link:hover,
.rhl-footer__social-link:focus {
  border-color: rgba(215, 191, 137, 0.72) !important;
  transform: translateY(-2px);
}

.rhl-footer__social-link::after {
  content: none;
}

.rhl-footer__social-link .rhl-footer__icon,
.rhl-footer__social-link .rhl-footer__icon svg {
  width: 21px;
  height: 21px;
  font-size: 21px;
}

.rhl-footer__contact-link .rhl-footer__icon,
.rhl-footer__contact-link .rhl-footer__icon svg,
.rhl-footer__location .rhl-footer__icon,
.rhl-footer__location .rhl-footer__icon svg {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.rhl-footer__meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rhl-footer__icon,
.rhl-footer__icon i,
.rhl-footer__icon svg,
.rhl-footer__meta-icon .elementor-icon,
.rhl-footer__social-link .elementor-icon,
.rhl-footer__social-link i,
.rhl-footer__social-link svg,
.rhl-button__elementor-icon,
.rhl-button__elementor-icon i,
.rhl-button__elementor-icon svg,
.rhl-button .elementor-icon {
  display: inline-block;
  color: currentColor;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.rhl-footer__icon i,
.rhl-footer__meta-icon .elementor-icon i,
.rhl-footer__social-link .elementor-icon i,
.rhl-button__elementor-icon i,
.rhl-button .elementor-icon i {
  color: currentColor;
}

.rhl-footer__icon svg,
.rhl-footer__meta-icon .elementor-icon svg,
.rhl-footer__social-link .elementor-icon svg,
.rhl-button__elementor-icon svg,
.rhl-button .elementor-icon svg {
  fill: none;
}

.rhl-footer__icon svg [fill='currentColor'],
.rhl-footer__meta-icon .elementor-icon svg [fill='currentColor'],
.rhl-footer__social-link .elementor-icon svg [fill='currentColor'],
.rhl-button__elementor-icon svg [fill='currentColor'],
.rhl-button .elementor-icon svg [fill='currentColor'] {
  fill: currentColor;
}

.rhl-footer__icon svg [stroke='currentColor'],
.rhl-footer__meta-icon .elementor-icon svg [stroke='currentColor'],
.rhl-footer__social-link .elementor-icon svg [stroke='currentColor'],
.rhl-button__elementor-icon svg [stroke='currentColor'],
.rhl-button .elementor-icon svg [stroke='currentColor'] {
  stroke: currentColor;
}

.rhl-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 241, 236, 0.1);
}

.rhl-footer__bottom-left {
  max-width: 840px;
}

.rhl-footer__housing {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.rhl-footer__housing img {
  height: 32px;
  width: auto;
  opacity: 0.9;
}

.rhl-footer__housing span,
.rhl-footer__licenses,
.rhl-footer__disclosures,
.rhl-footer__legal-note {
  font-size: 0.72rem;
  line-height: 1.85;
  color: rgba(245, 241, 236, 0.52);
}

.rhl-footer__licenses {
  margin: 22px 0 0;
}

.rhl-footer__licenses .rhl-label {
  margin-right: 10px;
}

.rhl-footer__disclosures {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.rhl-footer__disclosure-link {
  color: inherit !important;
  text-decoration: underline;
  text-decoration-color: rgba(245, 241, 236, 0.2);
  text-underline-offset: 4px;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.rhl-footer__disclosure-link:hover,
.rhl-footer__disclosure-link:focus,
.rhl-footer__disclosure-link:visited {
  color: var(--rhl-gold-light) !important;
  text-decoration-color: rgba(215, 191, 137, 0.55);
}

.rhl-footer__legal-note {
  max-width: 720px;
  margin-top: 18px;
}

.rhl-footer__legal-note p {
  margin: 0 0 10px;
}

.rhl-footer__copyright {
  margin: 0;
  text-align: right;
}

@keyframes rhlTicker {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes rhlButtonSheen {
  from {
    left: -30%;
  }

  to {
    left: 120%;
  }
}

@keyframes rhlScrollDown {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, 8px);
    opacity: 0.35;
  }
}

@media (max-width: 1180px) {
  .rhl-testimonials__arrow--prev {
    left: -12px;
  }

  .rhl-testimonials__arrow--next {
    right: -12px;
  }

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

  .rhl-footer__social {
    text-align: left;
    grid-column: span 2;
  }

  .rhl-footer__social-list {
    justify-content: flex-start;
  }
}

@media (max-width: 991px) {
  .rhl-about__grid,
  .rhl-brands__grid,
  .rhl-footer__main,
  .rhl-team__grid {
    grid-template-columns: 1fr;
  }

  .rhl-section-heading {
    text-align: center;
  }

  .rhl-about {
    padding-top: clamp(72px, 9vw, 96px);
    padding-bottom: clamp(72px, 9vw, 96px);
  }

  .rhl-about__grid {
    max-width: 760px;
    gap: 48px;
    align-items: start;
  }

  .rhl-about__copy {
    max-width: 680px;
    text-align: left;
  }

  .rhl-about .rhl-label {
    margin-bottom: 22px;
  }

  .rhl-about__headline {
    font-size: clamp(2rem, 5.8vw, 3.1rem);
    line-height: 1.05;
  }

  .rhl-separator--left {
    margin-left: auto;
  }

  .rhl-about .rhl-separator--left {
    margin-left: 0;
  }

  .rhl-about__body {
    gap: 24px;
    max-width: none;
    margin-top: 36px;
  }

  .rhl-about__body p {
    font-size: clamp(1rem, 2.5vw, 1.18rem);
    line-height: 1.78;
  }

  .rhl-about__portrait-wrap {
    max-width: min(100%, 430px);
  }

  .rhl-brand-card__body {
    padding: 26px;
  }

  .rhl-team__tail {
    margin-top: 48px;
  }

  .rhl-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .rhl-footer__social {
    grid-column: auto;
    text-align: left;
  }

  .rhl-footer__social-list {
    justify-content: flex-start;
  }

  .rhl-footer__copyright {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .rhl-section,
  .rhl-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .rhl-hero__content {
    min-height: 100svh;
  }

  .rhl-hero__eyebrow {
    letter-spacing: 0.24em;
  }

  .rhl-button {
    width: 100%;
    max-width: 320px;
  }

  .rhl-about {
    padding: 56px 20px 64px;
  }

  .rhl-about__grid {
    gap: 40px;
  }

  .rhl-about__headline {
    font-size: clamp(2rem, 8.2vw, 2.65rem);
  }

  .rhl-about__body {
    margin-top: 34px;
  }

  .rhl-about__body p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .rhl-about__portrait-frame {
    inset: -9px;
  }

  .rhl-about__portrait-corner {
    right: -14px;
    bottom: -14px;
    width: 72px;
    height: 72px;
  }

  .rhl-brands__grid,
  .rhl-team__grid,
  .rhl-team__tail {
    gap: 42px;
  }

  .rhl-brand-card__media {
    aspect-ratio: 16 / 8;
  }

  .rhl-brand-card__logo-wrap {
    height: 64px;
    margin-bottom: 22px;
  }

  .rhl-brand-card__logo {
    max-width: min(230px, 72vw);
  }

  .rhl-ticker__image {
    height: 38px;
  }

  .rhl-testimonials__arrow {
    position: static;
    transform: none;
    margin-top: 24px;
  }

  .rhl-testimonials__carousel {
    text-align: center;
  }

  .rhl-testimonials__arrow--prev,
  .rhl-testimonials__arrow--next {
    left: auto;
    right: auto;
  }

  .rhl-footer__social {
    text-align: left;
  }

  .rhl-footer__cta {
    margin-bottom: 64px;
    padding-inline: 0;
    text-align: center;
  }

  .rhl-footer__heading {
    font-size: clamp(2.1rem, 9vw, 2.75rem);
  }

  .rhl-footer__buttons {
    flex-direction: column;
    align-items: center;
  }

  .rhl-footer .rhl-button {
    width: auto;
    min-width: 196px;
    max-width: 100%;
  }

  .rhl-footer__main {
    gap: 44px;
  }

  .rhl-footer__brand-name {
    font-size: clamp(2.15rem, 8vw, 2.75rem);
  }

  .rhl-footer__brand-tagline {
    max-width: 250px;
    line-height: 1.6;
  }

  .rhl-footer__location,
  .rhl-footer__contact-link {
    align-items: flex-start;
  }

  .rhl-footer__social-list {
    justify-content: flex-start;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rhl-reveal,
  .rhl-testimonials__track,
  .rhl-button,
  .rhl-inline-link,
  .rhl-brand-card,
  .rhl-ticker__image,
  .rhl-footer__social-link {
    transition: none !important;
  }

  .rhl-ticker__track,
  .rhl-hero__scroll-indicator {
    animation: none !important;
  }

  .rhl-button:hover,
  .rhl-brand-card:hover,
  .rhl-footer__social-link:hover {
    transform: none !important;
  }
}
