:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-e068049 */.about-banner,
.about-banner * {
  box-sizing: border-box;
}

.about-banner {
  --accent: #e77600;
  --accent-dark: #ad4d08;
  --ink: #2b190a;
  --muted: #74685e;
  --paper: #fffdf9;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  isolation: isolate;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 390px;
  padding: 90px 20px 75px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 16% 20%,
      rgba(255, 207, 156, 0.35),
      transparent 25%
    ),
    radial-gradient(
      circle at 87% 76%,
      rgba(231, 118, 0, 0.12),
      transparent 27%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fffdf9 48%,
      #fff6eb 100%
    );

  font-family: "Space Grotesk", Arial, sans-serif;
}

/* Subtle dotted background */

.about-banner__pattern {
  position: absolute;
  inset: 0;
  z-index: -1;

  opacity: 0.3;
  pointer-events: none;

  background-image:
    radial-gradient(
      rgba(173, 77, 8, 0.1) 1px,
      transparent 1px
    );

  background-size: 18px 18px;

  mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 30%,
      #000 70%,
      transparent
    );
}

/* Soft animated background circles */

.about-banner__orb {
  position: absolute;
  z-index: -1;

  border-radius: 50%;
  pointer-events: none;
}

.about-banner__orb--one {
  top: -100px;
  left: -80px;

  width: 280px;
  height: 280px;

  border: 1px solid rgba(231, 118, 0, 0.13);

  animation: aboutOrbOne 8s ease-in-out infinite;
}

.about-banner__orb--one::before,
.about-banner__orb--one::after {
  content: "";

  position: absolute;
  inset: 25px;

  border: 1px solid rgba(231, 118, 0, 0.09);
  border-radius: inherit;
}

.about-banner__orb--one::after {
  inset: 55px;
}

.about-banner__orb--two {
  right: -90px;
  bottom: -130px;

  width: 340px;
  height: 340px;

  background: rgba(255, 207, 156, 0.18);
  filter: blur(2px);

  animation: aboutOrbTwo 9s ease-in-out infinite;
}

/* Banner text */

.about-banner__content {
  position: relative;
  z-index: 2;

  width: min(800px, 100%);

  text-align: center;

  animation: aboutContentReveal 900ms var(--ease) both;
}

.about-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 18px;

  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-banner__eyebrow i {
  display: block;

  width: 36px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--accent)
    );
}

.about-banner__eyebrow i:last-child {
  background:
    linear-gradient(
      90deg,
      var(--accent),
      transparent
    );
}

.about-banner h1 {
  margin: 0;

  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.about-banner h1 strong {
  position: relative;

  color: var(--accent);
  font-weight: 500;
}

.about-banner h1 strong::after {
  content: "";

  position: absolute;
  right: 5%;
  bottom: -7px;
  left: 5%;

  height: 3px;
  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--accent),
      transparent
    );

  transform: scaleX(0);
  transform-origin: center;

  animation: aboutUnderline 900ms 450ms var(--ease) forwards;
}

.about-banner p {
  margin: 25px 0 0;

  color: var(--muted);
  font-size: clamp(0.72rem, 1.2vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Small animated bottom detail */

.about-banner__scroll-line {
  position: absolute;
  bottom: 0;
  left: 50%;

  width: 1px;
  height: 45px;
  overflow: hidden;

  background: rgba(43, 25, 10, 0.12);

  transform: translateX(-50%);
}

.about-banner__scroll-line span {
  position: absolute;
  top: -100%;
  left: 0;

  width: 100%;
  height: 60%;

  background: var(--accent);

  animation: aboutScrollLine 2s ease-in-out infinite;
}

/* Animations */

@keyframes aboutContentReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutUnderline {
  to {
    transform: scaleX(1);
  }
}

@keyframes aboutOrbOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }

  50% {
    transform: translate3d(18px, 12px, 0) rotate(8deg);
  }
}

@keyframes aboutOrbTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-18px, -12px, 0) scale(1.08);
  }
}

@keyframes aboutScrollLine {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(330%);
  }
}

/* Mobile */

@media (max-width: 600px) {
  .about-banner {
    min-height: 310px;
    padding: 75px 18px 65px;
  }

  .about-banner__eyebrow {
    margin-bottom: 15px;
  }

  .about-banner__eyebrow i {
    width: 25px;
  }

  .about-banner h1 {
    font-size: clamp(2.8rem, 15vw, 4.3rem);
  }

  .about-banner p {
    margin-top: 20px;

    font-size: 0.62rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }

  .about-banner__orb--one {
    width: 210px;
    height: 210px;
  }

  .about-banner__orb--two {
    width: 260px;
    height: 260px;
  }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
  .about-banner__content,
  .about-banner__orb,
  .about-banner__scroll-line span,
  .about-banner h1 strong::after {
    animation: none;
  }

  .about-banner h1 strong::after {
    transform: scaleX(1);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5b95122 *//* =========================================================
   TRIO'S SERVICES
   ========================================================= */

.trios-services,
.trios-services * {
  box-sizing: border-box;
}

.trios-services {
  --services-accent: #e77600;
  --services-accent-dark: #ad4d08;
  --services-ink: #2b190a;
  --services-muted: #74685e;
  --services-paper: #fffdf9;
  --services-peach: #ffcf9c;
  --services-ease: cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  isolation: isolate;

  overflow: hidden;

  padding:
    clamp(85px, 11vw, 145px)
    0;

  background:
    linear-gradient(
      180deg,
      #fffdf9 0%,
      #fff8f1 52%,
      #ffffff 100%
    );

  color: var(--services-ink);
  font-family: "Space Grotesk", Arial, sans-serif;
}

/* =========================================================
   BACKGROUND
   ========================================================= */

.trios-services__background {
  position: absolute;
  inset: 0;
  z-index: -1;

  overflow: hidden;
  pointer-events: none;
}

.trios-services__glow {
  position: absolute;

  border-radius: 50%;
  filter: blur(85px);
}

.trios-services__glow--one {
  top: -170px;
  left: -120px;

  width: 420px;
  height: 420px;

  background: rgba(255, 207, 156, 0.24);
}

.trios-services__glow--two {
  right: -130px;
  bottom: -190px;

  width: 470px;
  height: 470px;

  background: rgba(231, 118, 0, 0.12);
}

.trios-services__pattern {
  position: absolute;
  inset: 0;

  opacity: 0.25;

  background-image:
    radial-gradient(
      rgba(173, 77, 8, 0.09) 0.8px,
      transparent 0.8px
    );

  background-size: 18px 18px;

  mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 18%,
      #000 82%,
      transparent
    );
}

/* =========================================================
   CONTAINER
   ========================================================= */

.trios-services__container {
  position: relative;
  z-index: 2;

  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.trios-services__header {
  max-width: 690px;
  margin: 0 auto clamp(45px, 7vw, 75px);

  text-align: center;

  opacity: 0;
  transform: translateY(30px);

  transition:
    opacity 700ms ease,
    transform 900ms var(--services-ease);
}

.trios-services.is-visible
.trios-services__header {
  opacity: 1;
  transform: translateY(0);
}

.trios-services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 17px;

  color: var(--services-accent-dark);

  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.trios-services__eyebrow::before,
.trios-services__eyebrow::after {
  content: "";

  width: 31px;
  height: 1px;

  background: currentColor;
}

.trios-services__header h2 {
  margin: 0;

  color: var(--services-ink);

  font-family: "Fraunces", Georgia, serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.trios-services__header h2 em {
  display: block;

  color: var(--services-accent);

  font-style: normal;
  font-weight: 500;
}

.trios-services__header p {
  margin: 20px 0 0;

  color: var(--services-muted);

  font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.7;
}

/* =========================================================
   GRID
   ========================================================= */

.trios-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 30px);
}

/* =========================================================
   CARDS
   ========================================================= */

.trios-services__card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 420px;
  padding: clamp(28px, 3.5vw, 42px);

  overflow: hidden;

  border: 1px solid rgba(43, 25, 10, 0.09);
  border-radius: 25px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.91),
      rgba(255, 249, 243, 0.74)
    );

  box-shadow:
    0 22px 55px rgba(74, 40, 17, 0.07),
    inset 0 1px rgba(255, 255, 255, 0.95);

  opacity: 0;

  transform:
    translateY(50px)
    scale(0.97);

  transition:
    opacity 700ms ease,
    transform 900ms var(--services-ease),
    border-color 400ms ease,
    box-shadow 450ms ease;
}

.trios-services.is-visible
.trios-services__card {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}

.trios-services.is-visible
.trios-services__card:nth-child(1) {
  transition-delay: 100ms;
}

.trios-services.is-visible
.trios-services__card:nth-child(2) {
  transition-delay: 220ms;
}

.trios-services.is-visible
.trios-services__card:nth-child(3) {
  transition-delay: 340ms;
}

.trios-services__card::before {
  content: "";

  position: absolute;
  top: -80px;
  right: -80px;

  width: 180px;
  height: 180px;

  border: 1px solid rgba(231, 118, 0, 0.12);
  border-radius: 50%;

  transition:
    transform 700ms var(--services-ease),
    background 500ms ease;
}

.trios-services__card::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 3px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--services-accent),
      transparent
    );

  transform: scaleX(0);
  transform-origin: center;

  transition:
    transform 650ms var(--services-ease);
}

.trios-services__card:hover {
  border-color: rgba(231, 118, 0, 0.24);

  box-shadow:
    0 30px 70px rgba(74, 40, 17, 0.12),
    inset 0 1px rgba(255, 255, 255, 0.96);

  transform: translateY(-9px);
}

.trios-services__card:hover::before {
  background: rgba(255, 207, 156, 0.12);

  transform: scale(1.2);
}

.trios-services__card:hover::after {
  transform: scaleX(1);
}

/* =========================================================
   NUMBER
   ========================================================= */

.trios-services__number {
  position: absolute;
  top: 19px;
  right: 22px;

  color: rgba(43, 25, 10, 0.055);

  font-family: "Fraunces", Georgia, serif;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1;

  pointer-events: none;
}

/* =========================================================
   ICON
   ========================================================= */

.trios-services__icon {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 64px;
  height: 64px;
  margin-bottom: 28px;

  border: 1px solid rgba(231, 118, 0, 0.18);
  border-radius: 19px;

  color: var(--services-accent-dark);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.88),
      rgba(255, 234, 214, 0.62)
    );

  box-shadow:
    0 12px 30px rgba(173, 77, 8, 0.09);

  transition:
    color 350ms ease,
    background 350ms ease,
    transform 500ms var(--services-ease);
}

.trios-services__icon svg {
  width: 31px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trios-services__card:hover
.trios-services__icon {
  color: #fff;

  background:
    linear-gradient(
      135deg,
      #ed883d,
      #ca5913
    );

  transform:
    translateY(-4px)
    rotate(-3deg);
}

/* =========================================================
   CARD CONTENT
   ========================================================= */

.trios-services__line {
  width: 100%;
  height: 1px;
  margin-bottom: 22px;

  background: rgba(43, 25, 10, 0.09);
}

.trios-services__line span {
  display: block;

  width: 42px;
  height: 2px;

  background: var(--services-accent);

  transform: scaleX(0);
  transform-origin: left;

  transition:
    transform 700ms 350ms var(--services-ease);
}

.trios-services.is-visible
.trios-services__line span {
  transform: scaleX(1);
}

.trios-services__card h3 {
  position: relative;
  z-index: 2;

  margin: 0 0 15px;

  color: var(--services-ink);

  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.08;
}

.trios-services__card p {
  position: relative;
  z-index: 2;

  margin: 0 0 25px;

  color: var(--services-muted);

  font-size: 0.88rem;
  line-height: 1.72;
}

.trios-services__tag {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;

  width: fit-content;
  min-height: 32px;
  margin-top: auto;
  padding: 0 12px;

  border: 1px solid rgba(231, 118, 0, 0.16);
  border-radius: 999px;

  color: var(--services-accent-dark);
  background: rgba(255, 255, 255, 0.62);

  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 920px) {
  .trios-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trios-services__card:last-child {
    grid-column: 1 / -1;

    width: min(100%, 520px);
    justify-self: center;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {
  .trios-services {
    padding: 80px 0;
  }

  .trios-services__container {
    width: calc(100% - 28px);
  }

  .trios-services__header {
    margin-bottom: 42px;
  }

  .trios-services__header h2 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  .trios-services__grid {
    grid-template-columns: 1fr;
  }

  .trios-services__card,
  .trios-services__card:last-child {
    grid-column: auto;

    width: 100%;
    min-height: 0;
    padding: 28px 24px;
  }

  .trios-services__number {
    font-size: 3.8rem;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .trios-services *,
  .trios-services *::before,
  .trios-services *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .trios-services__header,
  .trios-services__card {
    opacity: 1;
    transform: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8ec9353 *//* =========================================================
   GUEST EXPERIENCE
   LEFT CONTENT / CENTER IMAGE / RIGHT CONTENT
   ========================================================= */

.guest-experience,
.guest-experience * {
  box-sizing: border-box;
}

.guest-experience {
  --guest-accent: #e77600;
  --guest-accent-dark: #ad4d08;
  --guest-ink: #2b190a;
  --guest-muted: #74685e;
  --guest-paper: #fffdf9;
  --guest-peach: #ffcf9c;
  --guest-line: rgba(43, 25, 10, 0.1);
  --guest-ease: cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  isolation: isolate;

  overflow: hidden;

  padding: 50px 0px;

  color: var(--guest-ink);

  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(255, 207, 156, 0.22),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #fffdf9 48%,
      #fff7ee 100%
    );

  font-family: "Space Grotesk", Arial, sans-serif;
}

/* =========================================================
   BACKGROUND
   ========================================================= */

.guest-experience__background {
  position: absolute;
  inset: 0;
  z-index: -1;

  overflow: hidden;
  pointer-events: none;
}

.guest-experience__glow {
  position: absolute;

  border-radius: 50%;
  filter: blur(90px);
}

.guest-experience__glow--one {
  top: -160px;
  left: -120px;

  width: 420px;
  height: 420px;

  background: rgba(255, 207, 156, 0.22);
}

.guest-experience__glow--two {
  right: -150px;
  bottom: -180px;

  width: 480px;
  height: 480px;

  background: rgba(231, 118, 0, 0.11);
}

.guest-experience__pattern {
  position: absolute;
  inset: 0;

  opacity: 0.24;

  background-image:
    radial-gradient(
      rgba(173, 77, 8, 0.08) 0.8px,
      transparent 0.8px
    );

  background-size: 18px 18px;

  mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 18%,
      #000 82%,
      transparent
    );
}

/* =========================================================
   LAYOUT
   ========================================================= */

.guest-experience__container {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(260px, 0.9fr)
    minmax(320px, 440px)
    minmax(260px, 0.9fr);
  align-items: center;
  gap: clamp(36px, 5vw, 78px);

  width: min(1380px, calc(100% - 60px));
  margin-inline: auto;
}

/* =========================================================
   CONTENT COLUMNS
   ========================================================= */

.guest-experience__content {
  position: relative;

  max-width: 410px;

  opacity: 0;

  transition:
    opacity 700ms ease,
    transform 950ms var(--guest-ease);
}

.guest-experience__content--left {
  justify-self: end;

  transform: translate3d(-45px, 0, 0);
}

.guest-experience__content--right {
  justify-self: start;

  transform: translate3d(45px, 0, 0);
}

.guest-experience.is-visible
.guest-experience__content {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.guest-experience.is-visible
.guest-experience__content--right {
  transition-delay: 180ms;
}

.guest-experience__number {
  position: absolute;
  top: -48px;
  right: 0;

  color: rgba(43, 25, 10, 0.055);

  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(4.8rem, 7vw, 7rem);
  font-weight: 500;
  line-height: 1;

  pointer-events: none;
}

.guest-experience__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 15px;

  color: var(--guest-accent-dark);

  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.guest-experience__label::before {
  content: "";

  width: 28px;
  height: 1px;

  background: currentColor;
}

.guest-experience__content h2 {
  margin: 0;
  color: var(--guest-ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.guest-experience__content h2 em {
  display: block;

  color: var(--guest-accent);

  font-style: normal;
  font-weight: 500;
}

.guest-experience__divider {
  width: 100%;
  height: 1px;
  margin: 24px 0;

  background: var(--guest-line);
}

.guest-experience__divider span {
  display: block;

  width: 45px;
  height: 2px;

  background: var(--guest-accent);

  transform: scaleX(0);
  transform-origin: left;

  transition:
    transform 700ms 350ms var(--guest-ease);
}

.guest-experience.is-visible
.guest-experience__divider span {
  transform: scaleX(1);
}

.guest-experience__content p {
  margin: 0 0 14px;

  color: var(--guest-muted);

  font-size: clamp(0.88rem, 1vw, 0.97rem);
  line-height: 1.74;
}

.guest-experience__content p:last-of-type {
  margin-bottom: 0;
}

/* =========================================================
   SIGNATURE DETAIL
   ========================================================= */

.guest-experience__signature {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-top: 25px;
}

.guest-experience__signature span {
  width: 42px;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      var(--guest-accent),
      transparent
    );
}

.guest-experience__signature small {
  color: var(--guest-muted);

  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* =========================================================
   CENTER VISUAL
   ========================================================= */

.guest-experience__visual {
  position: relative;

  width: 100%;
  min-height: 590px;

  opacity: 0;

  transform:
    translateY(45px)
    scale(0.96);

  transition:
    opacity 750ms ease,
    transform 1000ms var(--guest-ease);
}

.guest-experience.is-visible
.guest-experience__visual {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}

.guest-experience__frame {
  position: absolute;
  inset: 7% 4%;

  border: 1px solid rgba(43, 25, 10, 0.08);
  border-radius: 180px 180px 34px 34px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.65),
      rgba(255, 241, 226, 0.36)
    );
}

.guest-experience__image {
  position: absolute;
  inset: 6% 7%;

  margin: 0;
  overflow: hidden;

  border: 7px solid rgba(255, 255, 255, 0.96);
  border-radius: 34px;

  background: #fff;

  box-shadow:
    0 34px 75px rgba(74, 40, 17, 0.18),
    0 10px 28px rgba(74, 40, 17, 0.09);
}

.guest-experience__image::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      180deg,
      transparent 52%,
      rgba(24, 13, 5, 0.72) 100%
    );

  pointer-events: none;
}

.guest-experience__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1.04);

  transition:
    transform 1200ms var(--guest-ease);
}

.guest-experience__visual:hover
.guest-experience__image img {
  transform: scale(1.09);
}

.guest-experience__image figcaption {
  position: absolute;
  right: 23px;
  bottom: 21px;
  left: 23px;
  z-index: 3;

  display: flex;
  flex-direction: column;
  gap: 4px;

  color: #fff;
}

.guest-experience__image figcaption span {
  color: rgba(255, 255, 255, 0.72);

  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guest-experience__image figcaption strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 500;
}

/* =========================================================
   CENTER DECORATION
   ========================================================= */

.guest-experience__ring {
  position: absolute;
  z-index: -1;

  border: 1px solid rgba(231, 118, 0, 0.14);
  border-radius: 50%;

  pointer-events: none;
}

.guest-experience__ring--one {
  top: 0;
  right: -6%;

  width: 160px;
  height: 160px;

  animation: guestRingFloat 7s ease-in-out infinite;
}

.guest-experience__ring--two {
  bottom: 2%;
  left: -5%;

  width: 92px;
  height: 92px;

  animation: guestRingFloat 6s 400ms ease-in-out infinite reverse;
}

.guest-experience__badge {
  position: absolute;
  right: -5%;
  bottom: 12%;
  z-index: 6;

  display: flex;
  align-items: center;
  flex-direction: column;

  width: 130px;
  padding: 17px 12px;

  border: 1px solid rgba(173, 77, 8, 0.16);
  border-radius: 21px;

  background: rgba(255, 253, 249, 0.88);

  box-shadow:
    0 18px 44px rgba(74, 40, 17, 0.15),
    inset 0 1px rgba(255, 255, 255, 0.94);

  text-align: center;

  backdrop-filter: blur(14px);

  animation: guestBadgeFloat 5s ease-in-out infinite;
}

.guest-experience__badge strong {
  color: var(--guest-accent);

  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.guest-experience__badge span {
  margin-top: 5px;

  color: var(--guest-muted);

  font-size: 0.51rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guest-experience__scroll-detail {
  position: absolute;
  bottom: -2%;
  left: 50%;

  width: 1px;
  height: 52px;
  overflow: hidden;

  background: rgba(43, 25, 10, 0.12);

  transform: translateX(-50%);
}

.guest-experience__scroll-detail span {
  position: absolute;
  top: -100%;
  left: 0;

  width: 100%;
  height: 55%;

  background: var(--guest-accent);

  animation: guestScrollLine 2s ease-in-out infinite;
}

/* =========================================================
   BUTTON
   ========================================================= */

.guest-experience__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  min-height: 50px;
  margin-top: 27px;
  padding: 0 13px 0 20px;

  border: 1px solid rgba(173, 77, 8, 0.22);
  border-radius: 999px;

  color: var(--guest-ink);
  background: rgba(255, 255, 255, 0.68);

  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;

  box-shadow:
    0 12px 28px rgba(74, 40, 17, 0.07);

  backdrop-filter: blur(10px);

  transition:
    color 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 350ms ease,
    transform 350ms var(--guest-ease);
}

.guest-experience__button svg {
  width: 34px;
  height: 34px;
  padding: 9px;

  border-radius: 50%;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;

  background: rgba(231, 118, 0, 0.1);

  transition:
    transform 350ms var(--guest-ease),
    background 300ms ease;
}

.guest-experience__button:hover {
  color: #fff;
  border-color: var(--guest-accent);

  background:
    linear-gradient(
      135deg,
      #ed883d,
      #ca5913
    );

  box-shadow:
    0 18px 38px rgba(173, 77, 8, 0.2);

  transform: translateY(-3px);
}

.guest-experience__button:hover svg {
  background: rgba(98, 35, 0, 0.2);

  transform: translateX(4px);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes guestRingFloat {
  0%,
  100% {
    transform:
      translate3d(0, 0, 0)
      rotate(0);
  }

  50% {
    transform:
      translate3d(9px, -10px, 0)
      rotate(8deg);
  }
}

@keyframes guestBadgeFloat {
  0%,
  100% {
    transform:
      translateY(0)
      rotate(1deg);
  }

  50% {
    transform:
      translateY(-9px)
      rotate(-1deg);
  }
}

@keyframes guestScrollLine {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(330%);
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1080px) {
  .guest-experience__container {
    grid-template-columns:
      minmax(230px, 0.9fr)
      minmax(300px, 380px)
      minmax(230px, 0.9fr);

    gap: 34px;

    width: calc(100% - 40px);
  }

  .guest-experience__visual {
    min-height: 530px;
  }

  .guest-experience__content h2 {
    font-size: clamp(2.1rem, 3.2vw, 3rem);
  }

  .guest-experience__content p {
    font-size: 0.86rem;
    line-height: 1.65;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 820px) {
  .guest-experience {
    padding: 90px 0;
  }

  .guest-experience__container {
    grid-template-columns: 1fr;
    gap: 55px;

    width: min(calc(100% - 28px), 650px);
  }

  .guest-experience__content {
    width: 100%;
    max-width: none;

    justify-self: stretch;

    transform: translateY(35px);
  }

  .guest-experience__content--left {
    order: 1;
  }

  .guest-experience__visual {
    order: 2;

    min-height: 620px;
  }

  .guest-experience__content--right {
    order: 3;
  }

  .guest-experience__content h2 {
    max-width: 560px;

    font-size: clamp(2.7rem, 10vw, 4rem);
  }

  .guest-experience__content p {
    max-width: 590px;

    font-size: 0.94rem;
    line-height: 1.7;
  }

  .guest-experience__image {
    inset: 5% 6%;
  }

  .guest-experience__badge {
    right: 0;
  }
}

@media (max-width: 480px) {
  .guest-experience {
    padding: 75px 0;
  }

  .guest-experience__container {
    width: calc(100% - 24px);
    gap: 45px;
  }

  .guest-experience__content h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .guest-experience__visual {
    min-height: 500px;
  }

  .guest-experience__image {
    inset: 5% 4%;

    border-width: 5px;
    border-radius: 24px;
  }

  .guest-experience__frame {
    inset: 5% 0;
  }

  .guest-experience__badge {
    right: -2%;

    width: 112px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .guest-experience *,
  .guest-experience *::before,
  .guest-experience *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .guest-experience__content,
  .guest-experience__visual {
    opacity: 1;
    transform: none;
  }
}/* End custom CSS */