:root {
  --bg: #000000;
  --surface: #101010;
  --surface-2: #202020;
  --accent: #6F2822;
  --accent-light: #96372E;
  --text: #f5f5f5;
  --muted: #b0b0b0;
  --border: #333333;
  --radius: 18px;
  --shadow:
    0 10px 30px rgba(0,0,0,0.45);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(1200px, calc(100% - 2rem));
  margin: 2rem auto;
}

/* HERO */

.hero {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 48px;
  width: auto;
}

.brand-text h1 {
  font-family: 'Michroma';
  font-size: 2.25rem;
  font-weight: 300;
  text-transform: uppercase;
  margin: -8px 0 0 0;
}

.brand-text p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin: -10px 0 0 0;
}

.hero-title {
  text-align: right;
}

/* TOP NAV */

.top-nav {
  font-family: 'OswaldLight';
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.125rem 1rem;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.top-nav a {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  transition: 0.2s ease;
}

.top-nav a:hover {
  color: white;
}

/* LAYOUT — FIXED HEIGHT ALIGNMENT */

.layout {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 2rem;
  align-items: stretch;
}

/* CONTENT */

.content-card {

  position: relative;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  padding: 3rem;
  box-shadow: var(--shadow);
  min-height: 520px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(2px);
}

/* BACKGROUND IMAGE */

.content-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  filter: brightness(1.05) contrast(1.05);
  transform: scale(1.03);
  z-index: 0;
}

/* OVERLAY */

.content-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,1.0) 0%,
    rgba(0,0,0,0.10) 70%,
    rgba(0,0,0,0.05) 100%
  );
  z-index: 1;
}

/* FOREGROUND */

.intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
}

.intro-copy h2 {
  font-size: clamp(4rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.subtitle {
  font-family: 'CormorantGaramond';
  font-size: 3.0rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: #ffffff;
}

.intro-copy p {
  font-family: 'CormorantGaramond';
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: #ffffff;
  line-height: 1.0;
}

/* FAVORITES */

.favorites {
  background: rgba(255,255,255,0.0);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 16px;
  padding: 1.5rem;
  height: fit-content;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.favorites h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.favorite-item {
  padding: 1rem;
  background: rgba(255,255,255,0.9);
  border-radius: 12px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent);
  color: #666666;
}

/* FOOTER */

.footer {
  font-family: 'OswaldExtraLight';
  text-align: center;
  padding: 3rem 1rem;
  color: #888;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  margin-top: 2rem;
  color: #666;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .intro {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .hero-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-title {
    text-align: left;
  }

  .content-card {
    padding: 2rem;
  }
}

@media (max-width: 500px) {
  .brand {
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .top-nav {
    padding: 1rem;
  }

  .content-card {
    padding: 1.5rem;
  }
}