:root {
  --color-cream: #f4ede1;
  --color-dark: #1c1c1a;
  --color-text-dark: #2a2a28;
  --color-text-muted: #6b6b66;
  --color-white: #ffffff;
  --font-display: 'Quicksand', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-text-dark);
  margin: 0;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-text-dark);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* -- HEADER -- */
.site-header {
  background: linear-gradient(180deg, rgba(35,35,35,1) 0%, rgba(0,0,0,0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.top-nav .row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.2rem 0.5rem;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  justify-self: start;
}

.nav-left a {
  color: var(--color-cream);
  font-size: 1.3rem;
  opacity: 1;
  font-family: var(--font-display);
}

.nav-left a:hover {
  opacity: 0.8;
}

.nav-logo {
  justify-self: center;
}

.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-self: end;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.icon-link img {
  width: 100%;
  height: 100%;
  display: block;
}

.profile-icon {
  color: var(--color-cream);
  border: 1.5px solid rgb(255, 255, 255);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-family: var(--font-display);
  line-height: 1;
  padding: 0;
}

.hero-wrapper {
  position: relative;
}

/* -- FOOTER -- */
.footer-image-band {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  line-height: 0;
}

.footer-band-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.site-footer {
  background-color: var(--color-cream);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.footer-logo-row span {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 1.0rem;
  line-height: 1.5;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.3rem;
}

.footer-col a {
  color: var(--color-dark);
  font-size: 1.0rem;
}

.footer-col a:hover {
  color: var(--color-dark);
}

.footer-newsletter p {
  color: var(--color-dark);
  font-size: 1.0rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 0.5rem;
}

.newsletter-form input {
  border: none;
  background: none;
  flex: 1;
  font-size: 1.2rem;
  color: var(--color-text-dark);
  outline: none;
}

.newsletter-form button {
  background: none;
  border: none;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: var(--color-text-dark);
  padding: 0;
  box-shadow: none;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 1.0rem;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: var(--color-text-muted);
  font-size: 1.0rem;
}

/* -- SHARED RESPONSIVE -- */
@media (max-width: 768px) {
  .top-nav .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-left a {
    margin-right: 1rem;
    font-size: 0.85rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}