:root {
  --black: #000000;
  --charcoal: #1e1e1e;
  --gold: #ad976e;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.2);
  --max-wrap: 1440px;
  --header-height: 140px;
  --ease: 320ms ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Tenor Sans", sans-serif;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.wrap,
.section-content {
  width: min(var(--max-wrap), calc(100% - 80px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-height);
  background: rgba(0, 0, 0, 0.86);
  overflow: visible;
  z-index: 30;
  transition: background var(--ease), backdrop-filter var(--ease), height var(--ease);
}

.site-header.header--scrolled {
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(5px);
}

.header-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 70px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.menu-toggle__line {
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

.site-header.is-menu-open .menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 18px;
}

.menu-left {
  justify-content: flex-end;
}

.menu-right {
  justify-content: flex-start;
}

.menu a,
.lang-dropdown__trigger {
  opacity: 0.9;
  transition: color var(--ease), opacity var(--ease);
}

.menu a:hover,
.lang-dropdown__trigger:hover {
  color: var(--gold);
  opacity: 1;
}

.lang-dropdown {
  position: relative;
  isolation: isolate;
  z-index: 50;
}

.lang-dropdown__trigger {
  min-width: 60px;
  border: 0;
  background: transparent;
  color: var(--gold);
  font: inherit;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lang-dropdown__trigger:focus {
  outline: none;
  opacity: 1;
}

.lang-dropdown__caret {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--ease);
}

.lang-dropdown.is-open .lang-dropdown__caret {
  transform: rotate(-135deg) translateY(-1px);
}

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 70px;
  display: grid;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid rgba(173, 151, 110, 0.45);
  z-index: 60;
}

.lang-dropdown__menu[hidden] {
  display: none;
}

.lang-dropdown__option {
  display: block;
  padding: 10px 14px;
  text-align: center;
  color: var(--white);
  letter-spacing: 0.2em;
  opacity: 0.9;
  transition: color var(--ease), opacity var(--ease);
}

.lang-dropdown__option:hover,
.lang-dropdown__option:focus-visible,
.lang-dropdown__option.is-active {
  color: var(--gold);
  opacity: 1;
}

.lang-dropdown__option:focus-visible {
  outline: none;
}

.mobile-menu {
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  padding: 26px 0 34px;
  display: grid;
  justify-items: center;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
}

.mobile-menu a {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
}

.site-header.is-menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 85px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero {
  min-height: 850px;
  background: #000;
  position: relative;
  margin-top: 0;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(850px - var(--header-height));
  display: grid;
  place-items: center;
  text-align: center;
}

.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: 44px;
  line-height: 55px;
  text-transform: uppercase;
  font-weight: 400;
  transform: translateY(-28px);
}

.hero-badges {
  position: absolute;
  bottom: 71px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badges img,
.hero-badge {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  object-fit: cover;
}

.hero-badge-center {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #efdfb2 0%, #b79b6a 45%, #866f4f 100%);
  color: #1f1f1f;
  font-size: 16px;
  font-family: "Cormorant Garamond", serif;
  text-transform: lowercase;
  letter-spacing: 0.08em;
}

.intro {
  background: var(--charcoal);
  padding: 190px 0 160px;
  text-align: center;
  position: relative;
  isolation: isolate;
}

.intro > :not(.ornament) {
  position: relative;
  z-index: 1;
}

.intro p {
  margin: 0 auto;
  width: min(1000px, 100%);
  font-size: 18px;
  line-height: 1.95;
}

.cta-row {
  margin-top: 78px;
  display: flex;
  justify-content: center;
  gap: 90px;
}

.btn {
  border: 0;
  min-width: 190px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 19px;
  transition: transform var(--ease), opacity var(--ease);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.btn-gold,
.btn-gold-dark {
  background: var(--gold);
  color: #111;
}

.section {
  position: relative;
  padding: 198px 0 190px;
  overflow: clip;
  isolation: isolate;
}

.section-black {
  background: var(--black);
}

.section-charcoal {
  background: var(--charcoal);
}

h2 {
  margin: 0 0 100px;
  text-align: center;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 40px;
  line-height: 35px;
  font-weight: 400;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 0;
  align-items: start;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.feature-grid .feature-card:first-child img {
  margin-bottom: -40px;
}

.feature-copy {
  align-self: start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 10%;
}

.feature-copy p,
.reservation-snippet p,
.news-card p {
  font-size: 18px;
  line-height: 35px;
  margin: 0;
}

.line {
  margin-top: 30px;
  width: 220px;
  border-top: 1px solid var(--gold);
  display: block;
}

.reservation-snippet h3,
.news-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 35px;
  font-weight: 400;
}

.reservation-snippet {
  max-width: 660px;
  margin-top: 160px;
}

.reservation-snippet h3 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 24px;
}

.reservation-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.reservation-cta .btn {
  min-width: 220px;
  height: 50px;
  font-size: 15px;
}

.team-carousel {
  position: relative;
  --team-media-size: clamp(360px, 41vw, 600px);
  --team-copy-gap: clamp(55px, 7.5vw, 100px);
  --team-copy-width: clamp(250px, 28vw, 410px);
  width: min(1440px, 100%);
  margin-top: 0;
  margin-inline: auto;
}

.team-embla {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  cursor: grab;
}

.team-carousel.is-dragging .team-embla {
  cursor: grabbing;
}

.team-embla__container {
  display: flex;
  align-items: flex-start;
}

.team-slide {
  position: relative;
  flex: 0 0 calc(var(--team-media-size) + var(--team-media-size));
  min-width: 0;
  height: var(--team-media-size);
}

.team-slide-media {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--team-media-size);
  height: var(--team-media-size);
  overflow: hidden;
  opacity: 0.2;
  filter: saturate(0.75);
  transition:
    left 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.42s ease,
    filter 0.42s ease;
  will-change: left, opacity, filter;
}

.team-slide-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-slide.is-active .team-slide-media {
  opacity: 1;
  filter: saturate(1);
  box-shadow: 0 4px 40px 30px #1e1e1e;
}

.team-slide.is-prev .team-slide-media {
  left: var(--team-media-size);
  opacity: 0.35;
}

.team-slide.is-next .team-slide-media {
  left: 0;
  opacity: 0.35;
}

.team-slide.is-far .team-slide-media {
  opacity: 0.12;
}

.team-slide-copy {
  position: absolute;
  left: calc(var(--team-media-size) + var(--team-copy-gap));
  height: 100%;
  width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  opacity: 0;
  transition: opacity 0.36s ease;
  pointer-events: none;
}

.team-slide.is-prev .team-slide-copy,
.team-slide.is-next .team-slide-copy {
  width: 0;
  opacity: 0;
}

.team-slide.is-active .team-slide-copy {
  width: var(--team-copy-width);
  opacity: 1;
  transition-delay: 0.2s;
}

.team-carousel.is-dragging .team-slide-copy {
  transition-delay: 0s;
}

.team-slide-copy h3 {
  margin: 0;
  font-size: 24px;
  line-height: 35px;
  font-weight: 400;
}

.team-slide-copy strong {
  color: var(--gold);
  display: block;
  margin: 0;
  line-height: 35px;
  font-weight: 400;
  font-size: 18px;
}

.team-slide-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 26px;
}

.team-slide-copy .line {
  width: 160px;
  margin-top: 30px;
  margin-inline: auto;
}

.team-nav {
  position: absolute;
  z-index: 3;
  top: clamp(190px, 20vw, 290px);
  width: 40px;
  height: 80px;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 64px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  opacity: 0.85;
  transition: transform var(--ease), opacity var(--ease);
}

.team-nav:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.team-nav.prev {
  left: 0px;
  transform: translateY(-50%);
}

.team-nav.next {
  right: 0px;
  transform: translateY(-50%);
}

.news-card {
  margin-top: 0;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(420px, 470px) minmax(0, 1fr);
  column-gap: 80px;
  align-items: start;
}

.news-card + .news-card {
  margin-top: 80px;
}

.news-card.reverse {
  width: 100%;
  margin-left: 0;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 470px);
  column-gap: 80px;
}

.news-card.reverse img {
  order: 2;
}

.news-card img {
  width: 100%;
  max-width: 470px;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
}

.news-card h3 {
  margin: 0 0 40px;
}

.more-news {
  margin: 80px auto 0;
  display: block;
  width: fit-content;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 20px;
  line-height: 35px;
  text-decoration: underline;
  text-underline-offset: 6px;
  letter-spacing: 0.06em;
}

.banner {
  min-height: 380px;
}

.banner img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.site-footer {
  background: var(--charcoal);
  position: relative;
  min-height: 400px;
  padding: 160px 0 150px;
  overflow: clip;
  isolation: isolate;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas:
    ". logo copy"
    "links links links";
  align-items: center;
  row-gap: clamp(44px, 6vw, 78px);
  column-gap: clamp(24px, 4vw, 56px);
}

.footer-logo {
  grid-area: logo;
}

.footer-links,
.footer-copy {
  margin: 0;
  font-size: 15px;
  line-height: 28px;
}

.footer-links {
  grid-area: links;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px clamp(20px, 3vw, 42px);
  text-transform: uppercase;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--ease);
}

.footer-links a:hover {
  opacity: 0.78;
}

.footer-copy {
  grid-area: copy;
  max-width: 360px;
  min-width: 0;
  text-align: left;
}

.ornament {
  position: absolute;
  left: 50%;
  top: var(--ornament-top, auto);
  bottom: var(--ornament-bottom, auto);
  transform: translateX(-50%);
  width: 220px;
  height: var(--ornament-height, 350px);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  --ornament-top-y: 60px;
  --ornament-bottom-y: 60px;
  background-image: url("assets/separator-pattern.svg");
  background-repeat: repeat;
  background-size: 200px 200px;
  background-position: 0 var(--ornament-y, 60px);
}

.section > .section-content,
.site-footer > .section-content {
  position: relative;
  z-index: 1;
}

.ornament.top {
  --ornament-top: var(--ornament-top-offset, 0px);
  --ornament-bottom: auto;
  --ornament-height: var(--ornament-top-height, 350px);
  --ornament-y: var(--ornament-top-y, 60px);
}

.ornament.bottom {
  --ornament-top: auto;
  --ornament-bottom: var(--ornament-bottom-offset, 0px);
  --ornament-height: var(--ornament-bottom-height, 350px);
  --ornament-y: var(--ornament-bottom-y, 60px);
}

#etterem {
  --ornament-top-height: 350px;
  --ornament-bottom-height: 150px;
  --ornament-top-y: 60px;
  --ornament-bottom-y: -110px;
  padding-bottom: 250px;
}

#csapatunk {
  --ornament-top-height: 350px;
  --ornament-bottom-height: 100px;
  --ornament-top-y: 60px;
  --ornament-bottom-y: -320px;
  padding-bottom: 170px;
}

#csapatunk h2 {
  margin-bottom: 170px;
}

#hirek {
  --ornament-top-height: 350px;
  --ornament-bottom-height: 350px;
  --ornament-top-y: 60px;
  --ornament-bottom-y: 60px;
  padding-bottom: 190px;
}

#menu {
  --ornament-top-offset: 1px;
  --ornament-top-height: 140px;
  --ornament-bottom-height: 90px;
  --ornament-top-y: -210px;
  --ornament-bottom-y: -210px;
}

.site-footer {
  --ornament-top-offset: 96px;
  --ornament-top-height: 200px;
  --ornament-top-y: -20px;
}

.feature-copy .line {
  margin-top: 50px;
}

.news-card > div {
  margin-top: 80px;
}

.news-card .line {
  margin-top: 30px;
}

@media (max-width: 1500px) {
  .menu {
    font-size: 15px;
    letter-spacing: 0.16em;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-card {
    width: 100%;
    grid-template-columns: minmax(260px, 35%) minmax(0, 1fr);
    column-gap: clamp(24px, 4vw, 64px);
  }

  .news-card.reverse {
    width: 100%;
    margin-left: 0;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 35%);
    column-gap: clamp(24px, 4vw, 64px);
  }

  .news-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .news-card > div {
    min-width: 0;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 100px;
    --mobile-menu-height: 250px;
  }

  .wrap,
  .section-content {
    width: min(var(--max-wrap), calc(100% - 36px));
  }

  .site-header.is-menu-open {
    height: calc(var(--header-height) + var(--mobile-menu-height));
  }

  .header-grid {
    grid-template-columns: auto 1fr auto;
    justify-items: stretch;
    height: var(--header-height);
    padding-top: 0;
    column-gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-left {
    display: none;
  }

  .menu-right {
    justify-content: flex-end;
    gap: 0;
    font-size: 18px;
    letter-spacing: 0.2em;
    white-space: nowrap;
  }

  .menu-right > a {
    display: none;
  }

  .mobile-menu {
    display: grid;
  }

  .logo {
    justify-self: center;
    width: 140px;
    height: 85px;
  }

  .feature-grid {
    column-gap: 36px;
  }

  .feature-copy {
    padding-top: 120px;
  }

  .reservation-snippet {
    max-width: none;
    margin-top: 80px;
  }

  .news-card,
  .news-card.reverse {
    width: auto;
    margin-left: 0;
    column-gap: 36px;
  }

  .news-card > div {
    margin-top: 28px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    min-height: calc(690px - var(--header-height));
  }

  .hero h1 {
    font-size: clamp(26px, 5.2vw, 34px);
    line-height: 1.3;
    transform: none;
  }

  .hero-badges {
    bottom: 14px;
  }

  .hero-badges img,
  .hero-badge {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 761px) and (max-width: 1024px) {
  #csapatunk h2 {
    margin-bottom: 80px;
  }

  .team-carousel {
    width: 100%;
  }

  .team-slide {
    flex-basis: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .team-slide-media {
    position: relative;
    left: auto;
    width: min(420px, 58vw);
    height: auto;
    aspect-ratio: 1 / 1;
    opacity: 1 !important;
    filter: none !important;
    transition: none;
    box-shadow: none !important;
  }

  .team-slide.is-prev .team-slide-media,
  .team-slide.is-next .team-slide-media {
    left: auto;
    opacity: 1;
  }

  .team-slide-copy {
    position: static;
    display: flex;
    width: min(680px, 100%);
    height: auto;
    margin-top: 32px;
    overflow: visible;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .team-slide.is-prev .team-slide-copy,
  .team-slide.is-next .team-slide-copy,
  .team-slide.is-far .team-slide-copy {
    width: min(680px, 100%);
    opacity: 0;
  }

  .team-slide.is-active .team-slide-copy {
    width: min(680px, 100%);
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .team-slide-copy .line {
    margin-inline: auto;
  }

  .team-nav {
    top: min(210px, 29vw);
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 100px;
    --mobile-menu-height: 230px;
  }

  .wrap,
  .section-content {
    width: calc(100% - 24px);
  }

  .header-grid {
    column-gap: 10px;
  }

  .mobile-menu {
    padding: 20px 0 28px;
    gap: 13px;
  }

  .hero h1 {
    max-width: 90%;
  }

  .intro {
    min-height: 0;
    padding: 96px 0;
  }

  .intro p {
    font-size: 16px;
    line-height: 1.8;
  }

  .cta-row {
    margin-top: 48px;
    gap: 20px;
  }

  .btn {
    min-width: 148px;
    height: 52px;
    font-size: 16px;
  }

  .section {
    padding: 94px 0 108px;
  }

  h2 {
    margin-bottom: 50px;
  }

  .feature-grid,
  .news-card,
  .news-card.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    width: auto;
    margin: 0;
  }

  .feature-grid .feature-card:first-child img {
    margin-bottom: 0;
  }

  .news-card + .news-card {
    margin-top: 32px;
  }

  .news-card.reverse img {
    order: 0;
  }

  .news-card > div {
    margin-top: 0;
    order: 1;
  }

  .reservation-snippet,
  .feature-copy {
    max-width: none;
    margin-top: 0;
    padding-top: 0;
  }

  .reservation-cta .btn {
    width: 100%;
  }

  .team-carousel {
    width: 100%;
    margin-top: 0;
  }

  .team-slide {
    flex-basis: 100%;
    height: auto;
  }

  .team-slide-media {
    position: relative;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    opacity: 1 !important;
    filter: none !important;
    transition: none;
    box-shadow: none !important;
  }

  .team-slide.is-prev .team-slide-media,
  .team-slide.is-next .team-slide-media {
    left: 0;
    opacity: 1;
    box-shadow: none !important;
  }

  .team-slide-copy {
    position: static;
    display: flex;
    width: 100%;
    margin-top: 28px;
    text-align: left;
    opacity: 0;
    overflow: visible;
    transform: none;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .team-slide.is-prev .team-slide-copy,
  .team-slide.is-next .team-slide-copy,
  .team-slide.is-far .team-slide-copy {
    width: 100%;
    opacity: 0;
  }

  .team-slide.is-active .team-slide-copy {
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
    width: 100%;
  }

  .team-slide-copy .line {
    margin-inline: 0;
  }

  .team-nav {
    top: 42vw;
  }

  .team-slide-copy .line,
  .news-card .line,
  .feature-copy .line,
  .reservation-snippet .line {
    margin-top: 30px;
    width: 100%;
  }

  .site-footer {
    min-height: 0;
    padding: 62px 0 56px;
  }

  #etterem,
  #csapatunk,
  #hirek {
    margin-top: 0;
    min-height: 0;
    padding-bottom: 108px;
  }

  #csapatunk h2 {
    margin-bottom: 50px;
  }

  .banner {
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "copy"
      "links";
    justify-items: center;
    text-align: center;
    gap: 34px;
  }

  .footer-logo {
    width: 118px;
    height: 72px;
  }

  .footer-links {
    justify-content: center;
    width: 100%;
  }

  .footer-copy {
    max-width: 260px;
    text-align: center;
  }
}
