@font-face {
  font-family: 'Bethany';
  src: url('../fonts/Bethany-Elingston-BF64722e23853b3.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #f0e8de;
  --ink: #231f1a;
  --muted: #6d6a64;
  --line: #bdb5aa;
  --accent: #f0b36b;
}

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

body {
  font-family: "Cormorant Garamond", serif;
  background: radial-gradient(circle at 30% 10%, #f6efe5 0%, var(--cream) 45%, #e9dfd3 100%);
  color: var(--ink);
  min-height: 100vh;
}

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem 0 2rem;
}

.side-meta {
  font-family: "Bethany";
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.side-meta li {
  padding: 0.85rem 0;
  font-size: 20px;
  border-bottom: 1px solid var(--line);
}

.brand-block {
  text-align: right;
  display: grid;
  gap: 1rem;
  justify-items: end;
}

.brand-logo {
  width: clamp(120px, 14vw, 160px);
  height: auto;
}

.brand-title-image {
  width: clamp(180px, 26vw, 320px);
  height: auto;
}

.hero {
  position: relative;
  text-align: center;
  padding: 4rem 1rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  background: radial-gradient(circle, rgba(240, 179, 107, 0.95) 0%, rgba(240, 179, 107, 0.2) 55%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-image {
  position: relative;
  width: min(90vw, 620px);
  height: auto;
  z-index: 1;
}

.footer-logos {
  display: flex;
  /* grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); */ 
  gap: 2rem;
  align-items: center;
}

.footer-logos img {
  width: 50%;
  /* max-height: 60px; */
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  margin-left: 25%;
}

.logo{
  max-width: 11%;
}

.privacy-link {
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.privacy-link a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.privacy-link a:hover {
  border-color: currentColor;
}

@media (max-width: 991px) {
  .brand-block {
    text-align: left;
    justify-items: start;
    margin-top: 1.5rem;
  }

  .hero {
    padding: 3rem 1rem;
  }
}

@media (max-width: 576px) {
  .landing {
    padding: 2rem 0 1.5rem;
  }

  .side-meta li {
    padding: 0.7rem 0;
  }

  .footer-logos {
    gap: 1.25rem;
  }
}