:root {
  --ink: #050505;
  --ink-2: #0a0a0a;
  --ink-3: #111;
  --paper: #f2f0ea;
  --paper-2: #e9e6df;
  --white: #fff;
  --text: #f5f5f2;
  --muted: #aaa9a3;
  --dark: #151515;
  --line: rgba(255, 255, 255, 0.15);
  --line-dark: rgba(5, 5, 5, 0.17);
  --accent: #c4a36c;
  --header-h: 84px;
  --pad: clamp(22px, 4vw, 72px);
  --max: 1480px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease2: cubic-bezier(0.65, 0, 0.35, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.container {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}
.container.wide {
  --max: 1640px;
}
.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.display-xxl,
.display-xl,
.display-lg {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}
.display-xxl {
  font-size: clamp(58px, 9.5vw, 168px);
}
.display-xl {
  font-size: clamp(52px, 7.8vw, 130px);
}
.display-lg {
  font-size: clamp(44px, 6vw, 92px);
}
em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.lead {
  font-size: clamp(19px, 2vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.intro {
  max-width: 640px;
  font-size: clamp(18px, 1.65vw, 26px);
  line-height: 1.45;
  color: var(--muted);
}
.support {
  max-width: 760px;
  color: var(--muted);
  font-size: 16px;
}
.section-black {
  background: var(--ink);
  color: var(--text);
}
.section-light {
  background: var(--paper);
  color: var(--dark);
}
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  z-index: 1000;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
}
.cursor-orb {
  position: fixed;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  z-index: 999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  opacity: 0;
  transition:
    width 0.35s var(--ease),
    height 0.35s var(--ease),
    opacity 0.25s;
}
.cursor-orb.active {
  width: 58px;
  height: 58px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  z-index: 900;
  border-bottom: 1px solid transparent;
  transition:
    background 0.45s,
    backdrop-filter 0.45s,
    border-color 0.45s,
    color 0.45s;
}
.site-header.scrolled {
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(18px);
  border-color: rgba(255, 255, 255, 0.09);
}
.site-header.light-zone:not(.scrolled) {
  color: #111;
}
.brand {
  display: inline-flex;
  gap: 5px;
  align-items: baseline;
  font-size: 18px;
  letter-spacing: 0.02em;
  position: relative;
}
.brand span {
  font-weight: 300;
}
.brand strong {
  font-weight: 800;
}
.brand:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.brand:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.desktop-nav > a {
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  padding: 13px 0;
}
.desktop-nav > a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.desktop-nav > a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 16px !important;
  display: flex;
  gap: 12px;
  align-items: center;
}
.light-zone .nav-cta:not(.scrolled) {
  border-color: rgba(0, 0, 0, 0.35);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: none;
  border: 0;
  padding: 0;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  width: 24px;
  height: 1px;
  background: currentColor;
  left: 12px;
  top: 20px;
  transition:
    transform 0.4s var(--ease),
    top 0.4s var(--ease);
}
.menu-toggle span + span {
  top: 28px;
}
.menu-toggle[aria-expanded="true"] span {
  top: 24px;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span + span {
  transform: rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: #050505;
  color: #fff;
  padding: calc(var(--header-h) + 48px) var(--pad) 34px;
  overflow: auto;
}
.mobile-menu[hidden] {
  display: none;
}
.mobile-menu-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(196, 163, 108, 0.14),
      transparent 36%
    ),
    linear-gradient(
      135deg,
      transparent 0 48%,
      rgba(255, 255, 255, 0.035) 48% 49%,
      transparent 49%
    );
}
.mobile-menu nav,
.mobile-meta {
  position: relative;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
}
.menu-kicker {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #777;
  margin-bottom: 28px;
}
.mobile-menu nav a {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  font-size: clamp(28px, 7vw, 56px);
  letter-spacing: -0.04em;
}
.mobile-menu nav a i {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #777;
  font-style: normal;
}
.mobile-menu nav a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-meta {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 28px;
  font-size: 13px;
  color: #aaa;
}
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 700;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  color: #111;
  padding: 13px 14px 13px 17px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.25);
}
.floating-contact b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-weight: 400;
}
.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  transition:
    background 0.35s,
    color 0.35s,
    border-color 0.35s;
}
.btn-light {
  background: #f5f2ec;
  color: #111;
  border-color: #f5f2ec;
}
.btn-line {
  background: transparent;
  color: #fff;
}
.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}
.text-link {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0 0 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.text-link.dark {
  border-color: rgba(0, 0, 0, 0.25);
  color: #111;
}
.text-link span {
  transition: transform 0.35s var(--ease);
}
.text-link:hover span {
  transform: translate(5px, -5px);
}
.giant-link {
  margin-top: clamp(40px, 7vw, 100px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(22px, 3vw, 42px) 0;
  font-size: clamp(18px, 2.6vw, 42px);
  letter-spacing: -0.025em;
}
.giant-link i {
  font-style: normal;
  font-size: 1.4em;
  transition: transform 0.4s var(--ease);
}
.giant-link:hover i {
  transform: translate(8px, -8px);
}
.site-footer {
  background: #050505;
  color: #fff;
  padding: 72px var(--pad) 28px;
}
.footer-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: 0.17em;
  color: #8d8d88;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  padding: 72px 0;
}
.footer-claim p {
  max-width: 420px;
  color: #8f8f8b;
  font-size: 16px;
  margin-top: 28px;
}
.footer-grid h2 {
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #777;
  margin: 0 0 18px;
}
.footer-grid > div:not(.footer-claim) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-grid > div:not(.footer-claim) a {
  font-size: 14px;
  margin: 7px 0;
  color: #d7d7d3;
}
.footer-grid > div:not(.footer-claim) a:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #777;
}
.site-footer.footer-premium {
  padding-top: 44px;
  background:
    radial-gradient(
      circle at 48% 55%,
      rgba(255, 255, 255, 0.025),
      transparent 38%
    ),
    #050505;
}
.footer-premium .footer-topline {
  padding-bottom: 18px;
  color: #757572;
}
.footer-premium .footer-grid {
  grid-template-columns: 1.25fr 0.72fr 1.12fr 1.05fr 0.78fr;
  gap: 0;
  padding: 62px 0 54px;
}
.footer-premium .footer-grid > div {
  min-width: 0;
  padding: 0 clamp(22px, 2.8vw, 52px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-premium .footer-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}
.footer-premium .footer-grid > div:last-child {
  padding-right: 0;
}
.footer-premium .footer-grid h2,
.footer-premium .footer-office h2 {
  margin: 0 0 22px;
  color: #8b8b87;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-premium .footer-brand .brand {
  font-size: clamp(24px, 2vw, 34px);
  letter-spacing: -0.025em;
}
.footer-premium .footer-brand p {
  max-width: 250px;
  margin-top: 24px;
  color: #8e8e89;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.65;
}
.footer-premium .footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.footer-premium .footer-grid > div:not(.footer-brand) > a {
  margin: 5px 0;
  color: #d7d7d2;
  font-size: 13px;
  line-height: 1.45;
  transition: color 0.25s;
}
.footer-premium .footer-services > a {
  max-width: 190px;
}
.footer-premium .footer-grid > div:not(.footer-brand) > a:hover,
.footer-premium .footer-legal a:hover {
  color: var(--accent);
}
.footer-premium .footer-contact > a {
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: 100%;
  overflow-wrap: anywhere;
}
.footer-premium .footer-contact > a:before {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #a4a49f;
  font-size: 17px;
  font-weight: 400;
}
.footer-premium .footer-mail:before {
  content: "✉";
}
.footer-premium .footer-phone:before {
  content: "⌕";
  transform: rotate(-28deg);
}
.footer-premium .footer-send:before {
  content: "➤";
  font-size: 14px;
  transform: rotate(-28deg);
}
.footer-premium .footer-social-list {
  display: flex;
  gap: 9px;
}
.footer-premium .footer-social-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #ddd;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.footer-premium .footer-social-icon svg {
  width: 21px;
  height: 21px;
  overflow: visible;
}
.footer-premium .footer-social-icon:hover {
  transform: translateY(-2px);
  border-color: currentColor;
}
.footer-premium .footer-social-instagram {color:#e1306c}
.footer-premium .footer-social-instagram svg {fill:none;stroke:currentColor;stroke-width:1.8}
.footer-premium .footer-social-instagram .social-dot {fill:currentColor;stroke:none}
.footer-premium .footer-social-facebook {color:#1877f2}
.footer-premium .footer-social-facebook svg {fill:currentColor}
.footer-premium .footer-social-youtube {color:#ff0033}
.footer-premium .footer-social-youtube svg rect {fill:currentColor}
.footer-premium .footer-social-youtube .social-play {fill:#fff}
.footer-premium .footer-social p {
  margin: 20px 0 0;
  color: #777;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.footer-premium .footer-offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.footer-premium .footer-office {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 4px clamp(25px, 4vw, 76px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-premium .footer-office:first-child {
  padding-left: 0;
  border-left: 0;
}
.footer-premium .footer-office:last-child {
  padding-right: 0;
}
.footer-premium .footer-office h2 {
  margin: 0 0 10px;
  color: #b1b1ac;
}
.footer-premium .footer-office address {
  color: #8c8c88;
  font-size: 12px;
  font-style: normal;
  line-height: 1.75;
}
.footer-premium .footer-pin {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}
.footer-premium .footer-pin:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 47%;
  width: 8px;
  height: 8px;
  border: 1px solid #aaa;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.footer-premium .footer-pin:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  transform: translateX(-50%) rotate(45deg);
}
.footer-premium .footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  padding-top: 24px;
  border-top: 0;
  color: #747471;
}
.footer-premium .footer-bottom p {
  margin: 0;
  font-size: 8px;
  line-height: 1.7;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-premium .footer-legal {
  display: flex;
  gap: 30px;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-premium .footer-cta {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 5px 5px 5px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 99px;
  color: #ddd;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition:
    border-color 0.25s,
    color 0.25s;
}
.footer-premium .footer-cta b {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eee;
  color: #111;
  font-size: 14px;
}
.footer-premium .footer-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}
@media (max-width: 1100px) {
  .footer-premium .footer-grid {
    grid-template-columns: 1.15fr 0.85fr 1fr;
    row-gap: 46px;
  }
  .footer-premium .footer-grid > div:nth-child(4) {
    grid-column: auto;
  }
  .footer-premium .footer-grid > div:nth-child(4),
  .footer-premium .footer-grid > div:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 42px;
  }
  .footer-premium .footer-offices {
    grid-template-columns: 1fr;
  }
  .footer-premium .footer-office,
  .footer-premium .footer-office:first-child,
  .footer-premium .footer-office:last-child {
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer-premium .footer-office:first-child {
    border-top: 0;
  }
  .footer-premium .footer-bottom {
    grid-template-columns: 1fr auto;
  }
  .footer-premium .footer-cta {
    grid-column: 1/-1;
    justify-self: start;
  }
}
@media (max-width: 700px) {
  .site-footer.footer-premium {
    padding-top: 34px;
  }
  .footer-premium .footer-topline {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
  }
  .footer-premium .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding: 48px 0 36px;
  }
  .footer-premium .footer-grid > div,
  .footer-premium .footer-grid > div:first-child,
  .footer-premium .footer-grid > div:last-child {
    padding: 28px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }
  .footer-premium .footer-grid > div:nth-child(odd) {
    padding-left: 0;
  }
  .footer-premium .footer-grid > div:nth-child(even) {
    padding-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-premium .footer-grid .footer-brand {
    grid-column: 1/-1;
    padding: 0 0 36px;
    border-top: 0;
  }
  .footer-premium .footer-grid .footer-social {
    grid-column: 1/-1;
    padding-left: 0;
    border-left: 0;
  }
  .footer-premium .footer-office {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }
  .footer-premium .footer-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-premium .footer-legal {
    flex-direction: column;
    gap: 9px;
  }
  .footer-premium .footer-cta {
    grid-column: auto;
  }
}
@media (max-width: 430px) {
  .footer-premium .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-premium .footer-grid > div,
  .footer-premium .footer-grid > div:nth-child(odd),
  .footer-premium .footer-grid > div:nth-child(even) {
    padding: 26px 0;
    border-left: 0;
  }
  .footer-premium .footer-grid .footer-brand {
    padding-top: 0;
  }
  .footer-premium .footer-cta {
    width: 100%;
    justify-content: space-between;
  }
}
.reveal-up,
.reveal-scale,
.reveal-mask,
[data-split-lines] > span {
  will-change: transform, opacity;
}
.reveal-up {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal-up.in-view {
  opacity: 1;
  transform: none;
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 1.2s var(--ease),
    transform 1.2s var(--ease);
}
.reveal-scale.in-view {
  opacity: 1;
  transform: none;
}
.reveal-mask {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.25s var(--ease);
}
.reveal-mask.in-view {
  clip-path: inset(0);
}
[data-split-lines] {
  overflow: hidden;
}
[data-split-lines] > span {
  display: block;
  transform: translateY(112%);
  transition: transform 1.05s var(--ease);
}
[data-split-lines].in-view > span {
  transform: none;
}
[data-split-lines].in-view > span:nth-child(2) {
  transition-delay: 0.11s;
}
[data-split-lines].in-view > span:nth-child(3) {
  transition-delay: 0.18s;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
@media (pointer: coarse), (max-width: 900px) {
  .cursor-orb {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .reveal-up,
  .reveal-scale,
  [data-split-lines] > span {
    opacity: 1;
    transform: none;
  }
  .reveal-mask {
    clip-path: none;
  }
}
.cursor-orb {
  display: none !important;
}
.footer-premium .footer-bottom .footer-cta span {
  display: inline;
  margin: 0;
}

/* Footer readability */
.footer-premium .footer-bottom {
  grid-template-columns: 1fr auto 1fr;
}
.footer-premium .footer-legal {
  grid-column: 2;
  justify-self: center;
  text-align: center;
}
.footer-premium .footer-topline {
  font-size: 12px;
}
.footer-premium .footer-grid h2,
.footer-premium .footer-office h2 {
  font-size: 13px;
  line-height: 1.4;
}
.footer-premium .footer-brand p {
  font-size: 18px;
  line-height: 1.6;
}
.footer-premium .footer-grid > div:not(.footer-brand) > a {
  font-size: 17px;
  line-height: 1.55;
}
.footer-premium .footer-social p {
  font-size: 12px;
  line-height: 1.5;
}
.footer-premium .footer-agency-credit {
  width: 100%;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-premium .footer-agency-credit > span {
  display: block;
  margin-bottom: 10px;
  color: #a4a49f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-premium .footer-agency-credit > a {
  display: block !important;
  width: min(100%, 180px);
  margin: 0 !important;
  opacity: 0.9;
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.footer-premium .footer-agency-credit > a:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.footer-premium .footer-agency-credit img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.footer-premium .footer-office address {
  font-size: 16px;
  line-height: 1.65;
}
.footer-premium .footer-bottom p,
.footer-premium .footer-legal,
.footer-premium .footer-cta {
  font-size: 12px;
  line-height: 1.55;
}
@media (max-width: 700px) {
  .footer-premium .footer-bottom {
    grid-template-columns: 1fr;
  }
  .footer-premium .footer-legal {
    grid-column: 1;
    justify-self: center;
    align-items: center;
  }
  .footer-premium .footer-grid > div:not(.footer-brand) > a {
    font-size: 17px;
  }
  .footer-premium .footer-office address {
    font-size: 16px;
  }
  .footer-premium .footer-bottom p,
  .footer-premium .footer-legal,
  .footer-premium .footer-cta {
    font-size: 12px;
  }
}
