* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {

  --container-width: 1440px;


  --color-bg: #2A1F1B;
  --color-border: rgba(217, 200, 181, 0.4);
  --color-divider: rgba(217, 200, 181, 0.2);


  --color-text-headings-supporting: #F6F1EA;
  --color-text-body: #ffffff;
  --color-text-label: #D9C8B5;

}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text-body);
}

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

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

ul {
  list-style: none;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid #D9C8B5;
  outline-offset: 4px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  color: var(--color-text-headings-supporting);
}

h1 {
  font-size: 64px;
  line-height: 72px;
  font-weight: 400;
}

h2 {
  font-size: 52px;
  line-height: 64px;
  font-weight: 600;
}

h3 {
  font-size: 44px;
  line-height: 48px;
  font-weight: 600;
}

h4 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
}

.label {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-label);
}

.supporting-text {
  font-size: 20px;
  line-height: 28px;
  color: var(--color-text-headings-supporting);
}

p {
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text-body);
}

.cta {
  background-color: #D9C8B5;
  color: #2A1F1B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
}


/* Header */
.navbar {
  position: relative;
}

.navbar-container {
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  color: #D9C8B5;
  font-size: 32px;
  letter-spacing: 0.02em;
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #F6F1EA;
  font-size: 16px;
  font-weight: 500;
}

.nav-links a {
  padding: 8px 12px;
  transition: background-color 0.2s ease;
}

.nav-links a:hover {
  background-color: rgb(255 255 255 / 12%);
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  border: none;
  outline: none;
  justify-content: center;
  align-items: center;
  background: transparent;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}

.burger-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.burger-icon span {
  width: 32px;
  height: 4px;
  background-color: #D9C8B5;
  border-radius: 999px;
  display: block;
}

.close-icon {
  display: none;
  position: relative;
  width: 28px;
  height: 28px;
}

.close-icon span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 4px;
  background-color: #D9C8B5;
  border-radius: 999px;
}

.close-icon span:nth-child(1) {
  transform: rotate(45deg);
}

.close-icon span:nth-child(2) {
  transform: rotate(-45deg);
}

.nav-toggle.active .burger-icon {
  display: none;
}

.nav-toggle.active .close-icon {
  display: block;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  width: min(320px, 100%);
  height: 100vh;
  background-color: #D9C8B5;
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;

  z-index: 1000;
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu a {
  text-decoration: none;
  color: #2A1F1B;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 8px 12px;
  transition: transform 0.2s ease;
}

.mobile-menu a:hover {
  transform: translateX(4px);
  text-decoration: underline;
  color: hsl(15, 21%, 29%);
}

.mobile-buttons {
  margin-top: 12px;
}

.mobile-buttons a {
  background-color: #2A1F1B;
  color: #D9C8B5;
}

.mobile-buttons .cta:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: #D9C8B5;
}


/* Hero-section */
.hero {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 2s ease,
    transform 8s linear;

}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-title {
  max-width: 620px;
  margin-bottom: 24px;
}

.hero-supporting-text {
  margin-bottom: 40px;
}


/* Design Ideas section */
.ideas {
  padding: 96px 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.ideas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.ideas-header-left {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 48px;
  margin-right: 220px;
}

.ideas-header-left::after {
  content: "";
  height: 1px;
  background-color: var(--color-divider);
  flex: 1;
}


.ideas-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ideas-text {
  font-size: 20px;
  line-height: 28px;
  color: #F6F1EA;
  transition: color 0.2s ease;
}

.ideas-link:hover .ideas-text {
  color: #D9C8B5;
}


.ideas-link img {
  transition: transform 0.2s ease;
}

.ideas-link:hover img {
  transform: translateX(4px);
}

.ideas-grid {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: 24px;
}

.living-rooms {
  grid-row: span 2;
}

.idea-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.idea-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 200, 181, 0.6);
}

.idea-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.4) 40%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}


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

.idea-content {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.idea-content h4 {
  transition: color 0.2s ease;
}

.idea-card:hover h4 {
  color: #D9C8B5;
}

.idea-content img {
  width: 24px;
  height: auto;
  transition: transform 0.2s ease;
}

.idea-arrow {
  transition: transform 0.2s ease;
}

.idea-card:hover .idea-arrow {
  transform: translateX(4px);
}

/* Project section */
.project {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.project-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.project-grid {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 44px;
}

.project-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
  gap: 16px;
}

.project-image {
  width: 100%;
  height: auto;
  display: block;
}

.project-image-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.project-cta {
  display: flex;
  justify-content: center;
}


/* Why Choose Us section */
.why-choose-us {
  padding: 80px 0 60px;
  overflow: hidden;
}

.why-choose-us-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.why-choose-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid var(--color-divider);
}

.benefit-card:last-child {
  border-right: none;
}


.benefit-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.benefit-content p {
  max-width: 200px;
}


/* Process section */
.process {
  padding: 60px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.process-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-card::after {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(50% + 36px);
  width: calc(100% - 52px);
  height: 1px;
  background-color: var(--color-divider);
}

.process-card:last-child::after {
  display: none;
}

.process-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
}

.process-card h3 {
  margin-bottom: 20px;
}

.process-card p {
  max-width: 180px;
  margin: 12px auto 0;
}


/* Testimonial Section */
.testimonial {
  padding: 80px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

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

.testimonial-label {
  margin-bottom: 12px;
}

.testimonial-title {
  max-width: 328px;
  margin-bottom: 16px;
}

.testimonial-supporting-text {
  max-width: 328px;
  margin-bottom: 40px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 28px;
}

.testimonial-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
}

.testimonial-btn img {
  transition: transform 0.2s ease;
}

.testimonial-btn:first-child:hover img {
  transform: translateX(-4px);
}

.testimonial-btn:last-child:hover img {
  transform: translateX(4px);
}

.testimonial-right {
  max-width: 620px;
}

.testimonial-quote-icon {
  margin-bottom: 8px;
}

.testimonial-quote {
  max-width: 478px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.testimonial-quote p {
  font-size: 40px;
  line-height: 48px;
  font-family: "Cormorant Garamond", serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 24px;
}

.testimonial-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Consultation Section */
.consultation {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.consultation-image {
  position: absolute;
  inset: 0;
}

.consultation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultation-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  max-width: 684px;
  height: 100%;
  background: #2A1F1B;
  z-index: 1;
}

.consultation-content {
  position: relative;
  z-index: 2;
  padding-left: 116px;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.consultation-title {
  text-wrap: balance;
  max-width: 700px;
  margin-bottom: 24px;
}

.consultation-content p {
  max-width: 340px;
  margin-bottom: 40px;
}

/* Footer */
.footer {
  padding: 80px 0 0;
  overflow: hidden;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--color-border);
}

.footer-hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-logo {
  color: #D9C8B5;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.footer-description {
  max-width: 240px;
}

.footer-socials {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.footer-socials img {
  display: block;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 20px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-legal a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--color-divider);
  margin-left: 16px;
}

.footer a,
.nav-links a,
.mobile-menu a {
  transition: color .2s ease;
}

.footer a:hover {
  color: #D9C8B5;
}



/* Responsive: 1200px */
@media (max-width: 1200px) {
  .container {
    padding: 0 80px;
  }

  /* Header */
  .nav-links,
  .nav-right>.cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-logo,
  .cta {
    white-space: nowrap;
  }

  /* Design Ideas section */
  .ideas-header-left {
    gap: 32px;
    margin-right: 120px;
  }


}


/* Responsive: 1024px */
@media (max-width: 1024px) {
  .container {
    padding: 0 48px;
  }

  h1 {
    font-size: 56px;
    line-height: 64px;
  }

  h2 {
    font-size: 44px;
    line-height: 52px;
  }


  /* Hero-section */
  .hero-title {
    max-width: 560px;
  }


  /* Design Ideas section */
  .ideas-header-left {
    gap: 32px;
    margin-right: 60px;
  }

  .ideas-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 320px 220px 220px;
  }

  .living-rooms {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  /* Project section */
  .project-grid {
    gap: 24px;
  }

  .project-card {
    flex: 1;
  }

  .project-image {
    max-width: 100%;
  }

  /* Why Choose Us section */
  .why-choose-us-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefit-card {
    padding: 0 16px;
  }

  .benefit-content h4 {
    font-size: 28px;
    line-height: 36px;
  }

  /* Process section */
  .process-grid {
    gap: 16px;
  }

  .process-card p {
    max-width: 160px;
  }

  /* Testimonial Section */
  .testimonial-container {
    gap: 48px;
  }

  .testimonial-quote p {
    font-size: 36px;
    line-height: 44px;
  }

  /* Consultation Section */
  .consultation {
    min-height: 640px;
  }

  .consultation-content {
    padding-left: 80px;
    min-height: 640px;
  }

  .consultation-title {
    max-width: 640px;
  }

  .consultation-content p {
    max-width: 300px;
  }

  /* Footer */
  .footer-top {
    gap: 48px;
  }

  .footer-logo {
    font-size: 28px;
  }

  .footer-description {
    max-width: 220px;
  }

}


/* Responsive: 768px */
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  h1 {
    font-size: 48px;
    line-height: 56px;
  }

  h2 {
    font-size: 40px;
    line-height: 48px;
  }

  /* Hero-section */
  .hero {
    height: 650px;
  }

  .hero-title {
    max-width: 500px;
    font-size: 48px;
    line-height: 56px;
  }

  .hero-supporting-text {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 32px;
  }

  /* Design Ideas section */
  .ideas {
    padding: 80px 0;
  }


  .ideas-header-left {
    gap: 16px;
    margin-right: 28px;
  }

  .ideas-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

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

  .idea-card {
    flex: 0 0 85%;
    height: 420px;
    scroll-snap-align: start;
  }

  .living-rooms {
    height: 420px;
  }

  /* Project section */
  .project-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

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

  .project-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
  }

  /* Why Choose Us section */
  .why-choose-us-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .benefit-card {
    width: 100%;
    min-height: 110px;
    padding: 20px;
    border: 1px solid var(--color-divider);
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    text-align: left;
  }

  .benefit-card:last-child {
    border-right: 1px solid var(--color-divider);
  }

  .benefit-image {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .benefit-content {
    align-items: flex-start;
    gap: 4px;
    text-align: left;
  }

  .benefit-content h4 {
    font-size: 24px;
    line-height: 30px;
  }

  .benefit-content p {
    max-width: none;
    font-size: 15px;
    line-height: 22px;
  }

  /* Process section */
  /* Process section */
  .process-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .process-card {
    width: 100%;
    min-height: 110px;
    padding: 20px;
    border: 1px solid var(--color-divider);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-areas:
      "icon number"
      "icon title"
      "icon description";
    column-gap: 20px;
    align-items: center;
    text-align: left;
  }

  .process-card::after {
    display: none;
  }

  .process-icon {
    grid-area: icon;
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .process-card h3 {
    grid-area: number;
    margin: 0;
    font-size: 18px;
    line-height: 22px;
  }

  .process-card h4 {
    grid-area: title;
    margin: 0;
    font-size: 24px;
    line-height: 30px;
  }

  .process-card p {
    grid-area: description;
    max-width: none;
    margin: 0;
    font-size: 15px;
    line-height: 22px;
  }

  /* Testimonial Section */
  .testimonial-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .testimonial-left,
  .testimonial-right {
    max-width: 100%;
  }

  .testimonial-title {
    max-width: 500px;
  }

  .testimonial-supporting-text {
    max-width: 500px;
  }

  .testimonial-quote {
    max-width: 100%;
  }

  .testimonial-quote p {
    font-size: 32px;
    line-height: 40px;
  }

  /* Consultation Section */
  .consultation {
    min-height: 560px;
  }

  .consultation-content {
    padding-left: 40px;
    min-height: 560px;
  }

  .consultation-title {
    max-width: 420px;
  }

  .consultation-content p {
    max-width: 260px;
  }

  /* Footer */
  .footer-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-legal {
    gap: 16px;
  }

}

/* Responsive: 600px */
@media (max-width: 600px) {

  /* Design Ideas Section */
  .ideas-header-left::after {
    display: none;
  }

  .ideas-header-left {
    margin-right: 0;
  }

}


/* Responsive: 480px */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 40px;
    line-height: 48px;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
  }

  h3 {
    font-size: 28px;
    line-height: 36px;
  }

  /* Header */
  .nav-logo {
    font-size: 24px;
  }

  /* Hero-section */
  .hero {
    height: 600px;
  }

  .hero-title {
    max-width: 100%;
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 20px;
  }

  .hero-supporting-text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 28px;
  }

  /* Design Ideas section */
  .ideas {
    padding: 64px 0;
  }

  .ideas-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .idea-card {
    flex: 0 0 90%;
    height: 300px;
  }

  .idea-content h4 {
    font-size: 24px;
    line-height: 32px;
  }

  /* Project Section */
  .project-card {
    flex: 0 0 90%;
  }

  /* Why Choose Us section */

  .benefit-content h4 {
    font-size: 24px;
    line-height: 32px;
  }

  /* Process section */
  .process {
    padding: 64px 0;
  }


  /* Testimonial Section */
  .testimonial {
    padding: 64px 0;
  }

  .testimonial-container {
    gap: 36px;
  }

  .testimonial-supporting-text {
    margin-bottom: 32px;
  }

  .testimonial-controls {
    gap: 20px;
  }

  .testimonial-btn img {
    width: 52px;
    height: 52px;
  }

  .testimonial-quote p {
    font-size: 28px;
    line-height: 36px;
  }

  .testimonial-author {
    gap: 16px;
  }

  .testimonial-avatar {
    width: 72px;
    height: 72px;
  }

  /* Consultation Section */
  .consultation {
    min-height: 460px;
  }

  .consultation-content {
    min-height: 460px;
  }

  .consultation-title {
    max-width: 300px;
  }

  .consultation-content p {
    max-width: 200px;
  }

  /* Footer */
  .footer {
    padding: 64px 0 0;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 64px;
  }

  .footer-hero {
    gap: 24px;
  }

  .footer-logo {
    font-size: 28px;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-socials {
    gap: 20px;
  }

  .footer-column {
    gap: 12px;
  }

  .footer-column ul {
    gap: 6px;
  }

  .footer-bottom {
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-legal a:not(:last-child)::after {
    margin-left: 12px;
  }

}

/* Responsive: 375px */
@media (max-width: 375px) {

  .hero-title {
    font-size: 36px;
    line-height: 44px;
  }

  .hero-supporting-text {
    font-size: 15px;
    line-height: 22px;
  }

  /* Footer */
  .footer-logo {
    font-size: 24px;
  }

  .footer-socials {
    gap: 16px;
  }

  .footer-socials img {
    width: 24px;
    height: 24px;
  }

  .footer-bottom {
    font-size: 13px;
    line-height: 18px;
  }
}