@font-face {
  font-family: "Lato";
  src: url("../google_fonts/Lato-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Lato";
  src: url("../google_fonts/Lato-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}

:root {
  --brand-red: #bc0301;
  --dark-text: #000000;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  color: var(--dark-text);
  background: #f5f5f7;
}

.cg-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

.cg-icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cg-icon-brand {
  fill: currentColor;
  stroke: none;
}

.page-gutter {
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 900px) {
  .page-gutter {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (min-width: 1200px) {
  .page-gutter {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.max-1200 {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.topbar-shell {
  padding-top: 32px;
  padding-bottom: 24px;
}

.content-shell {
  padding-top: 16px;
  padding-bottom: 16px;
}

.glass-topbar {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: linear-gradient(
    179deg,
    rgba(247, 241, 234, 0.5) 0%,
    rgba(197, 188, 181, 0.5) 25%
  );
  border: 1px solid rgba(194, 187, 182, 0.7);
}

.topbar-desktop {
  display: none;
  align-items: center;
  padding: 14px 24px;
}

.topbar-compact {
  display: flex;
  align-items: center;
  padding: 10px 16px;
}

@media (min-width: 900px) {
  .topbar-desktop {
    display: flex;
  }

  .topbar-compact {
    display: none;
  }
}

.menu-item,
.action-link {
  font-size: 16px;
  line-height: 1;
  color: var(--dark-text);
  text-decoration: none;
  transition: color 120ms ease;
  cursor: pointer;
}

.menu-item {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.action-link {
  font-weight: 700;
}

.menu-item:hover,
.action-link:hover {
  color: var(--brand-red);
}

.divider-dot {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: #000000;
  margin: 0 12px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 0;
  background: var(--brand-red);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 18px;
  cursor: pointer;
}

.contact-btn.compact {
  padding-left: 14px;
  padding-right: 14px;
}

.contact-btn.full {
  width: 100%;
}

.icon-btn {
  border: 0;
  background: transparent;
  color: var(--dark-text);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon-btn :is(i, .cg-icon) {
  font-size: 24px;
  line-height: 1;
}

.footer {
  background: var(--brand-red);
  padding: 32px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 32px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-col {
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.footer-col-title :is(i, .cg-icon) {
  font-size: 28px;
}

.footer-lines {
  margin-top: 12px;
}

.footer-line {
  display: block;
  margin: 0 0 6px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
}

.social-links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.footer-rights {
  margin: 20px 0 0;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.26);
  opacity: 0;
  visibility: hidden;
  transition: opacity 140ms ease, visibility 140ms ease;
  z-index: 40;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-panel {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(84vw, 330px);
  transform: translateX(-100%);
  transition: transform 180ms ease;
  z-index: 41;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.6) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.drawer-panel.open {
  transform: translateX(0);
}

.drawer-content {
  padding: 24px 16px;
}

.drawer-link {
  display: block;
  padding: 12px 8px;
  color: var(--dark-text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.drawer-divider {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 12px 0;
}

.drawer-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 8px;
  color: var(--dark-text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.drawer-action :is(i, .cg-icon) {
  width: 20px;
  text-align: center;
}

.topbar-left {
  display: flex;
  align-items: center;
}

.topbar-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.flex-spacer {
  flex: 1;
}
