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

/* =========================
   NAVBAR
========================= */
body {
  font-family: "Inter", Arial, sans-serif;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #d0a545;
}

.nav-container {
  width: min(1180px, calc(100% - 48px));
  height: 86px;
  margin: 0 auto;

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

/* =========================
   LOGO
========================= */

.brand {
  display: inline-flex;
  align-items: center;

  width: 175px;

  text-decoration: none;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   DESKTOP NAVIGATION
========================= */

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;

  color: #243746;
  text-decoration: none;

  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;

  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.main-nav a:not(.nav-cta)::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 1px;

  background: #b58a35;

  transition: width 0.25s ease;
}

.main-nav a:not(.nav-cta):hover {
  color: #0b1f33;
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

/* =========================
   CTA
========================= */

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 17px;

  background: #0b1f33;
  color: #fff !important;

  border: 1px solid #0b1f33;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.nav-cta span {
  font-size: 16px;
  line-height: 1;

  transition: transform 0.25s ease;
}

.nav-cta:hover {
  background: #b58a35;
  border-color: #b58a35;
}

.nav-cta:hover span {
  transform: translate(2px, -2px);
}

/* =========================
   MOBILE BUTTON
========================= */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 0;

  border: 1px solid #dfe4e8;
  background: #fff;

  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  display: block;

  width: 19px;
  height: 1.5px;

  background: #0b1f33;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* =========================
   MOBILE OPEN STATE
========================= */

.menu-toggle.active span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .nav-container {
    height: 76px;
    width: min(100% - 32px, 1180px);
  }

  .brand {
    width: 155px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;

    top: 76px;
    left: 0;

    width: 100%;

    padding: 24px 24px 28px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    background: #fff;
    border-bottom: 1px solid #e8ebee;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 0;

    font-size: 15px;

    border-bottom: 1px solid #edf0f2;
  }

  .main-nav a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav .nav-cta {
    justify-content: center;

    margin-top: 18px;
    padding: 14px 18px;

    border-bottom: 0;
  }
}

@media (max-width: 480px) {
  .nav-container {
    width: calc(100% - 28px);
  }

  .brand {
    width: 140px;
  }

  .main-nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ========================================
   HERO
======================================== */

.hero {
  position: relative;

  min-height: calc(100vh - 86px);

  background: #f7f5ef;

  overflow: hidden;

  display: flex;
  align-items: center;
}

.hero-container {
  width: min(1180px, calc(100% - 48px));

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 40px;

  padding: 90px 0 100px;
}

/* ========================================
   HERO CONTENT
======================================== */

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 650px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;

  margin: 0 0 25px;

  color: #b58a35;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-label::before {
  content: "";

  width: 34px;
  height: 1px;

  background: #b58a35;
}

.hero h1 {
  margin: 0;

  color: #0b1f33;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(58px, 6.5vw, 88px);

  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -2px;
}

.hero h1 span {
  display: block;

  color: #b58a35;
}

.hero-description {
  max-width: 570px;

  margin: 30px 0 0;

  color: #536371;

  font-family: "Inter", Arial, sans-serif;

  font-size: 16px;

  line-height: 1.8;
}

/* ========================================
   HERO BUTTONS
======================================== */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 35px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-height: 52px;

  padding: 0 22px;

  font-family: "Inter", Arial, sans-serif;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.hero-btn-primary {
  background: #0b1f33;
  color: #ffffff;

  border: 1px solid #0b1f33;
}

.hero-btn-primary span {
  font-size: 17px;

  transition: transform 0.25s ease;
}

.hero-btn-primary:hover {
  background: #b58a35;
  border-color: #b58a35;

  transform: translateY(-2px);
}

.hero-btn-primary:hover span {
  transform: translate(2px, -2px);
}

.hero-btn-secondary {
  color: #0b1f33;

  border: 1px solid #cbd2d7;

  background: transparent;
}

.hero-btn-secondary:hover {
  border-color: #0b1f33;

  background: #ffffff;

  transform: translateY(-2px);
}

/* ========================================
   HERO NOTE
======================================== */

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-top: 40px;

  color: #7b858d;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;
}

.hero-note span {
  width: 7px;
  height: 7px;

  background: #b58a35;

  border-radius: 50%;
}

/* ========================================
   HERO IMAGE
======================================== */

.hero-visual {
  position: relative;

  min-height: 600px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;

  width: 100%;
  max-width: 570px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  position: relative;

  display: block;

  width: 100%;
  max-width: 570px;
  height: auto;

  object-fit: contain;

  z-index: 2;

  filter: drop-shadow(0 25px 30px rgba(11, 31, 51, 0.12));

  animation: heroImageFloat 5s ease-in-out infinite;
}

/* ========================================
   IMAGE DECORATION
======================================== */

.hero-visual::before {
  content: "";

  position: absolute;

  width: 390px;
  height: 390px;

  border: 1px solid rgba(181, 138, 53, 0.35);

  border-radius: 50%;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
}

.hero-visual::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  border: 1px solid rgba(11, 31, 51, 0.08);

  border-radius: 50%;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
}

/* ========================================
   SMALL BRAND ACCENT
======================================== */

.hero-accent {
  position: absolute;

  right: 0;
  bottom: 70px;

  z-index: 4;

  display: flex;
  flex-direction: column;
  align-items: flex-end;

  padding: 15px 18px;

  background: #0b1f33;

  color: #ffffff;
}

.hero-accent span {
  color: #d0a545;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 25px;
  font-weight: 700;

  line-height: 1;
}

.hero-accent small {
  margin-top: 5px;

  font-family: "Inter", Arial, sans-serif;

  font-size: 8px;
  letter-spacing: 1.5px;
}

/* ========================================
   ANIMATION
======================================== */

@keyframes heroImageFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 950px) {
  .hero-container {
    grid-template-columns: 1fr;

    padding: 80px 0;

    gap: 50px;
  }

  .hero-content {
    max-width: 700px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-image {
    max-width: 500px;
  }

  .hero-accent {
    right: 10%;
    bottom: 30px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {
  .hero {
    min-height: auto;
  }

  .hero-container {
    width: calc(100% - 32px);

    padding: 65px 0 75px;

    gap: 30px;
  }

  .hero-label {
    font-size: 10px;

    letter-spacing: 1.5px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 65px);

    letter-spacing: -1px;
  }

  .hero-description {
    margin-top: 24px;

    font-size: 15px;

    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;

    margin-top: 28px;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-note {
    margin-top: 28px;

    font-size: 11px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-image {
    max-width: 390px;
  }

  .hero-visual::before {
    width: 270px;
    height: 270px;
  }

  .hero-visual::after {
    width: 340px;
    height: 340px;
  }

  .hero-accent {
    right: 0;
    bottom: 15px;

    padding: 11px 14px;
  }
}

@media (max-width: 380px) {
  .hero-container {
    padding-top: 50px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-image {
    max-width: 330px;
  }
}
/* ========================================
   BUSINESS FOCUS
======================================== */

.business-focus {
  background: #ffffff;

  padding: 110px 0;
}

.focus-container {
  width: min(1180px, calc(100% - 48px));

  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;

  gap: 100px;

  align-items: start;
}

/* ========================================
   INTRO
======================================== */

.focus-intro {
  position: sticky;
  top: 120px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;

  margin: 0 0 24px;

  color: #b58a35;

  font-family: "Inter", Arial, sans-serif;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2px;
}

.section-label::before {
  content: "";

  width: 30px;
  height: 1px;

  background: #b58a35;
}

.focus-intro h2 {
  margin: 0;

  color: #0b1f33;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(46px, 5vw, 68px);

  font-weight: 600;

  line-height: 1;

  letter-spacing: -1.5px;
}

.focus-intro h2 span {
  display: block;

  color: #b58a35;
}

.focus-intro > p:last-child {
  max-width: 440px;

  margin: 28px 0 0;

  color: #667580;

  font-family: "Inter", Arial, sans-serif;

  font-size: 15px;

  line-height: 1.8;
}

/* ========================================
   SERVICES LIST
======================================== */

.focus-services {
  border-top: 1px solid #dfe4e7;
}

.focus-item {
  display: grid;

  grid-template-columns: 55px 1fr 35px;

  gap: 20px;

  align-items: start;

  padding: 30px 0;

  border-bottom: 1px solid #dfe4e7;

  transition:
    padding 0.3s ease,
    background 0.3s ease;
}

.focus-item:hover {
  padding-left: 12px;
  padding-right: 12px;

  background: #f7f5ef;
}

.focus-number {
  color: #b58a35;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1px;
}

.focus-item h3 {
  margin: 0 0 8px;

  color: #0b1f33;

  font-family: "Inter", Arial, sans-serif;

  font-size: 19px;
  font-weight: 600;
}

.focus-item p {
  max-width: 500px;

  margin: 0;

  color: #6c7881;

  font-family: "Inter", Arial, sans-serif;

  font-size: 14px;

  line-height: 1.7;
}

.focus-arrow {
  display: flex;

  justify-content: flex-end;

  color: #b58a35;

  font-size: 20px;

  transition: transform 0.3s ease;
}

.focus-item:hover .focus-arrow {
  transform: translate(3px, -3px);
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {
  .business-focus {
    padding: 85px 0;
  }

  .focus-container {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .focus-intro {
    position: static;
  }

  .focus-intro h2 {
    max-width: 650px;
  }

  .focus-intro > p:last-child {
    max-width: 600px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {
  .business-focus {
    padding: 75px 0;
  }

  .focus-container {
    width: calc(100% - 32px);

    gap: 40px;
  }

  .focus-intro h2 {
    font-size: 47px;

    letter-spacing: -1px;
  }

  .focus-intro > p:last-child {
    margin-top: 22px;

    font-size: 14px;
  }

  .focus-item {
    grid-template-columns: 35px 1fr;

    gap: 14px;

    padding: 25px 0;
  }

  .focus-arrow {
    display: none;
  }

  .focus-item h3 {
    font-size: 17px;
  }

  .focus-item p {
    font-size: 13px;
  }

  .focus-item:hover {
    padding-left: 0;
    padding-right: 0;

    background: transparent;
  }
}
/* ========================================
   ABOUT SECTION
======================================== */

.about-section {
  background: #0b1f33;
  color: #ffffff;

  padding: 120px 0 0;

  overflow: hidden;
}

.about-container {
  width: min(1180px, calc(100% - 48px));

  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  gap: 110px;

  padding-bottom: 110px;
}

/* ========================================
   HEADING
======================================== */

.about-heading .section-label {
  color: #d0a545;
}

.about-heading .section-label::before {
  background: #d0a545;
}

.about-heading h2 {
  margin: 0;

  max-width: 520px;

  color: #ffffff;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(50px, 5.5vw, 76px);

  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -1.5px;
}

.about-heading h2 span {
  display: block;

  color: #d0a545;
}

/* ========================================
   CONTENT
======================================== */

.about-content {
  max-width: 600px;

  padding-top: 38px;
}

.about-lead {
  margin: 0 0 28px;

  color: #ffffff;

  font-family: "Inter", Arial, sans-serif;

  font-size: 20px;

  line-height: 1.65;
}

.about-content > p:not(.about-lead) {
  margin: 0 0 20px;

  color: #aebbc5;

  font-family: "Inter", Arial, sans-serif;

  font-size: 14px;

  line-height: 1.85;
}

/* ========================================
   LINK
======================================== */

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-top: 18px;

  padding-bottom: 8px;

  color: #d0a545;

  border-bottom: 1px solid #d0a545;

  font-family: "Inter", Arial, sans-serif;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;

  transition:
    gap 0.25s ease,
    color 0.25s ease;
}

.about-link span {
  font-size: 17px;
}

.about-link:hover {
  gap: 17px;

  color: #ffffff;
}

/* ========================================
   DETAILS
======================================== */

.about-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.about-detail {
  padding: 35px max(24px, calc((100vw - 1180px) / 2));

  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-detail:first-child {
  padding-left: max(24px, calc((100vw - 1180px) / 2));
}

.about-detail:last-child {
  border-right: none;

  padding-right: max(24px, calc((100vw - 1180px) / 2));
}

.about-detail span {
  display: block;

  margin-bottom: 18px;

  color: #d0a545;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.5px;
}

.about-detail strong {
  display: block;

  margin-bottom: 8px;

  color: #ffffff;

  font-family: "Inter", Arial, sans-serif;

  font-size: 15px;
}

.about-detail p {
  max-width: 260px;

  margin: 0;

  color: #8798a5;

  font-size: 12px;

  line-height: 1.7;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {
  .about-section {
    padding-top: 90px;
  }

  .about-container {
    grid-template-columns: 1fr;

    gap: 30px;

    padding-bottom: 80px;
  }

  .about-heading h2 {
    max-width: 650px;
  }

  .about-content {
    padding-top: 0;

    max-width: 700px;
  }

  .about-details {
    grid-template-columns: 1fr;
  }

  .about-detail,
  .about-detail:first-child,
  .about-detail:last-child {
    padding: 28px 24px;

    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-detail:last-child {
    border-bottom: none;
  }

  .about-detail p {
    max-width: 500px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {
  .about-section {
    padding-top: 75px;
  }

  .about-container {
    width: calc(100% - 32px);

    gap: 35px;

    padding-bottom: 65px;
  }

  .about-heading h2 {
    font-size: 48px;

    letter-spacing: -1px;
  }

  .about-lead {
    font-size: 17px;

    line-height: 1.65;
  }

  .about-content > p:not(.about-lead) {
    font-size: 13px;

    line-height: 1.8;
  }

  .about-detail,
  .about-detail:first-child,
  .about-detail:last-child {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/* ========================================
   SERVICES
======================================== */

.services-section {
  background: #f7f5ef;
  padding: 120px 0;
}

.services-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* ========================================
   HEADER
======================================== */

.services-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;

  gap: 80px;

  align-items: end;

  margin-bottom: 75px;
}

.services-header h2 {
  max-width: 700px;

  margin: 0;

  color: #0b1f33;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(50px, 5.5vw, 76px);

  font-weight: 600;

  line-height: 0.98;

  letter-spacing: -1.5px;
}

.services-header h2 span {
  display: block;
  color: #b58a35;
}

.services-intro {
  max-width: 430px;

  margin: 0 0 5px;

  color: #667580;

  font-family: "Inter", Arial, sans-serif;

  font-size: 14px;

  line-height: 1.85;
}

/* ========================================
   SERVICE LIST
======================================== */

.services-list {
  border-top: 1px solid #cfd5d8;
}

.service-row {
  display: grid;

  grid-template-columns: 70px 1fr 60px;

  gap: 35px;

  padding: 42px 0;

  border-bottom: 1px solid #cfd5d8;

  transition:
    background 0.3s ease,
    padding 0.3s ease;
}

.service-row:hover {
  padding-left: 18px;
  padding-right: 18px;

  background: #ffffff;
}

/* ========================================
   NUMBER
======================================== */

.service-number {
  color: #b58a35;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1px;
}

/* ========================================
   SERVICE CONTENT
======================================== */

.service-main h3 {
  margin: 0 0 13px;

  color: #0b1f33;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 32px;

  font-weight: 600;

  line-height: 1.1;
}

.service-main p {
  max-width: 680px;

  margin: 0;

  color: #65737d;

  font-family: "Inter", Arial, sans-serif;

  font-size: 14px;

  line-height: 1.8;
}

/* ========================================
   TAGS
======================================== */

.service-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 22px;
}

.service-tags span {
  padding: 7px 11px;

  color: #52616c;

  border: 1px solid #d6dcdf;

  background: #ffffff;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  letter-spacing: 0.4px;
}

/* ========================================
   ACTION
======================================== */

.service-action {
  display: flex;

  justify-content: flex-end;

  align-items: flex-start;
}

.service-action span {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border: 1px solid #cfd5d8;

  color: #0b1f33;

  font-size: 19px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.service-row:hover .service-action span {
  background: #0b1f33;

  border-color: #0b1f33;

  color: #ffffff;

  transform: translate(3px, -3px);
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {
  .services-section {
    padding: 90px 0;
  }

  .services-header {
    grid-template-columns: 1fr;

    gap: 30px;

    margin-bottom: 55px;
  }

  .services-intro {
    max-width: 650px;
  }

  .service-row {
    grid-template-columns: 50px 1fr 50px;

    gap: 20px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {
  .services-section {
    padding: 75px 0;
  }

  .services-container {
    width: calc(100% - 32px);
  }

  .services-header {
    gap: 25px;

    margin-bottom: 45px;
  }

  .services-header h2 {
    font-size: 48px;

    letter-spacing: -1px;
  }

  .services-intro {
    font-size: 13px;
  }

  .service-row {
    grid-template-columns: 32px 1fr;

    gap: 15px;

    padding: 30px 0;
  }

  .service-row:hover {
    padding-left: 0;
    padding-right: 0;

    background: transparent;
  }

  .service-number {
    font-size: 10px;
  }

  .service-main h3 {
    font-size: 27px;
  }

  .service-main p {
    font-size: 13px;
  }

  .service-tags {
    margin-top: 18px;
  }

  .service-tags span {
    font-size: 9px;
  }

  .service-action {
    display: none;
  }
}
/* ========================================
   HOW WE WORK
======================================== */

.process-section {
  background: #ffffff;
  padding: 125px 0;
}

.process-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* ========================================
   HEADER
======================================== */

.process-header {
  display: grid;
  grid-template-columns: 1fr 0.75fr;

  gap: 100px;

  align-items: end;

  margin-bottom: 100px;
}

.process-header h2 {
  max-width: 600px;

  margin: 0;

  color: #0b1f33;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(52px, 5.5vw, 78px);

  font-weight: 600;

  line-height: 0.95;

  letter-spacing: -1.5px;
}

.process-header h2 span {
  color: #b58a35;
}

.process-header > p {
  max-width: 430px;

  margin: 0 0 5px;

  color: #687680;

  font-family: "Inter", Arial, sans-serif;

  font-size: 14px;

  line-height: 1.85;
}

/* ========================================
   PROCESS LIST
======================================== */

.process-list {
  border-top: 1px solid #d8dde0;
}

.process-item {
  display: grid;
  grid-template-columns: 120px 1fr;

  gap: 40px;

  min-height: 190px;

  border-bottom: 1px solid #d8dde0;
}

/* ========================================
   INDEX
======================================== */

.process-index {
  position: relative;

  padding-top: 35px;
}

.process-index span {
  color: #b58a35;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1px;
}

.process-line {
  position: absolute;

  top: 63px;
  left: 5px;

  width: 1px;
  height: calc(100% - 63px);

  background: #d8dde0;
}

/* ========================================
   CONTENT
======================================== */

.process-content {
  padding: 34px 0 40px;
}

.process-kicker {
  margin: 0 0 8px;

  color: #b58a35;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 2px;
}

.process-content h3 {
  margin: 0 0 12px;

  color: #0b1f33;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 34px;

  font-weight: 600;

  line-height: 1.1;
}

.process-content > p:last-child {
  max-width: 650px;

  margin: 0;

  color: #687680;

  font-family: "Inter", Arial, sans-serif;

  font-size: 14px;

  line-height: 1.8;
}

/* ========================================
   HOVER
======================================== */

.process-item {
  transition: background 0.3s ease;
}

.process-item:hover {
  background: #faf9f5;
}

.process-item:hover .process-index span {
  color: #0b1f33;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {
  .process-section {
    padding: 90px 0;
  }

  .process-header {
    grid-template-columns: 1fr;

    gap: 30px;

    margin-bottom: 65px;
  }

  .process-header > p {
    max-width: 650px;
  }

  .process-item {
    grid-template-columns: 80px 1fr;

    gap: 25px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {
  .process-section {
    padding: 75px 0;
  }

  .process-container {
    width: calc(100% - 32px);
  }

  .process-header {
    gap: 25px;

    margin-bottom: 50px;
  }

  .process-header h2 {
    font-size: 49px;

    letter-spacing: -1px;
  }

  .process-header > p {
    font-size: 13px;
  }

  .process-item {
    grid-template-columns: 42px 1fr;

    gap: 15px;

    min-height: 0;
  }

  .process-index {
    padding-top: 27px;
  }

  .process-line {
    top: 53px;

    left: 4px;
  }

  .process-content {
    padding: 26px 0 32px;
  }

  .process-content h3 {
    font-size: 28px;
  }

  .process-content > p:last-child {
    font-size: 13px;
  }
}
/* ========================================
   INDUSTRIES
======================================== */

.industries-section {
  background: #0b1f33;
  color: #ffffff;

  padding: 120px 0 0;
}

.industries-container {
  width: min(1180px, calc(100% - 48px));

  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  gap: 100px;

  padding-bottom: 100px;
}

/* ========================================
   INTRO
======================================== */

.industries-intro {
  max-width: 480px;
}

.industries-intro .section-label {
  color: #d0a545;
}

.industries-intro .section-label::before {
  background: #d0a545;
}

.industries-intro h2 {
  margin: 0;

  color: #ffffff;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(52px, 5.5vw, 76px);

  font-weight: 600;

  line-height: 0.97;

  letter-spacing: -1.5px;
}

.industries-intro h2 span {
  display: block;

  color: #d0a545;
}

.industries-intro > p:last-child {
  max-width: 430px;

  margin: 30px 0 0;

  color: #9eacb6;

  font-family: "Inter", Arial, sans-serif;

  font-size: 14px;

  line-height: 1.85;
}

/* ========================================
   INDUSTRY LIST
======================================== */

.industries-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.industry-item {
  display: grid;

  grid-template-columns: 50px 1fr 40px;

  align-items: center;

  gap: 20px;

  min-height: 85px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.18);

  color: #ffffff;

  text-decoration: none;

  transition:
    padding 0.3s ease,
    background 0.3s ease;
}

.industry-item:hover {
  padding-left: 18px;
  padding-right: 18px;

  background: rgba(255, 255, 255, 0.05);
}

.industry-number {
  color: #d0a545;

  font-family: "Inter", Arial, sans-serif;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1px;
}

.industry-name {
  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 28px;
  font-weight: 600;
}

.industry-arrow {
  display: flex;

  align-items: center;
  justify-content: flex-end;

  color: #d0a545;

  font-size: 20px;

  transition: transform 0.25s ease;
}

.industry-item:hover .industry-arrow {
  transform: translate(4px, -4px);
}

/* ========================================
   BOTTOM CTA
======================================== */

.industries-bottom {
  min-height: 105px;

  padding: 0 max(24px, calc((100vw - 1180px) / 2));

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.industries-bottom p {
  margin: 0;

  color: #8496a3;

  font-family: "Inter", Arial, sans-serif;

  font-size: 13px;
}

.industries-bottom a {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  color: #d0a545;

  font-family: "Inter", Arial, sans-serif;

  font-size: 13px;
  font-weight: 600;

  text-decoration: none;
}

.industries-bottom a span {
  font-size: 17px;

  transition: transform 0.25s ease;
}

.industries-bottom a:hover span {
  transform: translate(3px, -3px);
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {
  .industries-section {
    padding-top: 90px;
  }

  .industries-container {
    grid-template-columns: 1fr;

    gap: 60px;

    padding-bottom: 80px;
  }

  .industries-intro {
    max-width: 650px;
  }

  .industries-intro > p:last-child {
    max-width: 600px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {
  .industries-section {
    padding-top: 75px;
  }

  .industries-container {
    width: calc(100% - 32px);

    gap: 45px;

    padding-bottom: 60px;
  }

  .industries-intro h2 {
    font-size: 49px;

    letter-spacing: -1px;
  }

  .industries-intro > p:last-child {
    margin-top: 24px;

    font-size: 13px;
  }

  .industry-item {
    grid-template-columns: 35px 1fr 25px;

    gap: 12px;

    min-height: 75px;
  }

  .industry-item:hover {
    padding-left: 0;
    padding-right: 0;

    background: transparent;
  }

  .industry-name {
    font-size: 24px;
  }

  .industry-arrow {
    font-size: 17px;
  }

  .industries-bottom {
    min-height: 130px;

    padding: 25px 16px;

    flex-direction: column;

    align-items: flex-start;
    justify-content: center;

    gap: 12px;
  }
}
/* ========================================
   WHY US
======================================== */

.why-section {
  background: #ffffff;

  padding: 125px 0;
}

.why-container {
  width: min(1180px, calc(100% - 48px));

  margin: 0 auto;
}

/* ========================================
   HEADER
======================================== */

.why-header {
  display: grid;

  grid-template-columns: 1fr 0.7fr;

  gap: 100px;

  align-items: end;

  padding-bottom: 85px;
}

.why-header h2 {
  max-width: 720px;

  margin: 0;

  color: #0b1f33;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(52px, 5.5vw, 78px);

  font-weight: 600;

  line-height: 0.96;

  letter-spacing: -1.5px;
}

.why-header h2 span {
  display: block;

  color: #b58a35;
}

.why-header > p:last-child {
  max-width: 420px;

  margin: 0 0 5px;

  color: #687680;

  font-family: "Inter", Arial, sans-serif;

  font-size: 14px;

  line-height: 1.85;
}

/* ========================================
   GRID
======================================== */

.why-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid #d8dde0;
  border-left: 1px solid #d8dde0;
}

.why-item {
  min-height: 310px;

  padding: 32px;

  border-right: 1px solid #d8dde0;
  border-bottom: 1px solid #d8dde0;

  transition: background 0.3s ease;
}

.why-item:hover {
  background: #f7f5ef;
}

/* ========================================
   TOP
======================================== */

.why-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-bottom: 60px;
}

.why-top > span {
  color: #b58a35;

  font-family: "Inter", Arial, sans-serif;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.5px;
}

.why-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  border: 1px solid #cfd6da;

  color: #0b1f33;

  font-size: 18px;

  font-weight: 300;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.why-item:hover .why-icon {
  background: #0b1f33;

  color: #ffffff;

  transform: rotate(45deg);
}

/* ========================================
   CONTENT
======================================== */

.why-item h3 {
  max-width: 360px;

  margin: 0 0 13px;

  color: #0b1f33;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 31px;

  font-weight: 600;

  line-height: 1.05;
}

.why-item p {
  max-width: 430px;

  margin: 0;

  color: #687680;

  font-family: "Inter", Arial, sans-serif;

  font-size: 13px;

  line-height: 1.8;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {
  .why-section {
    padding: 90px 0;
  }

  .why-header {
    grid-template-columns: 1fr;

    gap: 30px;

    padding-bottom: 60px;
  }

  .why-header > p:last-child {
    max-width: 650px;
  }

  .why-item {
    min-height: 290px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {
  .why-section {
    padding: 75px 0;
  }

  .why-container {
    width: calc(100% - 32px);
  }

  .why-header {
    gap: 25px;

    padding-bottom: 45px;
  }

  .why-header h2 {
    font-size: 49px;

    letter-spacing: -1px;
  }

  .why-header > p:last-child {
    font-size: 13px;
  }

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

  .why-item {
    min-height: auto;

    padding: 25px 20px 30px;
  }

  .why-top {
    margin-bottom: 45px;
  }

  .why-item h3 {
    font-size: 28px;
  }

  .why-item p {
    font-size: 13px;
  }
}
/* ========================================
   FAQ
======================================== */

.faq-section {
  background: #f7f5ef;
  padding: 120px 0;
}

.faq-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  gap: 110px;
}

/* ========================================
   HEADER
======================================== */

.faq-header {
  max-width: 450px;
}

.faq-header h2 {
  margin: 0;

  color: #0b1f33;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(52px, 5.5vw, 76px);

  font-weight: 600;

  line-height: 0.97;

  letter-spacing: -1.5px;
}

.faq-header h2 span {
  display: block;
  color: #b58a35;
}

.faq-header > p:last-child {
  margin: 28px 0 0;

  color: #687680;

  font-family: "Inter", Arial, sans-serif;

  font-size: 14px;

  line-height: 1.85;
}

/* ========================================
   FAQ LIST
======================================== */

.faq-list {
  border-top: 1px solid #cfd5d8;
}

.faq-item {
  border-bottom: 1px solid #cfd5d8;
}

/* ========================================
   QUESTION
======================================== */

.faq-question {
  width: 100%;

  padding: 27px 0;

  border: 0;

  background: transparent;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  text-align: left;

  color: #0b1f33;

  font-family: "Inter", Arial, sans-serif;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  border: 1px solid #cbd2d6;

  color: #0b1f33;

  font-size: 19px;
  font-weight: 300;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

/* ========================================
   ANSWER
======================================== */

.faq-answer {
  display: grid;

  grid-template-rows: 0fr;

  transition: grid-template-rows 0.35s ease;
}

.faq-answer p {
  overflow: hidden;

  max-width: 650px;

  margin: 0;

  color: #687680;

  font-family: "Inter", Arial, sans-serif;

  font-size: 13px;

  line-height: 1.8;

  transition:
    padding 0.35s ease,
    opacity 0.25s ease;

  opacity: 0;
}

/* ========================================
   ACTIVE
======================================== */

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding: 0 45px 28px 0;

  opacity: 1;
}

.faq-item.active .faq-icon {
  background: #0b1f33;

  color: #ffffff;

  transform: rotate(45deg);
}

/* ========================================
   HOVER
======================================== */

.faq-question:hover {
  color: #b58a35;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {
  .faq-section {
    padding: 90px 0;
  }

  .faq-container {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .faq-header {
    max-width: 650px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {
  .faq-section {
    padding: 75px 0;
  }

  .faq-container {
    width: calc(100% - 32px);

    gap: 40px;
  }

  .faq-header h2 {
    font-size: 49px;

    letter-spacing: -1px;
  }

  .faq-header > p:last-child {
    font-size: 13px;
  }

  .faq-question {
    padding: 23px 0;

    font-size: 14px;

    gap: 15px;
  }

  .faq-icon {
    width: 29px;
    height: 29px;

    font-size: 17px;
  }

  .faq-item.active .faq-answer p {
    padding-right: 20px;
    padding-bottom: 24px;
  }

  .faq-answer p {
    font-size: 12px;
  }
}
/* ========================================
   CONTACT
======================================== */

.contact-section {
  background: #0b1f33;
  color: #ffffff;

  padding: 120px 0;
}

.contact-container {
  width: min(1180px, calc(100% - 48px));

  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;

  gap: 110px;
}

/* ========================================
   INTRO
======================================== */

.contact-intro {
  max-width: 500px;
}

.contact-intro .section-label {
  color: #d0a545;
}

.contact-intro .section-label::before {
  background: #d0a545;
}

.contact-intro h2 {
  margin: 0;

  color: #ffffff;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(55px, 5.8vw, 80px);

  font-weight: 600;

  line-height: 0.95;

  letter-spacing: -1.5px;
}

.contact-intro h2 span {
  display: block;

  color: #d0a545;
}

.contact-intro > p:not(.section-label) {
  max-width: 440px;

  margin: 30px 0 0;

  color: #9eacb6;

  font-family: "Inter", Arial, sans-serif;

  font-size: 14px;

  line-height: 1.85;
}

/* ========================================
   DIRECT CONTACT
======================================== */

.contact-direct {
  margin-top: 55px;

  padding-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-direct > span {
  display: block;

  margin-bottom: 12px;

  color: #718594;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 1.8px;
}

.contact-direct a {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  color: #ffffff;

  font-family: "Inter", Arial, sans-serif;

  font-size: 16px;
  font-weight: 600;

  text-decoration: none;
}

.contact-direct a > span {
  color: #d0a545;

  font-size: 18px;

  transition: transform 0.25s ease;
}

.contact-direct a:hover > span {
  transform: translate(4px, -4px);
}

/* ========================================
   FORM
======================================== */

.contact-form-wrapper {
  padding: 42px;

  background: #ffffff;

  color: #0b1f33;
}

.contact-form {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

.form-group {
  display: flex;

  flex-direction: column;

  gap: 9px;
}

.form-group label {
  color: #52616c;

  font-family: "Inter", Arial, sans-serif;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 14px 0;

  border: 0;

  border-bottom: 1px solid #ccd3d7;

  outline: none;

  background: transparent;

  color: #0b1f33;

  font-family: "Inter", Arial, sans-serif;

  font-size: 14px;

  border-radius: 0;

  transition: border-color 0.25s ease;
}

.form-group textarea {
  resize: vertical;

  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #b58a35;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a8b2b8;
}

/* ========================================
   SELECT
======================================== */

.form-group select {
  cursor: pointer;

  appearance: none;

  background-image:
    linear-gradient(45deg, transparent 50%, #687680 50%),
    linear-gradient(135deg, #687680 50%, transparent 50%);

  background-position:
    calc(100% - 7px) 55%,
    calc(100% - 2px) 55%;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat: no-repeat;
}

/* ========================================
   SUBMIT
======================================== */

.contact-submit {
  width: 100%;

  margin-top: 8px;

  padding: 17px 20px;

  border: 1px solid #0b1f33;

  background: #0b1f33;

  color: #ffffff;

  display: flex;

  align-items: center;
  justify-content: space-between;

  font-family: "Inter", Arial, sans-serif;

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.contact-submit > span:last-child {
  color: #d0a545;

  font-size: 18px;

  transition: transform 0.25s ease;
}

.contact-submit:hover {
  background: #d0a545;

  border-color: #d0a545;

  color: #0b1f33;
}

.contact-submit:hover > span:last-child {
  color: #0b1f33;

  transform: translate(4px, -4px);
}

/* ========================================
   FORM NOTE
======================================== */

.form-note {
  margin: -10px 0 0;

  color: #8b979d;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;

  text-align: center;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {
  .contact-section {
    padding: 90px 0;
  }

  .contact-container {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .contact-intro {
    max-width: 700px;
  }

  .contact-intro > p:not(.section-label) {
    max-width: 600px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {
  .contact-section {
    padding: 75px 0;
  }

  .contact-container {
    width: calc(100% - 32px);

    gap: 45px;
  }

  .contact-intro h2 {
    font-size: 50px;

    letter-spacing: -1px;
  }

  .contact-intro > p:not(.section-label) {
    font-size: 13px;
  }

  .contact-direct {
    margin-top: 40px;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .contact-form {
    gap: 22px;
  }
}
/* ========================================
   FOOTER
======================================== */

.site-footer {
  background: #071725;

  color: #ffffff;
}

/* ========================================
   MAIN FOOTER
======================================== */

.footer-main {
  width: min(1180px, calc(100% - 48px));

  margin: 0 auto;

  padding: 80px 0;

  display: grid;

  grid-template-columns: 1.5fr 0.8fr 1fr 0.9fr;

  gap: 70px;
}

/* ========================================
   BRAND
======================================== */

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: inline-block;

  margin-bottom: 22px;
}

.footer-logo img {
  display: block;

  width: 185px;
  height: auto;

  object-fit: contain;
}

.footer-brand > p {
  margin: 0;

  color: #8496a3;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;

  line-height: 1.8;
}

/* ========================================
   WHATSAPP
======================================== */

.footer-whatsapp {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 25px;

  padding-bottom: 7px;

  border-bottom: 1px solid #b58a35;

  color: #d0a545;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;
  font-weight: 600;

  text-decoration: none;
}

.footer-whatsapp span {
  font-size: 16px;

  transition: transform 0.25s ease;
}

.footer-whatsapp:hover span {
  transform: translate(3px, -3px);
}

/* ========================================
   COLUMNS
======================================== */

.footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}

.footer-column h3 {
  margin: 5px 0 22px;

  color: #ffffff;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 1.8px;

  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  margin-bottom: 11px;

  color: #8496a3;

  font-family: "Inter", Arial, sans-serif;

  font-size: 12px;

  line-height: 1.5;

  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #d0a545;
}

/* ========================================
   CONTACT
======================================== */

.footer-contact a:first-of-type {
  color: #ffffff;

  font-weight: 600;
}

.footer-contact span {
  color: #667986;
}

/* ========================================
   BOTTOM
======================================== */

.footer-bottom {
  width: min(1180px, calc(100% - 48px));

  margin: 0 auto;

  min-height: 75px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;
}

.footer-bottom p {
  margin: 0;

  color: #5f717e;

  font-family: "Inter", Arial, sans-serif;

  font-size: 10px;
}

.footer-bottom-links {
  display: flex;

  gap: 20px;
}

.footer-bottom-links a {
  color: #718390;

  font-size: 10px;

  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #d0a545;
}

.footer-credit {
  text-align: right;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 950px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 45px;
  }

  .footer-brand {
    grid-row: span 2;
  }

  .footer-contact {
    grid-column: 2 / 4;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {
  .footer-main {
    width: calc(100% - 32px);

    padding: 60px 0;

    grid-template-columns: 1fr 1fr;

    gap: 45px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;

    grid-row: auto;

    max-width: 450px;
  }

  .footer-logo img {
    width: 165px;
  }

  .footer-column h3 {
    margin-bottom: 18px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    width: calc(100% - 32px);

    padding: 25px 0;

    flex-direction: column;

    align-items: flex-start;

    gap: 15px;
  }

  .footer-credit {
    display: none;
  }

  .footer-bottom-links {
    order: -1;
  }
}
