:root {
  --bg-light: #ececec;
  --text-dark: #101010;
  --gold: #ddc24a;
  --gold-strong: #d1b23b;
  --footer-bg: #090909;
  --footer-card: rgba(255, 255, 255, 0.04);
  --footer-border: rgba(255, 255, 255, 0.1);
  --footer-text: rgba(255, 251, 240, 0.82);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(221, 194, 74, 0.14), transparent 30%),
    linear-gradient(180deg, #111111 0%, var(--footer-bg) 100%);
  color: #fffdf7;
  font-size: 16px;
  padding: 4.25rem 0 1.65rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 194, 74, 0.18), transparent 68%);
  pointer-events: none;
}

.footer-shell {
  position: relative;
  width: min(91vw, 1790px);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(220px, 0.95fr) minmax(160px, 0.72fr) minmax(220px, 0.92fr);
  gap: 2.6rem;
  align-items: start;
}

.footer-block {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-brand-block {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 1.55rem 1.45rem;
  align-items: start;
}

.footer-brand {
  display: contents;
}

.footer-brand img {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  width: 92px;
  height: auto;
  padding: 0.55rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--footer-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-brand > div {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  padding-top: 0.15rem;
}

.footer-kicker {
  margin: 0;
  max-width: 640px;
  font-size: clamp(1.04rem, 1.1vw, 1.28rem);
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: 0.005em;
  color: var(--footer-text);
}

.footer-contact-card {
  grid-column: 1 / -1;
  margin-top: 0;
  padding: 1.15rem 1.2rem 1.1rem;
  border-radius: 22px;
  background: var(--footer-card);
  border: 1px solid var(--footer-border);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  max-width: 700px;
}

.footer-social-inline {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-heading {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.footer-contact-line,
.footer-address {
  margin: 0.3rem 0 0;
  font-size: 0.97rem;
  line-height: 1.8;
  letter-spacing: 0.005em;
  color: var(--footer-text);
}

.footer-contact-line strong {
  color: #fffdf7;
  font-weight: 600;
}

.footer-contact-line a,
.footer-link {
  color: inherit;
  text-decoration: none;
}

.footer-separator {
  margin-inline: 0.4rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-contact-line a:hover,
.footer-link:hover {
  color: var(--gold);
}

.footer-address {
  font-style: normal;
  max-width: 290px;
}

.footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  color: var(--footer-text);
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-link:hover {
  transform: translateX(2px);
}

.footer-social-list {
  display: grid;
  gap: 0.75rem;
}

.footer-social-item,
.footer-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: max-content;
  min-width: 0;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--footer-border);
  color: #fffdf7;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-social-item img,
.footer-social-pill img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-bottom {
  margin-top: 2.8rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 251, 240, 0.72);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.footer-bottom p {
  margin: 0;
}

.page-body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at top right, rgba(221, 194, 74, 0.14), transparent 22%),
    linear-gradient(180deg, #f7f3e8 0%, #f0ece0 42%, #ebe6d7 100%);
}

.page-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 235, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.page-nav-shell {
  width: min(91vw, 1380px);
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.page-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
}

.page-brand img {
  width: 72px;
  height: auto;
}

.page-brand span {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.page-nav {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.page-nav a {
  text-decoration: none;
  color: #161616;
  padding: 0.55rem 0.88rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
}

.page-nav a:hover,
.page-nav a.active {
  background: var(--gold);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 11, 11, 0.82), rgba(11, 11, 11, 0.56)),
    url("images/footer_slide.jpg") center center / cover no-repeat;
}

.page-hero-inner {
  width: min(91vw, 1380px);
  margin: 0 auto;
  padding: 5rem 0 4rem;
}

.page-eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.86rem;
  color: #f4dd8d;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 1.05;
}

.page-hero p {
  margin: 1rem 0 0;
  max-width: 860px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.page-main {
  width: min(91vw, 1380px);
  margin: 0 auto;
  padding: 3rem 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.info-card,
.side-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(29, 25, 15, 0.08);
}

.info-card {
  padding: 2rem;
}

.side-card {
  padding: 1.5rem;
  position: sticky;
  top: 104px;
}

.info-meta {
  margin: 0 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(221, 194, 74, 0.18);
  color: #4c3e07;
  font-size: 0.9rem;
  font-weight: 600;
}

.info-section + .info-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.info-section h2,
.side-card h2 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.2;
}

.info-section p,
.side-card p {
  margin: 0.9rem 0 0;
  line-height: 1.8;
  color: #343434;
}

.info-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.info-list li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.7;
  color: #343434;
}

.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gold-strong);
}

.side-card + .side-card {
  margin-top: 1rem;
}

.side-card a {
  color: #1d1d1d;
  text-decoration: none;
}

.side-card a:hover {
  color: #8d7414;
}

.side-note {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(221, 194, 74, 0.14);
  color: #4a3f18;
  line-height: 1.7;
}

@media (max-width: 1280px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .page-nav-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-nav {
    justify-content: flex-start;
  }

  .page-main {
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding-top: 3rem;
  }

  .footer-grid,
  .page-main {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .footer-brand img,
  .footer-brand > div,
  .footer-contact-card {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-social-item {
    width: 100%;
  }

  .page-hero-inner {
    padding: 3.5rem 0 3rem;
  }

  .info-card,
  .side-card {
    padding: 1.35rem;
    border-radius: 20px;
  }
}
