/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  background-color: #F2F2F2;
  color: #3a3a3a;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ─── Background Masks ─────────────────────────────────────────── */
.mask {
  position: fixed;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.mask--tr {
  top: 0;
  right: 0;
  width: clamp(300px, 42vw, 620px);
}

.mask--bl {
  bottom: 0;
  left: 0;
  width: clamp(280px, 40vw, 580px);
}

/* ─── Navbar ───────────────────────────────────────────────────── */
.navbar-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 18px 24px 0;
}

.navbar {
  width: 100%;
  max-width: 1100px;
  background: #fff;
  border-radius: 999px;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.navbar-logo {
  height: 34px;
  width: auto;
}

.navbar-email {
  font-size: 0.95rem;
  font-weight: 400;
  color: #3a3a3a;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.navbar-email:hover {
  color: #E85D11;
}

/* ─── Main ─────────────────────────────────────────────────────── */
.main {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

/* ─── 3-column grid ────────────────────────────────────────────── */
.content-grid {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

/* Left */
.col--left {
  display: flex;
  align-items: center;
}

.description {
  font-size: clamp(0.82rem, 1.1vw, 1rem);
  line-height: 1.7;
  color: #3a3a3a;
  max-width: 340px;
}

/* Center */
.col--center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center-logo {
  width: clamp(140px, 14vw, 200px);
  height: auto;
}

/* Right */
.col--right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.hq-title {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: #E85D11;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.hq-address {
  font-style: normal;
  font-size: clamp(0.82rem, 1vw, 0.97rem);
  line-height: 1.8;
  color: #3a3a3a;
}

/* ─── Footer ───────────────────────────────────────────────────── */
.footer-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 0 24px 18px;
}

.footer {
  width: 100%;
  max-width: 1100px;
  background: #fff;
  border-radius: 999px;
  padding: 14px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.footer-legal {
  font-size: clamp(0.6rem, 0.75vw, 0.75rem);
  color: #555;
  line-height: 1.5;
  margin-bottom: 4px;
}

.footer-links {
  font-size: clamp(0.6rem, 0.75vw, 0.75rem);
  color: #555;
}

.footer-links a {
  color: #555;
  text-decoration: none;
}

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

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  body {
    max-height: none;
    overflow: auto;
    min-height: 100svh;
  }

  .navbar {
    border-radius: 16px;
    padding: 10px 20px;
  }

  .navbar-logo {
    height: 28px;
  }

  .navbar-email {
    font-size: 0.82rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    padding: 32px 0;
  }

  .col--left {
    justify-content: center;
  }

  .description {
    max-width: 100%;
    text-align: center;
  }

  .col--right {
    align-items: center;
    text-align: center;
  }

  .center-logo {
    width: clamp(120px, 40vw, 180px);
  }

  .footer {
    border-radius: 16px;
    padding: 14px 20px;
  }

  .footer-legal,
  .footer-links {
    font-size: 0.65rem;
  }

  .mask--tr {
    width: clamp(180px, 60vw, 320px);
    opacity: 0.7;
  }

  .mask--bl {
    width: clamp(160px, 55vw, 300px);
    opacity: 0.7;
  }
}

@media (max-width: 480px) {
  .navbar-wrap {
    padding: 12px 12px 0;
  }

  .footer-wrap {
    padding: 0 12px 12px;
  }
}
