:root {
  --yy-red: #c60f17;
  --yy-red-dark: #971016;
  --yy-coral: #ed3e2f;
  --yy-orange: #f47b20;
  --yy-gold: #f2a31c;
  --yy-ink: #20232c;
  --yy-muted: #68656a;
  --yy-line: #eaded9;
  --yy-cream: #fff9f5;
  --yy-white: #ffffff;
  --yy-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --yy-display: "Cormorant Garamond", Georgia, serif;
  --yy-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --yy-shadow: 0 20px 60px rgba(83, 31, 23, 0.1);
  --yy-radius: 16px;
}

html {
  scroll-behavior: smooth;
}

body.yumyum-site {
  margin: 0;
  overflow-x: hidden;
  background: var(--yy-white);
  color: var(--yy-ink);
  font-family: var(--yy-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: subpixel-antialiased !important;
  text-rendering: optimizeLegibility;
}

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

.yumyum-site a {
  color: inherit;
  text-decoration: none;
}

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

.yumyum-site h1,
.yumyum-site h2,
.yumyum-site h3,
.yumyum-site p,
.yumyum-site figure,
.yumyum-site dl,
.yumyum-site dd {
  margin: 0;
}

.yy-container {
  width: min(1180px, calc(100% - 72px));
  margin-inline: auto;
}

.yy-main {
  overflow: hidden;
}

.yy-eyebrow {
  color: var(--yy-coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1.4;
}

.yy-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 12px 28px;
  border: 1px solid var(--yy-red);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yy-red), var(--yy-coral));
  box-shadow: 0 8px 24px rgba(198, 15, 23, 0.16);
  color: var(--yy-white) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.yy-button:hover,
.yy-button:focus-visible {
  background: linear-gradient(135deg, var(--yy-red-dark), var(--yy-red));
  box-shadow: 0 12px 30px rgba(151, 16, 22, 0.25);
  color: var(--yy-white) !important;
  text-decoration: none !important;
  transform: translateY(-2px);
}

.yy-heading-line {
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 26px;
  background: linear-gradient(90deg, var(--yy-red), var(--yy-gold));
}

/* Header */
.yy-header {
  position: relative;
  z-index: 100;
  height: 78px;
  border-bottom: 1px solid rgba(198, 15, 23, 0.11);
  background: rgba(255, 255, 255, 0.96);
  transition: box-shadow 180ms ease;
}

.yy-header.is-stuck {
  position: sticky;
  top: 0;
  box-shadow: 0 8px 30px rgba(50, 30, 24, 0.08);
}

.admin-bar .yy-header.is-stuck {
  top: 32px;
}

.yy-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.yy-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.yy-brand__fallback img,
.yy-brand__custom img {
  width: 190px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.yy-brand__fallback,
.yy-brand__custom,
.yy-brand__custom .custom-logo-link {
  display: flex;
  width: 190px;
  height: 58px;
  flex: 0 0 190px;
  align-items: center;
  overflow: hidden;
}

.yy-brand__custom .custom-logo-link {
  flex-basis: auto;
}

.yy-brand__custom img.custom-logo {
  width: 190px !important;
  height: 58px !important;
  max-width: 190px !important;
  max-height: 58px !important;
  object-fit: contain !important;
  object-position: left center !important;
}

.yy-brand__company {
  padding-left: 14px;
  border-left: 1px solid var(--yy-line);
  color: #4b4748;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.yy-nav {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
}

.yy-nav__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 31px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yy-nav__list li {
  margin: 0;
}

.yy-nav__list a {
  position: relative;
  padding-block: 27px 25px;
  color: #383536;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.yy-nav__list a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--yy-red);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.yy-nav__list a:hover::after,
.yy-nav__list .current-menu-item > a::after {
  transform: scaleX(1);
}

.yy-button--header {
  width: auto;
  min-width: 142px;
  min-height: 42px;
  padding-inline: 24px;
  flex: 0 0 auto;
  white-space: nowrap;
  word-break: keep-all;
  writing-mode: horizontal-tb;
}

.yy-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.yy-menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--yy-red);
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.yy-first-view {
  --yy-hero-slant: clamp(72px, 8vw, 110px);
  display: grid;
  min-height: calc(100svh - 78px);
  grid-template-rows: minmax(460px, 1fr) auto;
  overflow: hidden;
}

.admin-bar .yy-first-view {
  min-height: calc(100svh - 110px);
}

.yy-hero {
  position: relative;
  display: grid;
  height: auto;
  min-height: 0;
  grid-template-columns: minmax(440px, 40%) 1fr;
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 68%, rgba(244, 123, 32, 0.08), transparent 22%),
    linear-gradient(135deg, #fff 0%, #fffaf6 42%, #fff 42%);
}

.yy-hero__copy {
  position: relative;
  z-index: 4;
  align-self: center;
  width: min(500px, calc(100% - 60px));
  margin-right: 0;
  margin-left: max(52px, calc((100vw - 1180px) / 2));
  padding: 28px 0 32px;
}

.yy-hero__copy .yy-eyebrow {
  margin-bottom: 14px;
}

.yy-hero h1 {
  color: var(--yy-red);
  font-family: var(--yy-display);
  font-size: clamp(64px, 5.2vw, 82px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-shadow: 0 7px 18px rgba(198, 15, 23, 0.08);
}

.yy-hero__subtitle {
  margin-top: 22px !important;
  color: var(--yy-red);
  font-family: var(--yy-serif);
  font-size: clamp(20px, 1.75vw, 25px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.yy-hero__text {
  width: min(100%, 360px);
  max-width: 360px;
  margin: 13px 0 22px !important;
  color: #454041;
  font-size: 13px;
  line-height: 2;
}

.yy-hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  min-width: 0;
  width: calc(100% + var(--yy-hero-slant));
  margin-left: calc(0px - var(--yy-hero-slant));
  overflow: hidden;
}

.yy-hero__visual .yy-hero__panel {
  position: relative;
  flex: 0 0 calc(25% + var(--yy-hero-slant) - 3px);
  height: 100%;
  min-width: 0;
  margin: 0 0 0 calc(4px - var(--yy-hero-slant));
  overflow: hidden;
  clip-path: polygon(var(--yy-hero-slant) 0, 100% 0, calc(100% - var(--yy-hero-slant)) 100%, 0 100%);
}

.yy-hero__visual .yy-hero__panel:first-child {
  margin-left: 0;
}

.yy-hero__panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.04);
  transition: transform 700ms ease;
}

.yy-hero__panel:nth-child(1) img {
  object-position: 62% center;
}

.yy-hero__panel:nth-child(2) img {
  object-position: 68% center;
}

.yy-hero__panel:nth-child(3) img {
  object-position: center;
}

.yy-hero__panel:nth-child(4) img {
  object-position: 52% center;
}

.yy-hero:hover .yy-hero__panel img {
  transform: scale(1.075);
}

/* Homepage hero: one-time entrance sequence. */
.yy-js body.home .yy-first-view .yy-hero__visual {
  transition:
    clip-path 1050ms cubic-bezier(0.22, 1, 0.36, 1) 60ms,
    opacity 180ms ease 60ms,
    transform 1050ms cubic-bezier(0.22, 1, 0.36, 1) 60ms;
}

.yy-js body.home .yy-first-view:not(.is-loaded) .yy-hero__visual {
  clip-path: inset(0 0 0 100%);
  opacity: 0;
  transform: translateX(56px);
}

.yy-js body.home .yy-first-view.is-loaded .yy-hero__visual {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: none;
}

.yy-js body.home .yy-first-view .yy-hero__copy > .yy-eyebrow,
.yy-js body.home .yy-first-view .yy-hero__copy > h1,
.yy-js body.home .yy-first-view .yy-hero__copy > .yy-hero__subtitle,
.yy-js body.home .yy-first-view .yy-hero__copy > .yy-hero__text,
.yy-js body.home .yy-first-view .yy-hero__copy > .yy-button,
.yy-js body.home .yy-first-view .yy-business-ribbon > a {
  transition:
    clip-path 920ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 640ms ease,
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1);
}

.yy-js body.home .yy-first-view:not(.is-loaded) .yy-hero__copy > .yy-eyebrow,
.yy-js body.home .yy-first-view:not(.is-loaded) .yy-hero__copy > .yy-hero__subtitle,
.yy-js body.home .yy-first-view:not(.is-loaded) .yy-hero__copy > .yy-hero__text,
.yy-js body.home .yy-first-view:not(.is-loaded) .yy-hero__copy > .yy-button,
.yy-js body.home .yy-first-view:not(.is-loaded) .yy-business-ribbon > a {
  opacity: 0;
  transform: translateY(18px);
}

.yy-js body.home .yy-first-view:not(.is-loaded) .yy-hero__copy > h1 {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transform: translateY(28px);
}

.yy-js body.home .yy-first-view.is-loaded .yy-hero__copy > .yy-eyebrow,
.yy-js body.home .yy-first-view.is-loaded .yy-hero__copy > h1,
.yy-js body.home .yy-first-view.is-loaded .yy-hero__copy > .yy-hero__subtitle,
.yy-js body.home .yy-first-view.is-loaded .yy-hero__copy > .yy-hero__text,
.yy-js body.home .yy-first-view.is-loaded .yy-hero__copy > .yy-button,
.yy-js body.home .yy-first-view.is-loaded .yy-business-ribbon > a {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: none;
}

/* Safari: discard composited text layers after the entrance sequence. */
.yy-js body.home .yy-first-view.is-settled .yy-hero__visual,
.yy-js body.home .yy-first-view.is-settled .yy-hero__copy > .yy-eyebrow,
.yy-js body.home .yy-first-view.is-settled .yy-hero__copy > h1,
.yy-js body.home .yy-first-view.is-settled .yy-hero__copy > .yy-hero__subtitle,
.yy-js body.home .yy-first-view.is-settled .yy-hero__copy > .yy-hero__text,
.yy-js body.home .yy-first-view.is-settled .yy-hero__copy > .yy-button,
.yy-js body.home .yy-first-view.is-settled .yy-business-ribbon > a {
  clip-path: none;
  opacity: 1;
  transform: none;
  transition: none;
}

.yy-js body.home .yy-first-view .yy-hero__copy > .yy-eyebrow {
  transition-delay: 300ms;
}

.yy-js body.home .yy-first-view .yy-hero__copy > h1 {
  transition-delay: 360ms;
}

.yy-js body.home .yy-first-view .yy-hero__copy > .yy-hero__subtitle {
  transition-delay: 540ms;
}

.yy-js body.home .yy-first-view .yy-hero__copy > .yy-hero__text {
  transition-delay: 640ms;
}

.yy-js body.home .yy-first-view .yy-hero__copy > .yy-button {
  transition-delay: 740ms;
}

.yy-js body.home .yy-first-view .yy-business-ribbon > a:nth-child(1) {
  transition-delay: 820ms;
}

.yy-js body.home .yy-first-view .yy-business-ribbon > a:nth-child(2) {
  transition-delay: 880ms;
}

.yy-js body.home .yy-first-view .yy-business-ribbon > a:nth-child(3) {
  transition-delay: 940ms;
}

.yy-js body.home .yy-first-view .yy-business-ribbon > a:nth-child(4) {
  transition-delay: 1000ms;
}

.yy-business-ribbon {
  position: relative;
  z-index: 5;
  display: grid;
  width: 100%;
  box-sizing: border-box;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding-left: calc(40% - var(--yy-hero-slant));
  border-bottom: 1px solid var(--yy-line);
  background: #fff;
}

.yy-business-ribbon a {
  display: grid;
  min-height: 74px;
  grid-template-columns: 40px 1fr;
  align-content: center;
  min-width: 0;
  padding: 13px 14px;
  border-right: 1px solid var(--yy-line);
}

.yy-business-ribbon a:last-child {
  border-right: 0;
}

.yy-business-ribbon span {
  display: grid;
  width: 32px;
  height: 32px;
  grid-row: 1 / span 2;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yy-coral), var(--yy-orange));
  color: #fff;
  font-family: var(--yy-display);
  font-size: 16px;
  font-weight: 700;
}

.yy-business-ribbon strong {
  color: #343133;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
}

.yy-business-ribbon small {
  color: #8c8483;
  font-family: var(--yy-display);
  font-size: 10.5px;
  line-height: 1.4;
}

/* Sections */
.yy-section {
  padding: 92px 0;
}

.yy-about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 50%, rgba(244, 123, 32, 0.06), transparent 26%),
    #fff;
}

.yy-about__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 54px;
  align-items: center;
  padding-right: 35%;
}

.yy-about h2 {
  margin-top: 17px;
  color: var(--yy-ink);
  font-family: var(--yy-serif);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.yy-about__body {
  position: relative;
  padding-right: 12px;
}

.yy-about__body p + p {
  margin-top: 7px;
}

.yy-about__body p {
  color: #4a4546;
  font-size: 14px;
  line-height: 2;
}

.yy-about__visual {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38%;
  overflow: hidden;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.yy-about__visual::before,
.yy-about__visual::after {
  position: absolute;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.yy-about__visual::before {
  top: -8%;
  bottom: -8%;
  left: 15%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--yy-coral) 18%, var(--yy-orange) 82%, transparent);
  transform: rotate(8deg);
  transform-origin: center;
}

.yy-about__visual::after {
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0.25) 31%, transparent 58%);
}

.yy-about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.yy-about__visual.yy-reveal {
  opacity: 0;
  transform: translateX(70px);
}

.yy-about__visual.yy-reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.yy-text-link {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  min-width: 190px;
  margin-top: 24px;
  padding: 9px 18px;
  border: 1px solid rgba(198, 15, 23, 0.35);
  border-radius: 999px;
  color: var(--yy-red) !important;
  font-size: 11px;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease;
}

.yy-text-link:hover {
  border-color: var(--yy-red);
  background: #fff7f4;
  text-decoration: none !important;
}

.yy-business {
  padding-top: 38px;
  background: linear-gradient(180deg, #fff 0%, var(--yy-cream) 100%);
}

.yy-section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.yy-section-heading h2 {
  margin-top: 5px;
  color: var(--yy-ink);
  font-family: var(--yy-serif);
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: 0.16em;
}

.yy-business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.yy-business-card {
  overflow: hidden;
  border: 1px solid var(--yy-line);
  border-radius: var(--yy-radius);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 10px 35px rgba(104, 55, 39, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.yy-business-card:hover {
  box-shadow: var(--yy-shadow);
  transform: translateY(-5px);
}

.yy-business-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.yy-business-card__image::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(43, 18, 16, 0.36));
  content: "";
}

.yy-business-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.yy-business-card:hover .yy-business-card__image img {
  transform: scale(1.045);
}

.yy-business-card__image > span {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yy-red), var(--yy-orange));
  box-shadow: 0 6px 20px rgba(64, 23, 16, 0.25);
  color: #fff;
  font-family: var(--yy-display);
  font-size: 22px;
  font-weight: 700;
}

.yy-business-card__content {
  padding: 22px 20px 21px;
  text-align: center;
}

.yy-business-card h3 {
  min-height: 57px;
  color: var(--yy-red);
  font-family: var(--yy-serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}

.yy-business-card__en {
  margin-top: 2px !important;
  color: var(--yy-orange);
  font-family: var(--yy-display);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.yy-business-card__content > p:not(.yy-business-card__en) {
  min-height: 90px;
  margin-top: 15px !important;
  color: #575051;
  font-size: 11px;
  line-height: 1.9;
  text-align: left;
}

.yy-card-link {
  display: inline-flex;
  gap: 15px;
  margin-top: 14px;
  color: var(--yy-red) !important;
  font-size: 11px;
  font-weight: 700;
}

/* CARDEL feature on the corporate homepage */
.yy-cardel-promo {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(28px, 3.2vw, 48px);
  padding: 82px 0;
  background:
    radial-gradient(circle at 7% 18%, rgba(255, 214, 50, 0.22), transparent 22%),
    radial-gradient(circle at 93% 77%, rgba(57, 207, 196, 0.2), transparent 26%),
    linear-gradient(135deg, #fffdf4 0%, #fff7f1 48%, #f1fffd 100%);
}

.yy-cardel-promo::before {
  position: absolute;
  top: -115px;
  right: -75px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(57, 207, 196, 0.28);
  border-radius: 50%;
  content: "";
}

.yy-cardel-promo__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(470px, 1.16fr);
  gap: 70px;
  align-items: center;
}

.yy-cardel-promo__copy {
  position: relative;
  z-index: 4;
}

.yy-cardel-promo__copy .yy-eyebrow {
  color: #ed1c24;
}

.yy-cardel-promo__brand-row {
  display: flex;
  gap: 44px;
  align-items: center;
  margin-top: 13px;
}

.yy-cardel-promo__logo {
  width: 205px;
  height: auto;
}

.yy-cardel-promo__anniversary {
  display: block;
  width: 155px;
  height: 155px;
  flex: 0 0 155px;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(116, 74, 11, 0.15));
}

.yy-cardel-promo__copy h2 {
  margin-top: 13px;
  color: #172239;
  font-family: var(--yy-serif);
  font-size: clamp(31px, 3.1vw, 44px);
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.55;
}

.yy-cardel-promo__copy > p:not(.yy-eyebrow) {
  max-width: 470px;
  margin-top: 18px;
  color: #535867;
  font-size: 13px;
  line-height: 2;
}

.yy-cardel-promo__button {
  min-width: 245px;
  margin-top: 27px;
  border-color: #ed1c24;
  background: linear-gradient(135deg, #ed1c24, #ff7628);
  box-shadow: 0 12px 30px rgba(237, 28, 36, 0.2);
}

.yy-cardel-promo__visual {
  position: relative;
  min-height: 420px;
}

.yy-cardel-promo__image {
  position: absolute;
  overflow: hidden;
  border: 7px solid #fff;
  background: #fff;
  box-shadow: 0 25px 60px rgba(39, 53, 71, 0.18);
}

.yy-cardel-promo__image--main {
  top: 5px;
  right: 1%;
  width: 70%;
  height: 365px;
  border-radius: 30px;
  transform: rotate(4deg);
}

.yy-cardel-promo__image--sub {
  bottom: 8px;
  left: 0;
  z-index: 2;
  width: 48%;
  height: 225px;
  border-radius: 24px;
  transform: rotate(-7deg);
}

.yy-cardel-promo__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yy-cardel-promo__image--main img {
  object-position: 46% center;
}

.yy-cardel-promo__image--sub img {
  object-position: 55% center;
}

.yy-cardel-promo__orb {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.yy-cardel-promo__orb--yellow {
  top: 0;
  left: 12%;
  width: 92px;
  height: 92px;
  background: rgba(255, 214, 50, 0.62);
}

.yy-cardel-promo__orb--aqua {
  right: 0;
  bottom: 0;
  width: 135px;
  height: 135px;
  background: rgba(57, 207, 196, 0.25);
}

.yy-cardel-promo__spark {
  position: absolute;
  z-index: 3;
  color: #f5a400;
  font-size: 39px;
  line-height: 1;
}

.yy-cardel-promo__spark--one {
  top: 9%;
  left: 4%;
}

.yy-cardel-promo__spark--two {
  right: 1%;
  bottom: 9%;
  color: #39cfc4;
  font-size: 49px;
}

/* Facts */
.yy-facts {
  position: relative;
  z-index: 2;
  padding: 18px 0;
  background: #fff;
}

.yy-facts__grid {
  display: grid;
  grid-template-columns: 0.9fr repeat(4, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--yy-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.74);
}

.yy-facts__lead,
.yy-fact {
  min-height: 75px;
  padding: 15px 18px;
}

.yy-facts__lead {
  align-self: stretch;
  color: #313034;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  line-height: 1.6;
}

.yy-facts__lead span {
  color: #81797a;
  font-size: 8px;
}

.yy-fact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-left: 1px solid var(--yy-line);
  color: var(--yy-red);
}

.yy-fact__icon {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0;
  flex: 0 0 30px;
  color: var(--yy-coral);
  font-size: 24px;
  line-height: 30px;
  text-align: center;
}

.yy-fact__text {
  display: flex;
  height: 30px;
  min-width: 0;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.yy-fact__text strong,
.yy-fact__text small {
  display: block;
  min-height: 0;
}

.yy-fact strong {
  font-family: var(--yy-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  font-variant-numeric: lining-nums;
  white-space: nowrap;
}

.yy-fact small {
  color: #766e70;
  font-size: 9px;
  font-weight: 600;
  line-height: 30px;
  padding: 0;
  white-space: nowrap;
}

/* Corporate information */
.yy-corporate {
  padding-top: 72px;
}

.yy-corporate__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.yy-message,
.yy-profile {
  min-width: 0;
  padding-right: 42px;
}

.yy-profile {
  padding-right: 0;
  padding-left: 42px;
  border-left: 1px solid var(--yy-line);
}

.yy-message header,
.yy-profile header {
  margin-bottom: 20px;
}

.yy-message h2,
.yy-profile h2,
.yy-news h2 {
  margin-top: 4px;
  color: var(--yy-red);
  font-family: var(--yy-serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.yy-message__body {
  display: grid;
  grid-template-columns: minmax(170px, 0.75fr) 1.25fr;
  gap: 28px;
}

.yy-message__portrait {
  position: relative;
  display: grid;
  min-height: 248px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(145deg, #faf5f1, #f1e5de);
  text-align: center;
}

.yy-message__portrait > img:not(:only-child) {
  width: 118px;
  height: 96px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.yy-message__portrait > img:only-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yy-message__portrait span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  color: #897f7d;
  font-size: 9px;
  line-height: 1.6;
}

.yy-message__copy p {
  color: #4f494a;
  font-size: 12px;
  line-height: 1.95;
}

.yy-message__copy p + p {
  margin-top: 10px;
}

.yy-message__signature {
  margin-top: 19px !important;
  font-family: var(--yy-serif);
  letter-spacing: 0.08em;
}

.yy-message__signature strong {
  margin-left: 9px;
  color: var(--yy-ink);
  font-size: 19px;
}

.yy-profile dl {
  border-top: 1px solid var(--yy-line);
}

.yy-profile dl > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: start;
  padding: 8px 0 7px;
  border-bottom: 1px solid var(--yy-line);
  font-size: 11px;
  line-height: 1.6;
}

.yy-profile dt,
.yy-profile dd {
  align-self: start;
  margin: 0;
}

.yy-profile dt {
  color: #4e4849;
  font-weight: 600;
}

.yy-profile dd {
  color: #5b5556;
}

.yy-profile .yy-text-link {
  margin-top: 20px;
}

/* News */
.yy-news {
  padding: 27px 0;
  border-top: 1px solid var(--yy-line);
  border-bottom: 1px solid var(--yy-line);
  background: #fffdfc;
}

.yy-news__inner {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 28px;
  align-items: center;
}

.yy-news h2 {
  font-size: 21px;
}

.yy-news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.yy-news__list article {
  min-width: 0;
  min-height: 67px;
  padding: 5px 20px;
  border-left: 1px solid var(--yy-line);
}

.yy-news__list time {
  color: var(--yy-red);
  font-family: var(--yy-display);
  font-size: 11px;
  font-weight: 600;
}

.yy-news__list article > span {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  background: var(--yy-red);
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  line-height: 1.4;
}

.yy-news__list h3 {
  margin-top: 8px;
  overflow: hidden;
  color: #413d3e;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.6;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.yy-button--outline {
  min-height: 38px;
  padding: 8px 18px;
  border-color: rgba(198, 15, 23, 0.5);
  background: #fff;
  box-shadow: none;
  color: var(--yy-red) !important;
  font-size: 10px;
}

.yy-button--outline:hover {
  background: #fff5f2;
  color: var(--yy-red) !important;
}

/* Company page */
.yy-company-page {
  background: #fff;
}

.yy-company-hero {
  position: relative;
  display: grid;
  min-height: 410px;
  grid-template-columns: minmax(420px, 42%) 1fr;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 78%, rgba(244, 123, 32, 0.08), transparent 28%),
    linear-gradient(135deg, #fff 0%, #fff9f5 46%, #fff 46%);
}

.yy-company-hero__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(480px, calc(100% - 70px));
  margin-left: max(52px, calc((100vw - 1180px) / 2));
  padding: 52px 0;
}

.yy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 38px;
  color: #736d6e;
  font-family: var(--yy-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.yy-breadcrumb a {
  color: var(--yy-red);
}

.yy-company-hero h1 {
  margin-top: 15px;
  color: var(--yy-ink);
  font-family: var(--yy-serif);
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.yy-company-hero__copy > p:last-child {
  margin-top: 24px;
  color: #413d3e;
  font-family: var(--yy-serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.9;
}

.yy-company-hero__visual {
  position: relative;
  z-index: 1;
  width: calc(100% + 92px);
  height: 100%;
  margin-left: -92px;
  overflow: hidden;
  clip-path: polygon(92px 0, 100% 0, 100% 100%, 0 100%);
}

.yy-company-hero__visual::after {
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: 57px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--yy-coral) 13%, var(--yy-orange) 88%, transparent);
  content: "";
  transform: rotate(12deg);
  transform-origin: center;
}

.yy-company-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.18);
  transform-origin: right center;
}

.yy-company-intro > .yy-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  align-items: center;
}

.yy-company-intro__heading h2,
.yy-company-section-heading h2,
.yy-company-access h2 {
  color: var(--yy-ink);
  font-family: var(--yy-serif);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.yy-company-intro__heading h2 {
  margin-top: 14px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.55;
}

.yy-company-intro__copy p {
  color: #4c4748;
  font-size: 14px;
  line-height: 2.15;
}

.yy-company-intro__copy p + p {
  margin-top: 12px;
}

.yy-company-profile {
  background:
    radial-gradient(circle at 95% 10%, rgba(244, 123, 32, 0.06), transparent 24%),
    var(--yy-cream);
}

.yy-company-section-heading {
  margin-bottom: 34px;
}

.yy-company-section-heading h2 {
  margin-top: 6px;
  font-size: clamp(29px, 3vw, 40px);
  line-height: 1.5;
}

.yy-company-profile__list {
  overflow: hidden;
  border-top: 1px solid var(--yy-line);
  background: rgba(255, 255, 255, 0.54);
}

.yy-company-profile__list > div {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 66px;
  border-bottom: 1px solid var(--yy-line);
}

.yy-company-profile__list dt,
.yy-company-profile__list dd {
  display: flex;
  align-items: center;
  padding: 19px 28px;
  font-size: 13px;
  line-height: 1.9;
}

.yy-company-profile__list dt {
  border-left: 3px solid transparent;
  color: #3e393a;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.yy-company-profile__list > div:hover dt {
  border-left-color: var(--yy-coral);
  color: var(--yy-red);
}

.yy-company-profile__list dd {
  border-left: 1px solid var(--yy-line);
  color: #514b4c;
}

.yy-company-profile__list a {
  color: var(--yy-red);
}

.yy-company-business {
  background: #fff;
}

.yy-company-business__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.yy-company-business-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--yy-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(83, 31, 23, 0.06);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.yy-company-business-card__content {
  position: relative;
  min-height: 186px;
  padding: 25px 20px 20px;
}

.yy-company-business-card__content > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yy-coral), var(--yy-orange));
  color: #fff;
  font-family: var(--yy-display);
  font-size: 14px;
  font-weight: 700;
}

.yy-company-business-card h3 {
  min-height: 50px;
  margin-top: 16px;
  color: var(--yy-red);
  font-family: var(--yy-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.yy-company-business-card p {
  margin-top: 10px;
  color: #625b5c;
  font-size: 10px;
  line-height: 1.8;
}

.yy-company-business-card figure {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.yy-company-business-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease;
}

.yy-company-business-card.yy-reveal.is-visible:hover,
.yy-company-business-card.yy-reveal.is-visible:focus-visible {
  border-color: rgba(198, 15, 23, 0.3);
  box-shadow: 0 22px 46px rgba(83, 31, 23, 0.12);
  outline: none;
  text-decoration: none !important;
  transform: translateY(-7px);
}

.yy-company-business-card:hover img,
.yy-company-business-card:focus-visible img {
  transform: scale(1.055);
}

.yy-company-access {
  background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
}

.yy-company-access__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: center;
}

.yy-company-access h2 {
  margin-top: 7px;
  font-size: clamp(31px, 3.2vw, 43px);
  line-height: 1.5;
}

.yy-company-access__copy > p:not(.yy-eyebrow) {
  max-width: 330px;
  margin-top: 24px;
  color: #514b4c;
  font-size: 13px;
  line-height: 2;
}

.yy-company-access__copy .yy-button {
  margin-top: 28px;
}

.yy-company-access__map {
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--yy-line);
  border-radius: 13px;
  box-shadow: 0 18px 45px rgba(83, 31, 23, 0.09);
}

.yy-company-access__map iframe {
  display: block;
  width: 100%;
  height: 330px;
  border: 0;
}

/* Shared fixed-page hero */
.yy-subpage-hero {
  position: relative;
  display: grid;
  min-height: 420px;
  grid-template-columns: minmax(440px, 44%) 1fr;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 82%, rgba(244, 123, 32, 0.08), transparent 27%),
    linear-gradient(135deg, #fff 0%, #fff9f5 47%, #fff 47%);
}

.yy-subpage-hero__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(570px, calc(100% - 72px));
  margin-left: max(52px, calc((100vw - 1180px) / 2));
  padding: 48px 0;
}

.yy-subpage-hero h1 {
  max-width: 570px;
  margin-top: 14px;
  color: var(--yy-ink);
  font-family: var(--yy-serif);
  font-size: clamp(39px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.38;
}

.yy-subpage-hero__copy > p:last-child {
  max-width: 480px;
  margin-top: 22px;
  color: #484243;
  font-family: var(--yy-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.9;
}

.yy-subpage-hero__lead {
  max-width: 480px;
  margin-top: 22px;
  color: #484243;
  font-family: var(--yy-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.9;
}

.yy-service-hero-note {
  display: inline-flex;
  max-width: none !important;
  min-height: 40px;
  align-items: center;
  margin-top: 20px !important;
  padding: 9px 15px;
  border: 1px solid rgba(237, 62, 47, 0.24);
  border-radius: 999px;
  background: rgba(255, 249, 245, 0.94);
  color: var(--yy-red) !important;
  font-family: var(--yy-sans) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.6 !important;
}

.yy-subpage-hero__visual {
  position: relative;
  width: calc(100% + 90px);
  height: 100%;
  margin-left: -90px;
  overflow: hidden;
  clip-path: polygon(90px 0, 100% 0, 100% 100%, 0 100%);
}

.yy-subpage-hero__visual::after {
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: 56px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--yy-coral) 14%, var(--yy-orange) 86%, transparent);
  content: "";
  transform: rotate(12deg);
}

.yy-subpage-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.yy-service-page--restaurant .yy-subpage-hero__visual img {
  object-position: 58% center;
}

.yy-service-page--lottery .yy-subpage-hero__visual img {
  object-position: 50% center;
}

.yy-service-page--trading .yy-subpage-hero__visual img {
  object-position: 54% center;
}

.yy-service-page--global .yy-subpage-hero__visual img {
  object-position: 56% center;
}

.yy-subpage-hero:hover .yy-subpage-hero__visual img {
  transform: scale(1.035);
}

/* Service pages */
.yy-service-overview > .yy-container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}

.yy-service-overview__heading h2,
.yy-service-section-heading h2,
.yy-message-letter__body h2,
.yy-message-values__heading h2,
.yy-contact-guide h2,
.yy-contact-form h2 {
  color: var(--yy-ink);
  font-family: var(--yy-serif);
  font-weight: 600;
  letter-spacing: 0.07em;
}

.yy-service-overview__heading h2 {
  margin-top: 14px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.55;
}

.yy-service-overview__copy > p {
  color: #504a4b;
  font-size: 14px;
  line-height: 2.15;
}

.yy-service-overview__copy > p + p {
  margin-top: 12px;
}

.yy-service-overview__copy .yy-service-overview__note {
  margin-top: 23px;
  padding: 15px 18px;
  border-left: 3px solid var(--yy-coral);
  background: var(--yy-cream);
  color: var(--yy-red);
  font-weight: 600;
  line-height: 1.8;
}

.yy-service-owned {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 211, 62, 0.2), transparent 24%),
    radial-gradient(circle at 88% 76%, rgba(45, 205, 204, 0.13), transparent 25%),
    linear-gradient(135deg, #fffdf6 0%, #fff6eb 58%, #f4fffe 100%);
}

.yy-service-owned::before,
.yy-service-owned::after {
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(244, 123, 32, 0.18);
  border-radius: 36% 64% 55% 45%;
  content: "";
  transform: rotate(28deg);
}

.yy-service-owned::before {
  top: -80px;
  left: -55px;
}

.yy-service-owned::after {
  right: -60px;
  bottom: -95px;
}

.yy-service-owned__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  gap: 72px;
  align-items: center;
}

.yy-service-owned__brand {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(237, 62, 47, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(138, 56, 28, 0.09);
}

.yy-service-owned__brand img {
  position: relative;
  z-index: 2;
  width: min(70%, 280px);
  height: auto;
}

.yy-service-owned__brand > p {
  position: absolute;
  right: 24px;
  bottom: 19px;
  z-index: 2;
  color: #968379;
  font-family: var(--yy-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.yy-service-owned__orb {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 220, 54, 0.47), rgba(255, 121, 39, 0.2) 54%, rgba(44, 208, 202, 0.2));
  filter: blur(2px);
}

.yy-service-owned__copy h2 {
  margin: 10px 0 22px;
  color: var(--yy-ink);
  font-family: var(--yy-serif);
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.yy-service-owned__copy > p:not(.yy-eyebrow) {
  color: #514a4b;
  font-size: 14px;
  line-height: 2.05;
}

.yy-service-owned__copy > p + p {
  margin-top: 8px;
}

.yy-service-owned__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  margin-top: 27px;
}

.yy-service-owned__actions .yy-text-link {
  margin-top: 0;
}

.yy-service-features {
  background:
    radial-gradient(circle at 96% 10%, rgba(244, 123, 32, 0.06), transparent 23%),
    var(--yy-cream);
}

.yy-service-section-heading--center {
  text-align: center;
}

.yy-service-issues {
  background:
    radial-gradient(circle at 90% 8%, rgba(244, 123, 32, 0.07), transparent 22%),
    var(--yy-cream);
}

.yy-service-issues__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.yy-service-issue {
  min-height: 225px;
  padding: 31px 28px;
  border: 1px solid var(--yy-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 13px 34px rgba(83, 31, 23, 0.045);
  text-align: center;
}

.yy-service-issue > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-inline: auto;
  border: 1px solid rgba(237, 62, 47, 0.42);
  border-radius: 50%;
  color: var(--yy-coral);
  font-family: var(--yy-display);
  font-size: 15px;
  font-weight: 600;
}

.yy-service-issue h3 {
  margin-top: 22px;
  color: var(--yy-red);
  font-family: var(--yy-serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}

.yy-service-issue p {
  margin-top: 13px;
  color: #625b5c;
  font-size: 11px;
  line-height: 1.9;
}

.yy-service-section-heading {
  margin-bottom: 34px;
}

.yy-service-section-heading h2 {
  margin-top: 6px;
  font-size: clamp(29px, 3vw, 40px);
  line-height: 1.5;
}

.yy-service-features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.yy-service-feature {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 34px 30px;
  border: 1px solid var(--yy-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(83, 31, 23, 0.05);
}

.yy-service-feature::after {
  position: absolute;
  right: -46px;
  bottom: -68px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(237, 62, 47, 0.14);
  border-radius: 50%;
  content: "";
}

.yy-service-feature > span {
  color: var(--yy-coral);
  font-family: var(--yy-display);
  font-size: 31px;
  font-weight: 600;
  line-height: 1;
}

.yy-service-feature h3 {
  margin-top: 26px;
  color: var(--yy-red);
  font-family: var(--yy-serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.yy-service-feature p {
  margin-top: 16px;
  color: #5b5556;
  font-size: 12px;
  line-height: 2;
}

.yy-service-page--restaurant .yy-service-feature {
  min-height: 238px;
}

.yy-service-strengths {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.yy-service-strengths::after {
  position: absolute;
  right: -170px;
  bottom: -230px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(237, 62, 47, 0.16);
  border-radius: 50%;
  content: "";
}

.yy-service-strengths__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.yy-service-strengths__visual {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--yy-shadow);
}

.yy-service-strengths__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.yy-service-strengths__content .yy-service-section-heading {
  margin-bottom: 24px;
}

.yy-service-strengths__content ol {
  padding: 0;
  border-top: 1px solid var(--yy-line);
  list-style: none;
}

.yy-service-strengths__content li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 21px 0;
  border-bottom: 1px solid var(--yy-line);
}

.yy-service-strengths__content li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--yy-coral);
  border-radius: 50%;
  color: var(--yy-red);
  font-family: var(--yy-display);
  font-size: 13px;
}

.yy-service-strengths__content h3 {
  color: var(--yy-red);
  font-family: var(--yy-serif);
  font-size: 17px;
  font-weight: 600;
}

.yy-service-strengths__content li p {
  margin-top: 7px;
  color: #625b5c;
  font-size: 11px;
  line-height: 1.9;
}

.yy-service-flow {
  background: #fff;
}

.yy-service-flow__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--yy-line);
  border-radius: 13px;
  list-style: none;
}

.yy-service-flow__list li {
  position: relative;
  display: flex;
  min-height: 126px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px 18px;
  border-right: 1px solid var(--yy-line);
  background: #fff;
  text-align: center;
}

.yy-service-flow__list li:last-child {
  border-right: 0;
}

.yy-service-flow__list li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -9px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-top: 1px solid var(--yy-line);
  border-right: 1px solid var(--yy-line);
  background: #fff;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.yy-service-flow__list span {
  color: var(--yy-coral);
  font-family: var(--yy-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.yy-service-flow__list strong {
  margin-top: 9px;
  color: #3f3a3b;
  font-family: var(--yy-serif);
  font-size: 16px;
  font-weight: 600;
}

.yy-service-section-note {
  max-width: 620px;
  margin-top: 12px;
  color: #746d6e;
  font-size: 11px;
  line-height: 1.8;
}

.yy-service-cases {
  background: #fff;
}

.yy-service-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.yy-service-case {
  overflow: hidden;
  border: 1px solid var(--yy-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(83, 31, 23, 0.055);
}

.yy-service-case figure {
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
}

.yy-service-case img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yy-service-case:nth-child(1) img {
  object-position: 42% 48%;
}

.yy-service-case:nth-child(2) img {
  object-position: 66% center;
}

.yy-service-case:nth-child(3) img {
  object-position: 74% 52%;
}

.yy-service-case > div {
  position: relative;
  min-height: 172px;
  padding: 25px 23px 24px;
}

.yy-service-case > div > span {
  position: absolute;
  top: -18px;
  right: 20px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yy-coral), var(--yy-orange));
  color: #fff;
  font-family: var(--yy-display);
  font-size: 11px;
  font-weight: 700;
}

.yy-service-case h3 {
  color: var(--yy-red);
  font-family: var(--yy-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.yy-service-case p {
  margin-top: 11px;
  color: #625b5c;
  font-size: 11px;
  line-height: 1.9;
}

.yy-service-faq {
  background: linear-gradient(135deg, #fffaf7 0%, #fff 75%);
}

.yy-service-faq__grid {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 74px;
  align-items: start;
}

.yy-service-faq__list {
  border-top: 1px solid var(--yy-line);
}

.yy-service-faq__list details {
  border-bottom: 1px solid var(--yy-line);
}

.yy-service-faq__list summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 4px;
  color: #494344;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.yy-service-faq__list summary::-webkit-details-marker {
  display: none;
}

.yy-service-faq__list summary span {
  color: var(--yy-coral);
  font-size: 19px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.yy-service-faq__list details[open] summary span {
  transform: rotate(45deg);
}

.yy-service-faq__list details > p {
  padding: 0 38px 20px 4px;
  color: #625b5c;
  font-size: 12px;
  line-height: 2;
}

.yy-service-brand {
  background: linear-gradient(135deg, #fff8f3, #fff 68%);
}

.yy-service-brand__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: start;
}

.yy-service-brand .yy-service-section-heading > p:last-child {
  margin-top: 14px;
  color: #5a5455;
  font-size: 12px;
}

.yy-service-brand__list {
  border-top: 1px solid var(--yy-line);
}

.yy-service-brand__list > div {
  display: grid;
  grid-template-columns: 125px 1fr;
  border-bottom: 1px solid var(--yy-line);
}

.yy-service-brand__list dt,
.yy-service-brand__list dd {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 14px 18px;
  font-size: 12px;
  line-height: 1.8;
}

.yy-service-brand__list dt {
  color: var(--yy-red);
  font-weight: 700;
}

.yy-service-brand__list dd {
  border-left: 1px solid var(--yy-line);
  color: #554f50;
}

/* Representative message page */
.yy-subpage-hero--message .yy-subpage-hero__visual img {
  object-position: 61% center;
}

.yy-message-letter__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 76px;
  align-items: start;
}

.yy-message-letter__visual {
  position: sticky;
  top: 110px;
}

.yy-message-letter__visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--yy-shadow);
}

.yy-message-letter__visual p {
  margin-top: 12px;
  color: #918889;
  font-family: var(--yy-display);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.yy-message-letter__body h2 {
  margin: 13px 0 38px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.6;
}

.yy-message-letter__body > p:not(.yy-eyebrow):not(.yy-message-letter__signature) {
  color: #4e4849;
  font-size: 14px;
  line-height: 2.25;
}

.yy-message-letter__body > p + p {
  margin-top: 19px;
}

.yy-message-letter__signature {
  margin-top: 36px !important;
  color: #4b4546;
  font-family: var(--yy-serif);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: right;
}

.yy-message-letter__signature strong {
  margin-left: 15px;
  color: var(--yy-ink);
  font-size: 25px;
  font-weight: 600;
}

.yy-message-values {
  background: var(--yy-cream);
}

.yy-message-values__heading {
  margin-bottom: 36px;
}

.yy-message-values__heading h2 {
  margin-top: 7px;
  font-size: clamp(29px, 3vw, 40px);
}

.yy-message-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.yy-message-values__grid article {
  min-height: 220px;
  padding: 32px 28px;
  border: 1px solid var(--yy-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
}

.yy-message-values__grid span {
  color: var(--yy-coral);
  font-family: var(--yy-display);
  font-size: 28px;
  font-weight: 600;
}

.yy-message-values__grid h3 {
  margin-top: 21px;
  color: var(--yy-red);
  font-family: var(--yy-serif);
  font-size: 20px;
  font-weight: 600;
}

.yy-message-values__grid p {
  margin-top: 13px;
  color: #5b5556;
  font-size: 12px;
  line-height: 2;
}

/* Contact page */
.yy-subpage-hero--contact {
  background: linear-gradient(135deg, #fff 0%, #fff8f4 46%, #fff 46%);
}

.yy-contact-hero__visual {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 210, 96, 0.38), transparent 23%),
    linear-gradient(135deg, var(--yy-red-dark), var(--yy-coral) 66%, var(--yy-orange));
  clip-path: polygon(90px 0, 100% 0, 100% 100%, 0 100%);
}

.yy-contact-hero__visual::before,
.yy-contact-hero__visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.yy-contact-hero__visual::before {
  width: 470px;
  height: 470px;
}

.yy-contact-hero__visual::after {
  width: 650px;
  height: 650px;
}

.yy-contact-hero__card {
  position: relative;
  z-index: 2;
  width: min(390px, calc(100% - 100px));
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(103, 16, 19, 0.22);
  color: #fff;
  backdrop-filter: blur(8px);
}

.yy-contact-hero__card span {
  color: #ffd778;
  font-family: var(--yy-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.yy-contact-hero__card strong {
  display: block;
  margin-top: 17px;
  font-family: var(--yy-serif);
  font-size: 29px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.65;
}

.yy-contact-hero__card i {
  display: grid;
  width: 44px;
  height: 44px;
  margin-top: 24px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--yy-red);
  font-style: normal;
}

.yy-contact-main {
  background: linear-gradient(180deg, #fff 0%, #fffaf7 100%);
}

.yy-contact-main__grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 74px;
  align-items: start;
}

.yy-contact-guide {
  position: sticky;
  top: 110px;
}

.yy-contact-guide h2,
.yy-contact-form h2 {
  margin-top: 7px;
  font-size: clamp(28px, 3vw, 39px);
  line-height: 1.5;
}

.yy-contact-guide > p:not(.yy-eyebrow) {
  margin-top: 22px;
  color: #5a5455;
  font-size: 13px;
  line-height: 2;
}

.yy-contact-guide__item {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--yy-line);
}

.yy-contact-guide__item > span {
  color: var(--yy-coral);
  font-family: var(--yy-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.yy-contact-guide__item > a {
  display: block;
  margin-top: 7px;
  color: var(--yy-red);
  font-family: var(--yy-display);
  font-size: 25px;
  font-weight: 600;
}

.yy-contact-guide__item > p {
  margin-top: 7px;
  color: #554f50;
  font-size: 12px;
  line-height: 1.9;
}

.yy-contact-form {
  padding: 44px 48px;
  border: 1px solid var(--yy-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(83, 31, 23, 0.07);
}

.yy-contact-form > header {
  margin-bottom: 32px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--yy-line);
}

.yy-contact-form > header > p:last-child {
  margin-top: 10px;
  color: #6d6667;
  font-size: 11px;
}

.yy-contact-form > header > p:last-child span {
  margin-right: 7px;
  padding: 2px 7px;
  border-radius: 3px;
  background: var(--yy-red);
  color: #fff;
  font-size: 9px;
}

.yy-contact-form__content p,
.yy-contact-form__content label {
  color: #4f494a;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.9;
}

.yy-contact-form__content p + p,
.yy-contact-form__content .wp-block-group + .wp-block-group {
  margin-top: 22px;
}

.yy-contact-form__content input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.yy-contact-form__content textarea,
.yy-contact-form__content select {
  width: 100%;
  margin-top: 7px;
  padding: 13px 15px;
  border: 1px solid #dfd3ce;
  border-radius: 7px;
  outline: none;
  background: #fffdfc;
  color: #383334;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.yy-contact-form__content input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]) {
  min-height: 52px;
}

.yy-contact-form__content textarea {
  min-height: 180px;
  resize: vertical;
}

.yy-contact-form__content input:focus,
.yy-contact-form__content textarea:focus,
.yy-contact-form__content select:focus {
  border-color: var(--yy-coral);
  box-shadow: 0 0 0 3px rgba(237, 62, 47, 0.1);
}

.yy-contact-form__content input[type="submit"],
.yy-contact-form__content button[type="submit"] {
  min-width: 210px;
  min-height: 50px;
  margin-top: 24px;
  padding: 13px 30px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yy-red), var(--yy-coral));
  box-shadow: 0 9px 26px rgba(198, 15, 23, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.yy-contact-form__content h2,
.yy-contact-form__content h3 {
  margin: 28px 0 12px;
  color: var(--yy-red);
  font-family: var(--yy-serif);
  font-size: 19px;
}

.yy-contact-form__privacy {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--yy-line);
  color: #837b7c;
  font-size: 10px;
  line-height: 1.8;
}

/* Social media */
.yy-social {
  position: relative;
  overflow: hidden;
  padding: 84px 0 92px;
  background:
    radial-gradient(circle at 3% 92%, rgba(244, 123, 32, 0.09), transparent 26%),
    linear-gradient(135deg, #fff 0%, #fffaf7 52%, #fff 100%);
}

.yy-social::before,
.yy-social::after {
  position: absolute;
  border: 1px solid rgba(237, 62, 47, 0.22);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.yy-social::before {
  top: -370px;
  right: -90px;
  width: 920px;
  height: 620px;
  transform: rotate(-12deg);
}

.yy-social::after {
  bottom: -330px;
  left: -170px;
  width: 720px;
  height: 470px;
  border-color: rgba(244, 123, 32, 0.18);
  transform: rotate(16deg);
}

.yy-social > .yy-container {
  position: relative;
  z-index: 2;
}

.yy-social__heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.yy-social__heading h2 {
  margin-top: 13px;
  color: var(--yy-ink);
  font-family: var(--yy-serif);
  font-size: clamp(29px, 3.2vw, 45px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.yy-social__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.yy-social-card {
  --yy-social-color: var(--yy-red);
  --yy-social-glow: rgba(198, 15, 23, 0.14);
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 318px;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  padding: 52px 22px 24px;
  border: 1px solid rgba(234, 222, 217, 0.92);
  border-radius: 4px 4px 12px 12px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 16px 40px rgba(83, 31, 23, 0.06);
  text-align: center;
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.yy-social-card::before {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--yy-social-color);
  content: "";
}

.yy-social-card__accent {
  position: absolute;
  z-index: 0;
  top: 4px;
  right: 0;
  left: 0;
  height: 112px;
  background:
    radial-gradient(circle at 23% 15%, rgba(244, 123, 32, 0.11), transparent 31%),
    linear-gradient(153deg, #fff7f2 0 43%, rgba(255, 255, 255, 0) 43.5%);
  pointer-events: none;
}

.yy-social-card__accent::after {
  position: absolute;
  top: 32px;
  right: -15%;
  left: -15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 62, 47, 0.55), transparent);
  content: "";
  transform: rotate(-8deg);
}

.yy-social-card__icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--yy-social-color);
  box-shadow: 0 10px 24px var(--yy-social-glow);
  color: #fff;
}

.yy-social-card__icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.yy-social-card h3 {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  color: var(--yy-red);
  font-family: var(--yy-display);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.yy-social-card p {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  color: #554f50;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
}

.yy-social-card__link {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 190px);
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yy-red), var(--yy-coral));
  box-shadow: 0 8px 22px rgba(198, 15, 23, 0.14);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  transition: background 240ms ease, box-shadow 240ms ease;
}

.yy-social-card.yy-reveal.is-visible:hover,
.yy-social-card.yy-reveal.is-visible:focus-visible {
  border-color: color-mix(in srgb, var(--yy-social-color) 40%, #fff);
  box-shadow: 0 24px 54px var(--yy-social-glow);
  outline: none;
  text-decoration: none !important;
  transform: translateY(-8px);
}

.yy-social-card.yy-reveal.is-visible:hover .yy-social-card__link,
.yy-social-card.yy-reveal.is-visible:focus-visible .yy-social-card__link {
  background: var(--yy-social-color);
  box-shadow: 0 10px 26px var(--yy-social-glow);
}

.yy-social-card--x {
  --yy-social-color: #141414;
  --yy-social-glow: rgba(20, 20, 20, 0.16);
}

.yy-social-card--line {
  --yy-social-color: #06c755;
  --yy-social-glow: rgba(6, 199, 85, 0.18);
}

.yy-social-card--facebook {
  --yy-social-color: #1877f2;
  --yy-social-glow: rgba(24, 119, 242, 0.18);
}

.yy-social-card--tiktok {
  --yy-social-color: #161616;
  --yy-social-glow: rgba(37, 244, 238, 0.18);
}

.yy-social-card--tiktok::before {
  background: linear-gradient(90deg, #25f4ee, #161616 48%, #fe2c55);
}

.yy-social-card.yy-reveal:nth-child(2):not(.is-visible) {
  transition-delay: 70ms;
}

.yy-social-card.yy-reveal:nth-child(3):not(.is-visible) {
  transition-delay: 140ms;
}

.yy-social-card.yy-reveal:nth-child(4):not(.is-visible) {
  transition-delay: 210ms;
}

/* Contact */
.yy-contact {
  position: relative;
  overflow: hidden;
  padding: 35px 0;
  background:
    radial-gradient(circle at 94% 52%, rgba(255, 189, 39, 0.25), transparent 18%),
    linear-gradient(110deg, var(--yy-red-dark), var(--yy-coral) 76%, var(--yy-orange));
  color: #fff;
}

.yy-contact::after {
  position: absolute;
  top: -80px;
  right: 7%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
}

.yy-contact__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.yy-contact .yy-eyebrow {
  color: #ffd66b;
}

.yy-contact h2 {
  margin-top: 5px;
  color: #fff;
  font-family: var(--yy-serif);
  font-size: clamp(21px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.yy-contact p:not(.yy-eyebrow) {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
}

.yy-button--white {
  min-width: 190px;
  border-color: #fff;
  background: #fff;
  box-shadow: 0 10px 25px rgba(91, 11, 12, 0.18);
  color: var(--yy-red) !important;
}

.yy-button--white:hover {
  background: #fff7f3;
  color: var(--yy-red) !important;
}

/* Footer */
.yy-footer {
  padding: 22px 0;
  background: #fff;
}

.yy-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.yy-brand--footer > img,
.yy-brand--footer .yy-footer__logo {
  width: 138px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.yy-footer__nav {
  display: flex;
  gap: 26px;
}

.yy-footer__nav a {
  color: #595354;
  font-size: 10px;
  font-weight: 600;
}

.yy-footer__copy {
  color: #7a7475;
  font-size: 9px;
  text-align: right;
}

/* Motion */
.yy-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.yy-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* CARDEL owned-service landing page */
.yy-cardel-page {
  --cardel-red: #ed1c24;
  --cardel-yellow: #ffd632;
  --cardel-aqua: #39cfc4;
  --cardel-navy: #172239;
  overflow: hidden;
  background: #fff;
}

.yy-cardel-hero {
  position: relative;
  display: grid;
  height: calc(100vh - 78px);
  height: calc(100dvh - 78px);
  min-height: 650px;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  padding: 10px 0 32px;
  background:
    radial-gradient(circle at 13% 18%, rgba(255, 214, 50, 0.27), transparent 23%),
    radial-gradient(circle at 88% 20%, rgba(57, 207, 196, 0.24), transparent 27%),
    linear-gradient(135deg, #fffdf3 0%, #fff6ef 49%, #effffd 100%);
}

.admin-bar .yy-cardel-hero {
  height: calc(100vh - 110px);
  height: calc(100dvh - 110px);
}

.yy-cardel-hero::before {
  position: absolute;
  top: 80px;
  right: -110px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(57, 207, 196, 0.25);
  border-radius: 50%;
  content: "";
}

.yy-cardel-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(520px, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.yy-cardel-breadcrumb {
  margin-bottom: 18px;
  color: #7f7472;
}

.yy-cardel-breadcrumb a,
.yy-cardel-breadcrumb span {
  color: inherit;
}

.yy-cardel-kicker,
.yy-cardel-heading > p {
  color: var(--cardel-red);
  font-family: var(--yy-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.yy-cardel-hero__logo {
  width: 200px;
  height: auto;
  margin-top: 10px;
}

.yy-cardel-hero h1 {
  margin-top: 22px;
  color: var(--cardel-navy);
  font-family: var(--yy-serif);
  font-size: clamp(46px, 4vw, 64px);
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.25;
  white-space: nowrap;
}

.yy-cardel-hero__copy > p:not(.yy-cardel-kicker) {
  margin-top: 16px;
  color: #4d5260;
  font-size: 14px;
  line-height: 2;
}

.yy-cardel-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  align-items: center;
  margin-top: 20px;
}

.yy-cardel-button {
  display: inline-flex;
  min-width: 210px;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 13px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f02a2f, #ff6c25);
  box-shadow: 0 12px 30px rgba(237, 28, 36, 0.22);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.yy-cardel-button:hover {
  box-shadow: 0 16px 38px rgba(237, 28, 36, 0.3);
  text-decoration: none !important;
  transform: translateY(-2px);
}

.yy-cardel-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  color: var(--cardel-navy) !important;
  font-size: 11px;
  font-weight: 700;
}

.yy-cardel-hero__visual {
  position: relative;
  min-height: 500px;
}

.yy-cardel-hero__phone,
.yy-cardel-hero__cards {
  position: absolute;
  overflow: hidden;
  border: 8px solid #fff;
  background: #fff;
  box-shadow: 0 28px 70px rgba(38, 57, 72, 0.18);
}

.yy-cardel-hero__phone {
  top: 24px;
  right: 5%;
  width: 66%;
  height: 475px;
  border-radius: 38px;
  transform: rotate(4deg);
}

.yy-cardel-hero__cards {
  bottom: 25px;
  left: 0;
  width: 48%;
  height: 285px;
  border-radius: 30px;
  transform: rotate(-7deg);
}

.yy-cardel-hero__phone img,
.yy-cardel-hero__cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yy-cardel-hero__phone img {
  object-position: 46% center;
}

.yy-cardel-hero__cards img {
  object-position: 55% center;
}

.yy-cardel-shape {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.yy-cardel-shape--one {
  top: 0;
  left: 11%;
  width: 105px;
  height: 105px;
  background: rgba(255, 214, 50, 0.62);
}

.yy-cardel-shape--two {
  right: 0;
  bottom: 5px;
  width: 155px;
  height: 155px;
  background: rgba(57, 207, 196, 0.25);
}

.yy-cardel-spark {
  position: absolute;
  z-index: 4;
  color: #f7a600;
  font-size: 43px;
}

.yy-cardel-spark--one {
  top: 12%;
  left: 5%;
}

.yy-cardel-spark--two {
  right: 1%;
  bottom: 13%;
  color: var(--cardel-aqua);
  font-size: 55px;
}

.yy-cardel-hero__facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
  transform: none;
  overflow: hidden;
  border: 1px solid rgba(23, 34, 57, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
}

.yy-cardel-about {
  scroll-margin-top: 96px;
}

.yy-cardel-hero__facts span {
  padding: 17px 20px;
  color: #697083;
  font-family: var(--yy-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
}

.yy-cardel-hero__facts span + span {
  border-left: 1px solid rgba(23, 34, 57, 0.1);
}

.yy-cardel-heading h2 {
  margin-top: 11px;
  color: var(--cardel-navy);
  font-family: var(--yy-serif);
  font-size: clamp(31px, 3.3vw, 47px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.55;
}

.yy-cardel-heading--center {
  text-align: center;
}

.yy-cardel-about__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.yy-cardel-about__copy p {
  color: #505562;
  font-size: 14px;
  line-height: 2.15;
}

.yy-cardel-about__copy p + p {
  margin-top: 13px;
}

.yy-cardel-how {
  background:
    radial-gradient(circle at 96% 12%, rgba(57, 207, 196, 0.14), transparent 25%),
    #f8fbff;
}

.yy-cardel-how__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 43px;
  list-style: none;
}

.yy-cardel-how__grid li {
  position: relative;
  min-height: 275px;
  padding: 30px 27px;
  border: 1px solid rgba(23, 34, 57, 0.09);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(55, 74, 99, 0.055);
  text-align: center;
}

.yy-cardel-how__grid li > span {
  position: absolute;
  top: 20px;
  left: 22px;
  color: var(--cardel-red);
  font-family: var(--yy-display);
  font-size: 12px;
  font-weight: 700;
}

.yy-cardel-how__grid i {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin: 19px auto 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff4b9, #fff8e2 55%, #e4fffc);
  color: var(--cardel-red);
  font-family: var(--yy-display);
  font-size: 31px;
  font-style: normal;
}

.yy-cardel-how__grid h3 {
  color: var(--cardel-navy);
  font-size: 17px;
  font-weight: 700;
}

.yy-cardel-how__grid p {
  margin-top: 11px;
  color: #687080;
  font-size: 12px;
  line-height: 1.9;
}

.yy-cardel-features__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
  align-items: center;
}

.yy-cardel-features__visual {
  position: relative;
  overflow: hidden;
  border-radius: 34px 90px 34px 34px;
  box-shadow: 0 24px 64px rgba(52, 57, 74, 0.13);
}

.yy-cardel-features__visual::after {
  position: absolute;
  inset: 0;
  border: 9px solid rgba(255, 255, 255, 0.68);
  border-radius: inherit;
  content: "";
}

.yy-cardel-features__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.yy-cardel-features__copy ul {
  margin-top: 27px;
  list-style: none;
}

.yy-cardel-features__copy li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(23, 34, 57, 0.1);
}

.yy-cardel-features__copy li:last-child {
  border-bottom: 1px solid rgba(23, 34, 57, 0.1);
}

.yy-cardel-features__copy li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fff3be;
  color: var(--cardel-red);
  font-family: var(--yy-display);
  font-size: 11px;
  font-weight: 700;
}

.yy-cardel-features__copy h3 {
  color: var(--cardel-navy);
  font-size: 15px;
  font-weight: 700;
}

.yy-cardel-features__copy li p {
  margin-top: 6px;
  color: #687080;
  font-size: 11px;
  line-height: 1.9;
}

.yy-cardel-updates {
  background: linear-gradient(180deg, #fff9ed, #fff 100%);
}

.yy-cardel-updates__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.yy-cardel-update {
  overflow: hidden;
  border: 1px solid rgba(23, 34, 57, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(70, 54, 44, 0.07);
  color: inherit !important;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.yy-cardel-update:hover {
  box-shadow: 0 22px 58px rgba(70, 54, 44, 0.12);
  text-decoration: none !important;
  transform: translateY(-4px);
}

.yy-cardel-update figure {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.yy-cardel-update figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.yy-cardel-update:hover figure img {
  transform: scale(1.025);
}

.yy-cardel-update > div {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 21px 24px 23px;
}

.yy-cardel-update span {
  color: var(--cardel-red);
  font-family: var(--yy-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.yy-cardel-update strong {
  color: var(--cardel-navy);
  font-size: 14px;
}

.yy-cardel-update i {
  position: absolute;
  top: 25px;
  right: 24px;
  color: var(--cardel-aqua);
  font-style: normal;
  font-weight: 700;
}

.yy-cardel-profile {
  background: #f7fbfb;
}

.yy-cardel-profile__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.yy-cardel-profile .yy-cardel-heading > span {
  display: block;
  margin-top: 17px;
  color: #67707e;
  font-size: 12px;
  line-height: 1.8;
}

.yy-cardel-profile__list {
  overflow: hidden;
  border-top: 1px solid rgba(23, 34, 57, 0.12);
}

.yy-cardel-profile__list > div {
  display: grid;
  min-height: 60px;
  grid-template-columns: 140px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(23, 34, 57, 0.12);
}

.yy-cardel-profile__list dt,
.yy-cardel-profile__list dd {
  padding: 13px 18px;
  font-size: 12px;
  line-height: 1.75;
}

.yy-cardel-profile__list dt {
  color: var(--cardel-navy);
  font-weight: 700;
}

.yy-cardel-profile__list dd {
  border-left: 1px solid rgba(23, 34, 57, 0.12);
  color: #5c6470;
}

.yy-cardel-cta {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 214, 50, 0.36), transparent 26%),
    linear-gradient(135deg, #e51d2a, #ff6525 58%, #f5a319);
}

.yy-cardel-cta::after {
  position: absolute;
  right: -70px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.yy-cardel-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.yy-cardel-cta img {
  width: 145px;
  height: auto;
  filter: drop-shadow(0 6px 8px rgba(76, 12, 12, 0.18));
}

.yy-cardel-cta h2 {
  margin-top: 12px;
  color: #fff;
  font-family: var(--yy-serif);
  font-size: clamp(31px, 3.2vw, 45px);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.yy-cardel-cta p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.yy-cardel-button--light {
  min-width: 220px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(111, 21, 15, 0.2);
  color: var(--cardel-red) !important;
}

.yy-cardel-corporate-link {
  padding: 20px 0;
  background: #fff;
}

.yy-cardel-corporate-link > .yy-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.yy-cardel-corporate-link p {
  color: #747983;
  font-size: 10px;
}

.yy-cardel-corporate-link a {
  color: var(--cardel-navy) !important;
  font-size: 10px;
  font-weight: 700;
}

@media (max-width: 960px) {
  .yy-cardel-hero {
    display: block;
    height: auto;
    min-height: 0;
    padding: 25px 0 24px;
  }

  .admin-bar .yy-cardel-hero {
    height: auto;
  }

  .yy-cardel-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 35px;
  }

  .yy-cardel-hero__copy {
    max-width: 690px;
  }

  .yy-cardel-hero__visual {
    min-height: 520px;
  }

  .yy-cardel-hero__phone {
    right: 6%;
    width: 62%;
  }

  .yy-cardel-hero__cards {
    left: 5%;
    width: 44%;
  }

  .yy-cardel-about__grid,
  .yy-cardel-features__grid,
  .yy-cardel-profile__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .yy-cardel-how__grid {
    grid-template-columns: 1fr;
  }

  .yy-cardel-how__grid li {
    min-height: 0;
  }

  .yy-cardel-features__visual {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  .yy-cardel-hero {
    padding-top: 25px;
  }

  .yy-cardel-hero__grid {
    width: calc(100% - 34px);
  }

  .yy-cardel-breadcrumb {
    margin-bottom: 22px;
  }

  .yy-cardel-hero__logo {
    width: 180px;
  }

  .yy-cardel-hero h1 {
    font-size: 43px;
    white-space: normal;
  }

  .yy-cardel-hero__copy > p:not(.yy-cardel-kicker) {
    font-size: 12px;
  }

  .yy-cardel-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .yy-cardel-button,
  .yy-cardel-link {
    width: 100%;
    justify-content: center;
  }

  .yy-cardel-hero__visual {
    min-height: 385px;
  }

  .yy-cardel-hero__phone {
    top: 12px;
    right: -3%;
    width: 72%;
    height: 335px;
    border-width: 5px;
    border-radius: 25px;
  }

  .yy-cardel-hero__cards {
    bottom: 18px;
    left: -2%;
    width: 53%;
    height: 205px;
    border-width: 5px;
    border-radius: 19px;
  }

  .yy-cardel-shape--one {
    width: 70px;
    height: 70px;
  }

  .yy-cardel-shape--two {
    width: 105px;
    height: 105px;
  }

  .yy-cardel-spark {
    font-size: 31px;
  }

  .yy-cardel-hero__facts {
    width: calc(100% - 34px);
    grid-template-columns: 1fr;
  }

  .yy-cardel-hero__facts span {
    padding: 12px;
  }

  .yy-cardel-hero__facts span + span {
    border-top: 1px solid rgba(23, 34, 57, 0.1);
    border-left: 0;
  }

  .yy-cardel-heading h2 {
    font-size: 28px;
  }

  .yy-cardel-about__grid,
  .yy-cardel-features__grid,
  .yy-cardel-profile__grid {
    gap: 32px;
  }

  .yy-cardel-about__copy p {
    font-size: 13px;
  }

  .yy-cardel-how__grid {
    gap: 14px;
    margin-top: 30px;
  }

  .yy-cardel-how__grid li {
    padding: 27px 22px;
  }

  .yy-cardel-features__visual {
    border-radius: 22px 55px 22px 22px;
  }

  .yy-cardel-features__copy li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .yy-cardel-updates__grid {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 30px;
  }

  .yy-cardel-profile__list > div {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .yy-cardel-profile__list dt {
    padding-bottom: 4px;
    color: var(--cardel-red);
  }

  .yy-cardel-profile__list dd {
    padding-top: 4px;
    border-left: 0;
  }

  .yy-cardel-cta {
    padding: 58px 0;
  }

  .yy-cardel-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .yy-cardel-cta h2 {
    font-size: 30px;
  }

  .yy-cardel-button--light {
    width: 100%;
  }

  .yy-cardel-corporate-link > .yy-container {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .yy-cardel-promo__brand-row {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

@media (max-width: 1180px) {
  .yy-first-view {
    --yy-hero-slant: clamp(58px, 6vw, 78px);
  }

  .yy-company-hero {
    grid-template-columns: minmax(390px, 44%) 1fr;
  }

  .yy-company-hero__copy {
    margin-left: 40px;
  }

  .yy-subpage-hero {
    grid-template-columns: minmax(400px, 46%) 1fr;
  }

  .yy-subpage-hero__copy {
    margin-left: 40px;
  }

  .yy-container {
    width: min(100% - 48px, 1080px);
  }

  .yy-nav,
  .yy-nav__list {
    gap: 20px;
  }

  .yy-hero {
    grid-template-columns: minmax(390px, 43%) 1fr;
  }

  .yy-hero__copy {
    margin-left: 40px;
  }

  .yy-business-ribbon {
    width: 100%;
    padding-left: calc(43% - var(--yy-hero-slant));
  }

  .yy-business-card h3 {
    font-size: 15px;
  }

  .yy-cardel-promo__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 42px;
  }

  .yy-fact {
    padding-inline: 14px;
  }
}

@media (max-width: 960px) {
  .admin-bar .yy-header.is-stuck {
    top: 46px;
  }

  .yy-header {
    height: 70px;
  }

  .yy-company-hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .yy-company-hero__copy {
    width: min(100% - 48px, 1080px);
    margin-inline: auto;
    padding: 72px 0 64px;
  }

  .yy-company-hero__visual {
    width: 100%;
    height: 360px;
    margin-left: 0;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  }

  .yy-company-hero__visual::after {
    left: 5%;
  }

  .yy-subpage-hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .yy-subpage-hero__copy {
    width: min(100% - 48px, 1080px);
    margin-inline: auto;
    padding: 68px 0 58px;
  }

  .yy-subpage-hero__visual,
  .yy-contact-hero__visual {
    width: 100%;
    height: 360px;
    min-height: 360px;
    margin-left: 0;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  }

  .yy-subpage-hero__visual::after {
    left: 5%;
  }

  .yy-service-overview > .yy-container,
	.yy-service-owned__grid,
  .yy-service-brand__grid,
  .yy-message-letter__grid,
  .yy-contact-main__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .yy-service-owned__brand {
    min-height: 270px;
  }

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

  .yy-service-issues__grid,
  .yy-service-cases__grid {
    grid-template-columns: 1fr;
  }

  .yy-service-feature {
    min-height: 0;
  }

  .yy-service-issue,
  .yy-service-case > div {
    min-height: 0;
  }

  .yy-service-strengths__grid,
  .yy-service-faq__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .yy-service-strengths__visual img {
    aspect-ratio: 16 / 9;
  }

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

  .yy-service-flow__list li:nth-child(2) {
    border-right: 0;
  }

  .yy-service-flow__list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--yy-line);
  }

  .yy-service-flow__list li:nth-child(2)::after {
    display: none;
  }

  .yy-message-letter__visual,
  .yy-contact-guide {
    position: static;
  }

  .yy-message-letter__visual img {
    aspect-ratio: 16 / 9;
  }

  .yy-company-intro > .yy-container {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .yy-company-profile__list > div {
    grid-template-columns: 180px 1fr;
  }

  .yy-company-business__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .yy-company-business-card__content {
    min-height: 174px;
  }

  .yy-company-access__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .yy-menu-toggle {
    display: block;
  }

  .yy-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 18px 24px 24px;
    border-top: 1px solid var(--yy-line);
    background: #fff;
    box-shadow: 0 20px 30px rgba(45, 28, 24, 0.1);
  }

  .yy-nav.is-open {
    display: block;
  }

  .yy-nav__list {
    display: grid;
    gap: 0;
  }

  .yy-nav__list a {
    display: block;
    padding: 13px 2px;
    border-bottom: 1px solid var(--yy-line);
  }

  .yy-nav__list a::after {
    display: none;
  }

  .yy-button--header {
    width: 100%;
    margin-top: 17px;
  }

  .yy-menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .yy-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .yy-menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .yy-hero {
    display: flex;
    height: auto;
    min-height: auto;
    flex-direction: column;
  }

  .yy-first-view,
  .admin-bar .yy-first-view {
    display: block;
    min-height: 0;
  }

  .yy-hero__copy {
    width: min(100% - 48px, 680px);
    margin-inline: auto;
    padding: 70px 0 52px;
  }

  .yy-hero h1 {
    font-size: clamp(70px, 13vw, 98px);
  }

  .yy-hero__visual {
    display: flex;
    height: 450px;
  }

  .yy-business-ribbon {
    width: min(100% - 48px, 1080px);
    grid-template-columns: repeat(2, 1fr);
    margin-inline: auto;
    padding-left: 0;
  }

  .yy-business-ribbon a:nth-child(2) {
    border-right: 0;
  }

  .yy-business-ribbon a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--yy-line);
  }

  .yy-about__grid {
    padding-right: 0;
  }

  .yy-about__visual {
    position: relative;
    inset: auto;
    width: min(100% - 48px, 1080px);
    aspect-ratio: 16 / 9;
    margin: 54px auto 0;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  }

  .yy-about__visual::before {
    left: 5%;
  }

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

  .yy-cardel-promo {
    padding: 72px 0;
  }

  .yy-cardel-promo__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .yy-cardel-promo__copy {
    max-width: 680px;
  }

  .yy-cardel-promo__anniversary {
    width: 145px;
    height: 145px;
    flex-basis: 145px;
  }

  .yy-cardel-promo__visual {
    width: min(100%, 720px);
    min-height: 420px;
  }

  .yy-social {
    padding: 72px 0 78px;
  }

  .yy-social__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .yy-social-card {
    min-height: 285px;
  }

  .yy-business-card__content > p:not(.yy-business-card__en) {
    min-height: 0;
  }

  .yy-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .yy-facts__lead {
    grid-column: 1 / -1;
    min-height: auto;
    text-align: center;
  }

  .yy-fact:nth-child(2),
  .yy-fact:nth-child(4) {
    border-left: 0;
  }

  .yy-fact:nth-child(-n + 3) {
    border-top: 1px solid var(--yy-line);
    border-bottom: 1px solid var(--yy-line);
  }

  .yy-corporate__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .yy-message,
  .yy-profile {
    padding: 0;
  }

  .yy-profile {
    border-left: 0;
  }

  .yy-news__inner {
    grid-template-columns: 110px 1fr;
  }

  .yy-news__list {
    grid-template-columns: 1fr;
  }

  .yy-news__list article {
    min-height: 0;
    border-bottom: 1px solid var(--yy-line);
  }

  .yy-news__inner > .yy-button {
    grid-column: 2;
    justify-self: end;
  }

  .yy-footer__inner {
    grid-template-columns: 1fr auto;
  }

  .yy-footer__nav {
    display: none;
  }
}

@media (max-width: 680px) {
  .yy-container,
  .yy-business-ribbon {
    width: calc(100% - 34px);
  }

  .yy-brand__fallback,
  .yy-brand__custom,
  .yy-brand__custom .custom-logo-link,
  .yy-brand__fallback img,
  .yy-brand__custom img {
    width: 155px;
    height: 50px;
    flex-basis: 155px;
  }

  .yy-brand__custom img.custom-logo {
    width: 155px !important;
    height: 50px !important;
    max-width: 155px !important;
    max-height: 50px !important;
  }

  .yy-brand__company {
    display: none;
  }

  .yy-company-hero__copy {
    width: calc(100% - 34px);
    padding: 54px 0 48px;
  }

  .yy-breadcrumb {
    margin-bottom: 28px;
  }

  .yy-company-hero h1 {
    font-size: 43px;
  }

  .yy-company-hero__copy > p:last-child {
    margin-top: 18px;
    font-size: 14px;
  }

  .yy-company-hero__visual {
    height: 250px;
  }

  .yy-subpage-hero__copy {
    width: calc(100% - 34px);
    padding: 52px 0 46px;
  }

  .yy-subpage-hero h1 {
    font-size: 36px;
    line-height: 1.45;
  }

  .yy-subpage-hero__copy > p:last-child {
    margin-top: 17px;
    font-size: 13px;
  }

  .yy-subpage-hero__visual,
  .yy-contact-hero__visual {
    height: 260px;
    min-height: 260px;
  }

  .yy-service-overview > .yy-container,
	.yy-service-owned__grid,
  .yy-service-brand__grid,
  .yy-message-letter__grid,
  .yy-contact-main__grid {
    gap: 34px;
  }

  .yy-service-owned__brand {
    min-height: 225px;
    border-radius: 18px;
  }

  .yy-service-owned__brand > p {
    right: 17px;
    bottom: 14px;
    font-size: 8px;
  }

  .yy-service-owned__copy h2 {
    font-size: 28px;
  }

  .yy-service-owned__copy > p:not(.yy-eyebrow) {
    font-size: 13px;
  }

  .yy-service-owned__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .yy-service-owned__actions .yy-button,
  .yy-service-owned__actions .yy-text-link {
    width: 100%;
    justify-content: center;
  }

  .yy-service-overview__heading h2,
  .yy-service-section-heading h2,
  .yy-message-letter__body h2,
  .yy-message-values__heading h2,
  .yy-contact-guide h2,
  .yy-contact-form h2 {
    font-size: 28px;
  }

  .yy-service-overview__copy > p,
  .yy-message-letter__body > p:not(.yy-eyebrow):not(.yy-message-letter__signature) {
    font-size: 13px;
    line-height: 2;
  }

  .yy-service-hero-note {
    width: 100%;
    justify-content: center;
    border-radius: 9px;
    text-align: center;
  }

  .yy-service-issue {
    padding: 27px 22px;
  }

  .yy-service-feature {
    padding: 28px 24px;
  }

  .yy-service-feature h3 {
    margin-top: 20px;
    font-size: 19px;
  }

  .yy-service-strengths__grid,
  .yy-service-faq__grid {
    gap: 30px;
  }

  .yy-service-strengths__visual img {
    aspect-ratio: 4 / 3;
  }

  .yy-service-strengths__content li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .yy-service-strengths__content li > span {
    width: 38px;
    height: 38px;
  }

  .yy-service-case figure {
    aspect-ratio: 16 / 9;
  }

  .yy-service-faq__list summary {
    min-height: 58px;
    font-size: 12px;
  }

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

  .yy-service-flow__list li,
  .yy-service-flow__list li:nth-child(n) {
    min-height: 100px;
    border-right: 0;
    border-bottom: 1px solid var(--yy-line);
  }

  .yy-service-flow__list li:last-child {
    border-bottom: 0;
  }

  .yy-service-flow__list li::after {
    display: none !important;
  }

  .yy-service-brand__list > div {
    grid-template-columns: 1fr;
  }

  .yy-service-brand__list dt,
  .yy-service-brand__list dd {
    min-height: 0;
    padding: 12px 15px;
  }

  .yy-service-brand__list dt {
    padding-bottom: 3px;
  }

  .yy-service-brand__list dd {
    padding-top: 3px;
    border-left: 0;
  }

  .yy-message-letter__visual img {
    aspect-ratio: 16 / 10;
  }

  .yy-message-letter__body h2 {
    margin-bottom: 27px;
  }

  .yy-message-letter__signature strong {
    display: block;
    margin: 7px 0 0;
    font-size: 22px;
  }

  .yy-message-values__grid {
    grid-template-columns: 1fr;
  }

  .yy-message-values__grid article {
    min-height: 0;
  }

  .yy-contact-hero__card {
    width: calc(100% - 70px);
    padding: 28px;
  }

  .yy-contact-hero__card strong {
    font-size: 23px;
  }

  .yy-contact-form {
    padding: 30px 20px;
  }

  .yy-contact-form__content input[type="submit"],
  .yy-contact-form__content button[type="submit"] {
    width: 100%;
  }

  .yy-company-intro > .yy-container {
    gap: 36px;
  }

  .yy-company-intro__heading h2,
  .yy-company-section-heading h2,
  .yy-company-access h2 {
    font-size: 28px;
  }

  .yy-company-intro__copy p {
    font-size: 13px;
  }

  .yy-company-profile__list > div {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .yy-company-profile__list dt,
  .yy-company-profile__list dd {
    padding: 14px 16px;
    font-size: 12px;
  }

  .yy-company-profile__list dt {
    padding-bottom: 5px;
    border-left-color: var(--yy-coral);
    color: var(--yy-red);
  }

  .yy-company-profile__list dd {
    padding-top: 5px;
    border-left: 0;
  }

  .yy-company-business__grid {
    grid-template-columns: 1fr;
  }

  .yy-company-business-card__content {
    min-height: 0;
  }

  .yy-company-business-card h3 {
    min-height: 0;
    font-size: 17px;
  }

  .yy-company-access__map,
  .yy-company-access__map iframe {
    min-height: 280px;
    height: 280px;
  }

  .yy-hero__copy {
    width: calc(100% - 38px);
    padding: 52px 0 40px;
  }

  .yy-hero__copy .yy-eyebrow {
    display: none;
  }

  .yy-hero h1 {
    font-size: clamp(58px, 19vw, 82px);
    line-height: 1.02;
  }

  .yy-hero__subtitle {
    margin-top: 22px !important;
    font-size: 20px;
  }

  .yy-hero__text {
    font-size: 12px;
  }

  .yy-hero__visual {
    display: grid;
    height: 300px;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
  }

  .yy-hero__visual .yy-hero__panel {
    flex: none;
    border-left-width: 2px;
    margin: 0;
    clip-path: none;
    transform: none;
  }

  .yy-hero__panel img {
    position: static;
    width: 100%;
    height: 100%;
    margin: 0;
    transform: none;
  }

  .yy-hero:hover .yy-hero__panel img {
    transform: scale(1.025);
  }

  .yy-business-ribbon {
    display: none;
  }

  .yy-section {
    padding: 68px 0;
  }

  .yy-about__grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 54px;
  }

  .yy-about__visual {
    width: calc(100% - 34px);
    margin-top: 0;
  }

  .yy-about__body .yy-text-link {
    display: flex;
    width: fit-content;
    margin-bottom: 0;
  }

  .yy-about h2 {
    font-size: 28px;
  }

  .yy-about__body p {
    font-size: 13px;
  }

  .yy-business {
    padding-top: 22px;
  }

  .yy-business-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .yy-business-card__image {
    aspect-ratio: 16 / 10;
  }

  .yy-business-card h3 {
    min-height: 0;
    font-size: 17px;
  }

  .yy-cardel-promo {
    padding: 58px 0 62px;
  }

  .yy-cardel-promo__logo {
    width: 178px;
  }

  .yy-cardel-promo__copy {
    max-width: none;
    text-align: center;
  }

  .yy-cardel-promo__copy .yy-eyebrow {
    text-align: center;
  }

  .yy-cardel-promo__brand-row {
    gap: 12px;
    justify-content: center;
  }

  .yy-cardel-promo__anniversary {
    width: 130px;
    height: 130px;
    flex-basis: 130px;
  }

  .yy-cardel-promo__copy h2 {
    font-size: 29px;
  }

  .yy-cardel-promo__copy > p:not(.yy-eyebrow) {
    margin-right: auto;
    margin-left: auto;
    font-size: 12px;
  }

  .yy-cardel-promo__button {
    width: 100%;
  }

  .yy-cardel-promo__visual {
    min-height: 315px;
  }

  .yy-cardel-promo__image {
    border-width: 5px;
  }

  .yy-cardel-promo__image--main {
    width: 73%;
    height: 275px;
    border-radius: 23px;
  }

  .yy-cardel-promo__image--sub {
    width: 53%;
    height: 175px;
    border-radius: 18px;
  }

  .yy-cardel-promo__orb--yellow {
    width: 65px;
    height: 65px;
  }

  .yy-cardel-promo__orb--aqua {
    width: 95px;
    height: 95px;
  }

  .yy-facts {
    padding: 0 0 18px;
  }

  .yy-facts__grid {
    grid-template-columns: 1fr;
  }

  .yy-fact,
  .yy-fact:nth-child(n) {
    min-height: 62px;
    grid-template-columns: 30px auto;
    justify-content: center;
    border-top: 1px solid var(--yy-line);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .yy-message__body {
    grid-template-columns: 1fr;
  }

  .yy-message__portrait {
    min-height: 300px;
  }

  .yy-profile dl > div {
    grid-template-columns: 75px 1fr;
  }

  .yy-corporate {
    padding-bottom: 36px;
  }

  .yy-profile .yy-text-link {
    display: flex;
    width: fit-content;
    margin-top: 28px;
  }

  .yy-news__inner {
    grid-template-columns: 1fr;
  }

  .yy-news__list article {
    padding: 12px 0;
    border-left: 0;
  }

  .yy-news__inner > .yy-button {
    grid-column: 1;
  }

  .yy-social {
    padding: 58px 0 64px;
  }

  .yy-social__heading {
    margin-bottom: 32px;
  }

  .yy-social__heading h2 {
    font-size: 27px;
    line-height: 1.6;
  }

  .yy-social__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .yy-social-card {
    min-height: 246px;
    padding: 40px 10px 14px;
    border-radius: 4px 4px 9px 9px;
  }

  .yy-social-card__accent {
    height: 86px;
  }

  .yy-social-card__icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .yy-social-card__icon svg {
    width: 23px;
    height: 23px;
  }

  .yy-social-card h3 {
    margin-top: 15px;
    font-size: 21px;
  }

  .yy-social-card p {
    margin-top: 9px;
    font-size: 9.5px;
  }

  .yy-social-card__link {
    width: 100%;
    min-height: 38px;
    padding: 9px 13px;
    font-size: 8.5px;
  }

  .yy-contact {
    padding: 48px 0;
  }

  .yy-contact__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .yy-contact h2 {
    line-height: 1.65;
  }

  .yy-button--white {
    width: 100%;
  }

  .yy-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .yy-footer__copy {
    text-align: center;
  }
}

/* Dedicated news archive and article */
.yy-news-page,
.yy-news-single {
  background: #fff;
}

.yy-news-page__hero,
.yy-news-single__hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--yy-line);
  background:
    radial-gradient(circle at 83% 18%, rgba(244, 123, 32, 0.12), transparent 21%),
    linear-gradient(135deg, #fffaf7 0%, #fff 58%, #fff7f2 100%);
}

.yy-news-page__hero::after,
.yy-news-single__hero::after {
  position: absolute;
  top: -110px;
  right: -80px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(198, 15, 23, 0.12);
  border-radius: 50%;
  content: "";
}

.yy-news-page__hero-inner,
.yy-news-single__hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 70px;
}

.yy-news-page__hero .yy-breadcrumb,
.yy-news-single__hero .yy-breadcrumb {
  margin-bottom: 34px;
  color: #8b7c79;
}

.yy-news-page__hero h1,
.yy-news-single__hero h1 {
  margin-top: 8px;
  color: var(--yy-ink);
  font-family: var(--yy-serif);
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.yy-news-page__hero-inner > p:last-child {
  margin-top: 17px;
  color: #665e5f;
  font-size: 13px;
  line-height: 1.9;
}

.yy-news-archive {
  padding-top: 78px;
  padding-bottom: 96px;
}

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

.yy-news-card > a {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 27px 26px 24px;
  border: 1px solid var(--yy-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 13px 35px rgba(75, 46, 38, 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.yy-news-card > a:hover {
  border-color: rgba(198, 15, 23, 0.28);
  box-shadow: 0 18px 45px rgba(75, 46, 38, 0.09);
  text-decoration: none !important;
  transform: translateY(-4px);
}

.yy-news-card__meta {
  display: flex;
  align-items: center;
  gap: 11px;
}

.yy-news-card__meta time {
  color: var(--yy-red);
  font-family: var(--yy-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.yy-news-card__meta span {
  padding: 3px 9px;
  border-radius: 999px;
  background: #fff2ed;
  color: var(--yy-red);
  font-size: 8px;
  font-weight: 700;
}

.yy-news-card h2 {
  margin-top: 23px;
  color: var(--yy-ink);
  font-family: var(--yy-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.65;
}

.yy-news-card p {
  margin-top: 14px;
  color: #6a6263;
  font-size: 11px;
  line-height: 1.9;
}

.yy-news-card strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 24px;
  color: var(--yy-red);
  font-family: var(--yy-display);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.yy-news-card strong i {
  font-family: var(--yy-sans);
  font-size: 15px;
  font-style: normal;
}

.yy-news-archive__empty {
  padding: 70px 20px;
  border: 1px solid var(--yy-line);
  border-radius: 14px;
  color: #6a6263;
  text-align: center;
}

.yy-pagination {
  margin-top: 50px;
}

.yy-pagination .page-numbers {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.yy-pagination a,
.yy-pagination span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--yy-line);
  border-radius: 50%;
  color: #5d5657;
  font-size: 11px;
}

.yy-pagination .current,
.yy-pagination a:hover {
  border-color: var(--yy-red);
  background: var(--yy-red);
  color: #fff;
  text-decoration: none;
}

.yy-news-single__hero-inner {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 22px;
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
  padding-bottom: 65px;
}

.yy-news-single__hero-inner > .yy-breadcrumb {
  grid-column: 1 / -1;
  grid-row: 1;
}

.yy-news-single__hero-inner > .yy-eyebrow {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  line-height: 1;
}

.yy-news-single__hero h1 {
  max-width: 880px;
  font-size: clamp(35px, 4.2vw, 58px);
  letter-spacing: 0.04em;
}

.yy-news-single__hero-inner > h1 {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 25px;
}

.yy-news-single__date {
  display: block;
  grid-column: 2;
  grid-row: 2;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: #494344;
  font-family: var(--yy-serif, "Noto Serif JP", serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}

.yy-news-single__date::before {
  display: none;
  content: none;
}

.yy-news-single__layout {
  max-width: 980px;
  padding-top: 72px;
  padding-bottom: 96px;
}

.yy-news-single__article {
  overflow: hidden;
  border: 1px solid var(--yy-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(75, 46, 38, 0.06);
}

.yy-news-single__featured {
  aspect-ratio: 16 / 8;
  overflow: hidden;
}

.yy-news-single__featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yy-news-single__content {
  min-height: 250px;
  padding: 58px clamp(28px, 7vw, 86px) 66px;
  color: #494344;
  font-size: 14px;
  line-height: 2.15;
}

.yy-news-single__content > * + * {
  margin-top: 24px;
}

.yy-news-single__content h2,
.yy-news-single__content h3 {
  color: var(--yy-ink);
  font-family: var(--yy-serif);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.yy-news-single__content h2 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--yy-line);
  font-size: 28px;
}

.yy-news-single__content h3 {
  font-size: 21px;
}

.yy-news-single__content a {
  color: var(--yy-red);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.yy-news-single__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 25px;
  align-items: center;
  margin-top: 32px;
}

.yy-news-single__nav > div:last-child {
  text-align: right;
}

.yy-news-single__nav > div a {
  display: inline-flex;
  max-width: 250px;
  flex-direction: column;
  color: #5e5758;
  font-size: 11px;
  line-height: 1.7;
}

.yy-news-single__nav > div span {
  margin-bottom: 3px;
  color: var(--yy-red);
  font-family: var(--yy-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.yy-news-single__back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 28px;
  padding: 10px 20px;
  border: 1px solid rgba(198, 15, 23, 0.35);
  border-radius: 999px;
  color: var(--yy-red) !important;
  font-size: 10px;
  font-weight: 700;
}

@media (max-width: 960px) {
  .yy-news-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .yy-news-page__hero-inner,
  .yy-news-single__hero-inner {
    padding-top: 43px;
    padding-bottom: 48px;
  }

  .yy-news-page__hero .yy-breadcrumb,
  .yy-news-single__hero .yy-breadcrumb {
    margin-bottom: 25px;
  }

  .yy-news-single__hero-inner {
    column-gap: 14px;
  }

  .yy-news-page__hero h1,
  .yy-news-single__hero h1 {
    font-size: 38px;
  }

  .yy-news-single__date {
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.06em;
  }

  .yy-news-single__hero-inner > h1 {
    margin-top: 20px;
  }

  .yy-news-archive {
    padding-top: 52px;
    padding-bottom: 70px;
  }

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

  .yy-news-card > a {
    min-height: 230px;
  }

  .yy-news-single__layout {
    padding-top: 42px;
    padding-bottom: 70px;
  }

  .yy-news-single__content {
    min-height: 210px;
    padding: 35px 22px 42px;
    font-size: 13px;
  }

  .yy-news-single__content h2 {
    font-size: 24px;
  }

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

  .yy-news-single__nav > div {
    display: none;
  }

  .yy-news-single__back {
    justify-self: center;
  }
}

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

  .yy-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .yy-hero__panel img,
  .yy-subpage-hero__visual img,
  .yy-business-card,
  .yy-business-card__image img,
  .yy-company-business-card,
  .yy-company-business-card img,
  .yy-social-card,
  .yy-social-card__link,
  .yy-service-faq__list summary span,
  .yy-button {
    transition: none;
  }

  .yy-js body.home .yy-first-view .yy-hero__visual,
  .yy-js body.home .yy-first-view .yy-hero__copy > .yy-eyebrow,
  .yy-js body.home .yy-first-view .yy-hero__copy > h1,
  .yy-js body.home .yy-first-view .yy-hero__copy > .yy-hero__subtitle,
  .yy-js body.home .yy-first-view .yy-hero__copy > .yy-hero__text,
  .yy-js body.home .yy-first-view .yy-hero__copy > .yy-button,
  .yy-js body.home .yy-first-view .yy-business-ribbon > a {
    clip-path: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
