@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700;12..96,800&family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
  --red: #CC232A;          /* Altman brand red */
  --red-dark: #A81C22;
  --navy: #21354E;         /* Altman brand navy */
  --navy-2: #34527A;
  --ink: #19283A;
  --cream: #FBF9F5;
  --paper: #FFFFFF;
  --line: #E4E7EC;
  --muted: #5A6678;
  --gold: #CC232A;         /* brand has no gold — alias to red */
  --radius: 16px;
  --shadow: 0 18px 50px -20px rgba(0, 43, 92, .35);
  --shadow-sm: 0 6px 20px -10px rgba(0, 43, 92, .25);
}

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

/* ---------- Custom Scrollbars ---------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(33, 53, 78, 0.2);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--red);
  border: 2px solid transparent;
  background-clip: padding-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(33, 53, 78, 0.2) transparent;
}

body {
  font-family: "Public Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 1.05;
  letter-spacing: -.02em;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent-bar {
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--red-dark) 60%, var(--navy));
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 10px 24px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.logo small {
  display: block;
  font-family: "Public Sans";
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .16em;
  color: var(--red);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 600;
  font-size: .95rem;
}


.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-family: "Public Sans";
  border: none;
  cursor: pointer;
  border-radius: 11px;
  transition: transform .15s, box-shadow .2s, background .2s;
}

.btn-red {
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  box-shadow: var(--shadow-sm);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.nav .btn {
  font-size: .95rem;
}

.mobile-only-btn {
  display: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    gap: 15px;
    z-index: 100;
  }
  
  .nav-links.open {
    display: flex;
  }

  .nav .btn-red:not(.mobile-only-btn) {
    display: none;
  }

  .nav-links .mobile-only-btn {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
    margin-top: 5px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 48px;
  }
}

/* ---------- Utility ---------- */
.btn-white {
  background: #fff;
  color: var(--red);
  padding: 15px 30px;
  font-size: 1.05rem;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .4);
}

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: #aeb8c6;
  padding: 54px 0 26px;
  font-size: .92rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

footer h4 {
  color: #fff;
  font-family: "Bricolage Grotesque";
  font-size: 1.05rem;
  margin-bottom: 14px;
}

footer a:hover {
  color: #fff;
}

footer .logo {
  color: #fff;
  margin-bottom: 14px;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

footer .logo img {
  height: 78px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.foot-contact div {
  margin-bottom: 9px;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.foot-contact svg {
  width: 17px;
  height: 17px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 20px;
  font-size: .78rem;
  color: #71808f;
  line-height: 1.6;
  text-align: center;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: #aeb8c6;
  transition: background .2s, color .2s, transform .15s;
}

.socials a:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.socials svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 760px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
