/* =========================================================
   ROTEIROS COM DETALHES — DESIGN SYSTEM
   ========================================================= */

:root {
  /* Cores */
  --navy: #08223f;
  --navy-dark: #051526;
  --navy-soft: #0f2e4a;
  --gold: #c9a24b;
  --gold-light: #e2c179;
  --cream: #f7f3ec;
  --cream-dark: #eee7d9;
  --white: #ffffff;
  --ink: #16232f;
  --ink-soft: #4a5563;

  /* Tipografia */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Segoe UI", Arial, sans-serif;

  /* Espaçamento */
  --section-padding: clamp(64px, 9vw, 128px);
  --container-width: 1200px;

  /* Transições */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy);
}

p {
  line-height: 1.7;
  margin: 0 0 1em;
  color: var(--ink-soft);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .container {
    padding: 0 22px;
  }
}

/* ---------------------------------------------------------
   Botões
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(201, 162, 75, 0.28);
}

.btn--small {
  padding: 11px 22px;
  font-size: 0.75rem;
}

.btn--full {
  width: 100%;
  padding: 18px 34px;
}

/* ---------------------------------------------------------
   Seções — cabeçalhos
   --------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

.section-heading p {
  font-size: 1.05rem;
}

.section-heading--light h2,
.section-heading--light p,
.section-heading--light .eyebrow {
  color: var(--white);
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.75);
}

/* ---------------------------------------------------------
   Animações de entrada
   --------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.fade-up[data-delay="1"] { transition-delay: 0.12s; }
.fade-up[data-delay="2"] { transition-delay: 0.24s; }
.fade-up[data-delay="3"] { transition-delay: 0.36s; }

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(8, 34, 63, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 88px;
  width: auto;
  transition: height 0.4s var(--ease);
}

.site-header.is-scrolled .header__logo img {
  height: 52px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.header__nav a {
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.25s var(--ease);
  white-space: nowrap;
}

.header__nav a:hover {
  opacity: 1;
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

@media (max-width: 860px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
  }

  .header__nav.is-open {
    transform: translateX(0);
  }

  .header__nav a {
    font-size: 1.05rem;
  }

  .header__toggle {
    display: flex;
  }

  .header__toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header__toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .header__toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 92vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video,
.hero__fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__fallback-img {
  z-index: 0;
}

.hero__video {
  z-index: 1;
}

.hero__video.is-hidden {
  display: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 21, 38, 0.55) 0%, rgba(5, 21, 38, 0.35) 45%, rgba(5, 21, 38, 0.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  color: var(--white);
  max-width: 900px;
  margin-bottom: 0.4em;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin-bottom: 2em;
}

.hero__scroll-hint {
  margin-top: 56px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__scroll-hint span {
  display: inline-block;
  animation: bounce 2.2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* =========================================================
   PROBLEMA
   ========================================================= */
.problem {
  background: var(--cream);
  padding: var(--section-padding) 0;
}

.problem__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.problem__image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(8, 34, 63, 0.25);
}

.problem__text h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 0.6em;
}

.problem__highlight {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  font-style: italic;
}

.problem__closing {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 1.4em;
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .problem__grid {
    grid-template-columns: 1fr;
  }
  .problem__image {
    order: -1;
  }
}

/* =========================================================
   COMO FUNCIONA
   ========================================================= */
.how-it-works {
  background: var(--navy);
  padding: var(--section-padding) 0;
}

/* Carrossel horizontal: o proprio .steps-grid e a area rolavel (scroll-snap nativo) */
.steps-carousel {
  --gap: 28px;
  position: relative;
}

.steps-grid {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 26px;
  margin-bottom: -10px;
  cursor: grab;
}

.steps-grid::-webkit-scrollbar {
  display: none;
}

.steps-grid:focus-visible {
  outline: 1px solid rgba(201, 162, 75, 0.6);
  outline-offset: 6px;
}

.steps-grid.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
  user-select: none;
}

.step {
  flex: 0 0 calc((100% - 2 * var(--gap)) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(201, 162, 75, 0.22);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 22px 40px -28px rgba(0, 0, 0, 0.6);
  transition: border-color 0.4s var(--ease);
}

.step:hover {
  border-color: rgba(201, 162, 75, 0.45);
}

.step__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-dark);
}

.step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  transition: transform 1.2s var(--ease);
}

.step:hover .step__media img {
  transform: scale(1.03);
}

.step__body {
  flex: 1;
  padding: 22px 24px 28px;
}

.step__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.step h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.55em;
}

.step p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

/* Setas + indicadores */
.steps-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
}

.steps-carousel__controls[hidden] {
  display: none;
}

.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.4);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
}

.carousel-arrow:hover:not(:disabled) {
  background: rgba(201, 162, 75, 0.12);
  border-color: var(--gold);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-dot {
  position: relative;
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 0.35s var(--ease), background 0.35s var(--ease);
}

.carousel-dot::before {
  content: "";
  position: absolute;
  inset: -9px -5px;
}

.carousel-dot.is-active {
  width: 22px;
  background: var(--gold);
}

@media (max-width: 860px) {
  .steps-carousel {
    --gap: 20px;
  }

  .step {
    flex-basis: calc((100% - var(--gap)) / 2);
  }
}

@media (max-width: 560px) {
  .steps-carousel {
    --gap: 14px;
  }

  /* sangra ate a borda da tela para mostrar um pedaco do proximo card */
  .steps-grid {
    margin-left: -22px;
    margin-right: -22px;
    padding-left: 22px;
    padding-right: 22px;
    scroll-padding-left: 22px;
  }

  .step {
    flex-basis: 84%;
  }

  .step__body {
    padding: 18px 20px 24px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
}

/* =========================================================
   BANNER VISUAL
   ========================================================= */
.visual-banner {
  position: relative;
  height: 60vh;
  min-height: 380px;
  max-height: 620px;
  overflow: hidden;
}

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

.visual-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 21, 38, 0.42);
}

.visual-banner__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
}

.visual-banner__text h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  max-width: 900px;
  margin: 0;
}

/* =========================================================
   O QUE VOCÊ RECEBE
   ========================================================= */
.deliverables {
  background: var(--cream);
  padding: var(--section-padding) 0;
}

.deliverables__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.deliverables__image {
   height: 100%;
  min-height: 520px;
  align-self: stretch;
}

.deliverables__image img,
.deliverables__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(8, 34, 63, 0.25);
}

.deliverables__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.deliverable-item {
  border-left: 2px solid var(--gold);
  padding-left: 22px;
}

.deliverable-item__tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.deliverable-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4em;
}

.deliverable-item p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .deliverables__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CONHEÇA NOSSO TRABALHO
   ========================================================= */
.about-work {
  background: var(--white);
  padding: var(--section-padding) 0;
}

.about-work__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 70px);
  align-items: center;
}

.about-work__text p {
  font-size: 1.02rem;
}

.about-work__ig-links {
  display: flex;
  flex-direction: column;
}

.about-work__ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}

.about-work__ig-link:hover {
  color: var(--gold);
  gap: 12px;
}

.about-work__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-work__gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
}

.about-work__gallery img:nth-child(2) {
  margin-top: 28px;
}

.about-work__gallery img:nth-child(3) {
  margin-top: -28px;
}

@media (max-width: 860px) {
  .about-work__grid {
    grid-template-columns: 1fr;
  }
  .about-work__gallery img:nth-child(2),
  .about-work__gallery img:nth-child(3) {
    margin-top: 0;
  }
}

/* =========================================================
   DEPOIMENTOS
   ========================================================= */
.testimonials {
  background: var(--cream);
  padding: var(--section-padding) 0;
}

.testimonials__note {
  font-size: 0.9rem;
  font-style: italic;
}

/* Carrossel: reaproveita a estrutura/comportamento de .steps-carousel
   (ver seção "COMO FUNCIONA"), apenas com um track e cards próprios. */
.testimonials__grid {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 6px;
  cursor: grab;
}

.testimonials__grid::-webkit-scrollbar {
  display: none;
}

.testimonials__grid:focus-visible {
  outline: 1px solid rgba(201, 162, 75, 0.6);
  outline-offset: 6px;
}

.testimonials__grid.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
  user-select: none;
}

/* Tema claro dos indicadores (o padrão em .carousel-dot é pensado para fundo azul-marinho) */
.testimonials-carousel .carousel-dot {
  background: rgba(8, 34, 63, 0.18);
}

.testimonials-carousel .carousel-dot.is-active {
  background: var(--gold);
}

.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 2 * var(--gap)) / 3);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px dashed rgba(8, 34, 63, 0.25);
  border-radius: 6px;
  padding: 34px 28px;
  text-align: center;
}

.testimonial-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.testimonial-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin: 12px auto 18px;
}

.testimonial-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 18px;
}

.testimonial-card__name {
  font-weight: 500;
  color: var(--navy);
  margin: 0;
}

.testimonial-card__city {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 860px) {
  .testimonial-card {
    flex-basis: calc((100% - var(--gap)) / 2);
  }
}

@media (max-width: 560px) {
  .testimonials__grid {
    margin-left: -22px;
    margin-right: -22px;
    padding-left: 22px;
    padding-right: 22px;
    scroll-padding-left: 22px;
  }

  .testimonial-card {
    flex-basis: 84%;
  }
}

/* =========================================================
   FORMULÁRIO / CONTATO
   ========================================================= */
.contact {
  position: relative;
  background: var(--navy-dark);
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.contact__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy-dark) 0%, rgba(5, 21, 38, 0.94) 100%);
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.contact .section-heading {
  margin-bottom: 44px;
}

.contact__note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55) !important;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: clamp(24px, 4vw, 44px);
  border-radius: 8px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row--split > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 560px) {
  .form-row--split {
    grid-template-columns: 1fr;
  }
}

.contact__form label {
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.8);
}

.contact__form input,
.contact__form textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
}

.contact__form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact__form .btn {
  margin-top: 8px;
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.final-cta {
  background-image: linear-gradient(rgba(5, 21, 38, 0.6), rgba(5, 21, 38, 0.6)), url("../assets/img/cta-final.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: clamp(420px, 32vw, 460px);
  display: flex;
  align-items: center;
  padding: 48px 0;
}

@media (max-width: 640px) {
  .final-cta {
    background-position: 25% center;
    min-height: 360px;
    padding: 40px 0;
  }
}

.final-cta__inner {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.final-cta__inner h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 640px;
  margin: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand img {
  height: 82px;
  margin-bottom: 16px;
}

.site-footer__brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  max-width: 280px;
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.site-footer__links,
.site-footer__nav {
  display: flex;
  flex-direction: column;
}

.site-footer__links a,
.site-footer__nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  margin-bottom: 12px;
  transition: color 0.25s var(--ease);
}

.site-footer__links a:hover,
.site-footer__nav a:hover {
  color: var(--gold);
}

.site-footer__bottom {
  padding: 24px 32px;
  text-align: center;
}

.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin: 0;
}

@media (max-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}