/* NOUS. — Section layouts */

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--section-padding) 1.5rem;
  padding-top: calc(var(--section-padding) + env(safe-area-inset-top, 0px));
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: var(--z-content);
  text-align: center;
  width: 100%;
  max-width: min(96vw, 1200px);
  padding: 0 1rem;
  padding-left: calc(1rem + env(safe-area-inset-left, 0px));
  padding-right: calc(1rem + env(safe-area-inset-right, 0px));
}

.hero-title {
  font-family: "cuisine", sans-serif;
  font-size: clamp(4rem, 16vw, 12rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--yellow);
  text-shadow: 0 2px 20px rgba(255, 191, 0, 0.5), 0 4px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 0.15em;
  overflow: visible;
  white-space: nowrap;
}

@media (max-width: 359px) {
  .hero-title {
    font-size: clamp(2.75rem, 14vw, 4rem);
    white-space: normal;
  }
}

.hero-title-wrap {
  display: inline-block;
  overflow: visible;
  vertical-align: top;
}

.hero-title-line {
  display: inline-block;
  will-change: transform;
  overflow: visible;
}

.hero-tagline {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--white);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-700);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--black), transparent);
  animation: scrollLine 2s var(--ease-in-out-expo) infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.3); opacity: 0.5; }
}

/* Bloc unique intro → contact : fond blanc + cercles jaunes (non coupés, hors contenu) */
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2%, -2%) scale(1.04); }
}

.content-block {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.content-block-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.content-block-bg-circle {
  position: absolute;
  border-radius: 50%;
  animation: floatShape 20s ease-in-out infinite;
}

.content-block-bg-circle--1 {
  top: 8%;
  left: calc((100% - min(92vw, 1280px)) / 2 - 140px);
  width: clamp(140px, 18vw, 220px);
  height: clamp(140px, 18vw, 220px);
  background: rgba(255, 191, 0, 0.2);
}

.content-block-bg-circle--2 {
  top: 12%;
  right: calc((100% - min(92vw, 1280px)) / 2 - 140px);
  width: clamp(120px, 15vw, 180px);
  height: clamp(120px, 15vw, 180px);
  background: rgba(255, 204, 51, 0.16);
  animation-delay: -5s;
  animation-duration: 22s;
}

.content-block-bg-circle--3 {
  bottom: 15%;
  left: calc((100% - min(92vw, 1280px)) / 2 - 120px);
  width: clamp(110px, 14vw, 170px);
  height: clamp(110px, 14vw, 170px);
  background: rgba(230, 172, 0, 0.14);
  animation-delay: -8s;
  animation-duration: 24s;
  animation-direction: reverse;
}

.content-block-bg-circle--4 {
  bottom: 10%;
  right: calc((100% - min(92vw, 1280px)) / 2 - 130px);
  width: clamp(130px, 16vw, 200px);
  height: clamp(130px, 16vw, 200px);
  background: rgba(255, 191, 0, 0.18);
  animation-delay: -3s;
  animation-duration: 18s;
  animation-direction: reverse;
}

/* Sur écrans moyens : cercles plus petits, bien dans les coins */
@media (max-width: 1399px) and (min-width: 901px) {
  .content-block-bg-circle--1 {
    top: 6%;
    left: 1rem;
    width: 70px;
    height: 70px;
  }
  .content-block-bg-circle--2 {
    top: 8%;
    right: 1rem;
    left: auto;
    width: 60px;
    height: 60px;
  }
  .content-block-bg-circle--3 {
    bottom: 12%;
    left: 1rem;
    right: auto;
    width: 65px;
    height: 65px;
  }
  .content-block-bg-circle--4 {
    bottom: 8%;
    right: 1rem;
    left: auto;
    width: 75px;
    height: 75px;
  }
}

/* Mobile : cercles visibles mais discrets dans les coins */
@media (max-width: 900px) {
  .content-block-bg-circle {
    width: 52px !important;
    height: 52px !important;
  }
  .content-block-bg-circle--1 {
    top: 4%;
    left: 0.75rem;
    right: auto;
  }
  .content-block-bg-circle--2 {
    top: 6%;
    right: 0.75rem;
    left: auto;
  }
  .content-block-bg-circle--3 {
    bottom: 8%;
    left: 0.75rem;
    right: auto;
  }
  .content-block-bg-circle--4 {
    bottom: 5%;
    right: 0.75rem;
    left: auto;
  }
}

/* Intro */
.intro {
  position: relative;
  z-index: 1;
  padding: var(--section-padding) 0;
  background: transparent;
}

.intro-text {
  max-width: 100%;
  margin-inline: auto;
  width: 100%;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--black);
}

.intro-line {
  display: block;
  max-width: 80%;
}

.intro-line--left {
  text-align: left;
  margin-right: auto;
}

.intro-line--right {
  text-align: right;
  margin-top: 1.25em;
  margin-left: auto;
  max-width: 80%;
}

.intro-text strong {
  color: var(--yellow-dark);
  font-weight: 700;
}

@media (max-width: 768px) {
  .intro-text {
    font-size: clamp(1.25rem, 3.5vw, 1.6rem);
  }

  .intro-line {
    max-width: 80%;
  }

  .intro-line--right {
    margin-top: 0.9em;
  }
}

/* Mosaïque */
.mosaic {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.mosaic-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 0.35em;
}

.mosaic-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-700);
  margin-bottom: 2.5rem;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  grid-auto-flow: dense;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.6s var(--ease-out-expo),
              box-shadow 0.6s var(--ease-out-expo),
              border-color 0.5s var(--ease-out-expo);
  border: 1px solid transparent;
}

.mosaic-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--yellow-soft);
}

.mosaic-item-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out-expo),
              filter 0.6s var(--ease-out-expo);
}

.mosaic-item:hover img {
  transform: scale(1.15);
  filter: brightness(0.92);
}

/* Overlay au survol */
.mosaic-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
}

.mosaic-item:hover .mosaic-item-overlay {
  opacity: 1;
}

.mosaic-item-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out-expo) 0.05s,
              opacity 0.4s var(--ease-out-expo) 0.05s;
}

.mosaic-item:hover .mosaic-item-label {
  transform: translateY(0);
  opacity: 1;
}

/* Dimensions variées */
.mosaic-item--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 260px;
}

.mosaic-item--tall {
  grid-row: span 2;
  min-height: 260px;
}

.mosaic-item--wide {
  grid-column: span 2;
  min-height: 200px;
}

.mosaic-item--medium {
  grid-column: span 2;
  min-height: 200px;
}

.mosaic-item--small {
  min-height: 180px;
}

/* Placement explicite (8 items) */
.mosaic-item:nth-child(1) { grid-column: 1 / span 2; grid-row: 1 / span 2; }
.mosaic-item:nth-child(2) { grid-column: 3; grid-row: 1 / span 2; }
.mosaic-item:nth-child(3) { grid-column: 1 / span 2; grid-row: 3; }
.mosaic-item:nth-child(4) { grid-column: 3; grid-row: 3; }
.mosaic-item:nth-child(5) { grid-column: 4; grid-row: 3; }
.mosaic-item:nth-child(6) { grid-column: 1 / span 2; grid-row: 4; }
.mosaic-item:nth-child(7) { grid-column: 3; grid-row: 4 / span 2; }
.mosaic-item:nth-child(8) { grid-column: 1 / span 2; grid-row: 5 / span 2; }

@media (max-width: 900px) {
  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 0.75rem;
  }

  /* Réinitialiser le placement explicite pour un flux naturel */
  .mosaic-item:nth-child(1),
  .mosaic-item:nth-child(2),
  .mosaic-item:nth-child(3),
  .mosaic-item:nth-child(4),
  .mosaic-item:nth-child(5),
  .mosaic-item:nth-child(6),
  .mosaic-item:nth-child(7),
  .mosaic-item:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
  }

  .mosaic-item--large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 240px;
  }

  .mosaic-item--tall {
    grid-row: span 2;
    min-height: 240px;
  }

  .mosaic-item--wide,
  .mosaic-item--medium {
    grid-column: span 2;
    min-height: 180px;
  }

  .mosaic-item--small {
    min-height: 180px;
  }
}

@media (max-width: 480px) {
  .mosaic-grid {
    gap: 0.5rem;
    grid-auto-rows: minmax(150px, auto);
  }

  .mosaic-item--large,
  .mosaic-item--tall {
    min-height: 200px;
  }

  .mosaic-item--wide,
  .mosaic-item--medium,
  .mosaic-item--small {
    min-height: 150px;
  }

  .mosaic-item:hover {
    transform: translateY(-2px) scale(1.01);
  }
}

/* Portfolio */
.portfolio {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--gap);
  margin-bottom: 3rem;
}

.portfolio-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--duration-slow) var(--ease-out-expo),
              box-shadow var(--duration-slow) var(--ease-out-expo);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.portfolio-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.portfolio-card-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  transition: transform var(--duration-slow) var(--ease-out-expo);
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.06);
}

.portfolio-card-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--yellow);
  color: var(--black);
  padding: 0.35rem 0.75rem;
  font-weight: 600;
}

.portfolio-card-content {
  padding: 1.5rem;
}

.portfolio-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.portfolio-card-content p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.portfolio-quote {
  padding: 2rem;
  border-left: 4px solid var(--yellow);
  background: var(--white);
  max-width: 600px;
}

.portfolio-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.portfolio-quote cite {
  font-size: 0.9rem;
  color: var(--gray-700);
  font-style: normal;
}

/* Bloc titre de section : barre jaune + titre (animation au scroll) */
.section-title-reveal {
  position: relative;
  margin-bottom: 2rem;
}

.section-title-accent {
  display: block;
  width: min(140px, 28vw);
  height: 5px;
  background: linear-gradient(90deg, var(--yellow-dark), var(--yellow));
  transform-origin: left center;
  margin-bottom: 0.85rem;
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(255, 191, 0, 0.35);
}

.section-title-reveal .section-title {
  margin-bottom: 0;
}

/* Qui suis-je ? */
.qui-suis-je {
  position: relative;
  z-index: 1;
  padding: var(--section-padding) 0;
  background: transparent;
}

.qui-suis-je-title {
  margin-bottom: 2rem;
}

.qui-suis-je-inner {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.qui-suis-je-left {
  flex-shrink: 0;
  text-align: center;
}

.qui-suis-je-portrait {
  position: relative;
  width: min(280px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--yellow);
}

.qui-suis-je-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qui-suis-je-portrait-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

.qui-suis-je-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.qui-suis-je-role {
  font-size: 0.95rem;
  color: var(--gray-700);
}

.qui-suis-je-bio {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.65;
  color: var(--text-secondary);
}

.qui-suis-je-bio p {
  margin: 0 0 1rem;
}

.qui-suis-je-bio p:last-child {
  margin-bottom: 0;
}

.qui-suis-je-quote {
  margin: 4rem 0 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(1.725rem, 3.3vw, 2.1rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--yellow-dark);
  text-align: center;
  max-width: 100%;
  margin-inline: auto;
}

.qui-suis-je-quote::before {
  content: none;
}

@media (max-width: 768px) {
  .qui-suis-je-inner {
    flex-direction: column;
    text-align: center;
  }

  .qui-suis-je-bio {
    text-align: center;
  }
}

/* Services */
.services {
  position: relative;
  z-index: 1;
  padding: var(--section-padding) 0;
  background: transparent;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 2rem;
}

.service-item {
  padding: 1.5rem;
  border: 2px solid var(--gray-200);
  transition: border-color var(--duration-normal) var(--ease-out-expo),
              background var(--duration-normal) var(--ease-out-expo),
              transform var(--duration-normal) var(--ease-out-expo);
}

.service-item:hover {
  border-color: var(--yellow);
  background: var(--yellow-soft);
  transform: translateX(4px);
}

.service-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow-dark);
  margin-bottom: 0.3rem;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
  color: var(--black);
}

.service-item p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.service-item .service-intro {
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.service-item .service-detail {
  margin: 0;
}

.services-quote {
  margin: 3.5rem 0 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(1.725rem, 3.3vw, 2.1rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--yellow-dark);
  text-align: center;
  max-width: 100%;
  margin-inline: auto;
}

.services-quote::before {
  content: none;
}

/* Contact */
.contact {
  position: relative;
  z-index: 1;
  padding: var(--section-padding) 0;
  background: transparent;
}

.contact-panels {
  margin-bottom: 2rem;
}

.contact-panel {
  display: none;
  animation: fadeIn 0.5s var(--ease-out-expo);
}

.contact-panel.active {
  display: block;
}

.contact-panel[hidden] {
  display: none !important;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.contact-embed {
  position: relative;
  width: 100%;
  min-height: 100%;
  border: 2px solid var(--yellow-dark);
  background: var(--white);
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact-embed {
    border-radius: 18px;
  }
}

.contact-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.typeform-embed {
  min-height: 500px;
}

.typeform-embed iframe {
  min-height: 500px;
}

@media (max-width: 767px) {
  .typeform-embed,
  .typeform-embed iframe {
    min-height: min(450px, 60vh);
  }
}

/* Calendly : hauteur suffisante pour voir l’intégralité du widget */
.calendly-embed {
  min-height: 750px;
  height: 750px;
}

#calendly-inline-container {
  width: 100%;
  height: 100%;
  min-height: 750px;
}

#calendly-inline-container iframe {
  width: 100%;
  height: 100%;
  min-height: 750px;
  border: none;
}

.calendly-embed iframe {
  min-height: 750px;
  height: 100%;
}

@media (max-width: 767px) {
  .calendly-embed {
    min-height: min(550px, 65vh);
    height: min(550px, 65vh);
  }

  #calendly-inline-container,
  #calendly-inline-container iframe,
  .calendly-embed iframe {
    min-height: min(550px, 65vh);
  }
}

@media (min-width: 768px) {
  .calendly-embed {
    min-height: 800px;
    height: 800px;
  }

  #calendly-inline-container,
  #calendly-inline-container iframe {
    min-height: 800px;
  }

  .calendly-embed iframe {
    min-height: 800px;
  }
}

.contact-embed-fallback {
  padding: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-embed-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-radius: 50px;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 8px 20px rgba(255, 191, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: transform var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo),
              background var(--duration-normal) var(--ease-out-expo);
}

.contact-embed-cta:hover {
  background: var(--yellow-bright);
  box-shadow: 0 12px 28px rgba(255, 191, 0, 0.5), 0 6px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  color: var(--black);
}

.contact-embed-cta svg {
  flex-shrink: 0;
}

.contact-cta {
  margin-top: 4rem;
  text-align: center;
}

/* Pop-up Calendly : coins arrondis */
.calendly-overlay .calendly-popup {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.calendly-overlay .calendly-popup-content {
  border-radius: 20px;
  overflow: hidden;
}

/* Footer */
.footer {
  padding: 3rem 0 2rem;
  background: var(--black);
  color: var(--white);
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: clamp(80px, 15vw, 150px);
  width: auto;
  display: block;
  opacity: 0.9;
  transition: opacity var(--duration-fast) var(--ease-out-expo);
}

.footer-logo:hover img {
  opacity: 1;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 480px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-socials {
    align-self: flex-start;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
}

.footer-legal {
  font-size: 0.85rem;
  color: var(--gray-200);
}

.footer-insta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-200);
  transition: color var(--duration-fast), transform var(--duration-normal) var(--ease-out-expo);
}

.footer-insta:hover {
  color: var(--yellow);
  transform: scale(1.15);
}

.footer-insta-icon {
  display: block;
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-tiktok svg {
  display: block;
}
