/* ineeeedreviewnow.com — editorial journal, 2026 */

:root {
  --bg: #f4f1eb;
  --bg-card: #fffcf7;
  --ink: #1a2332;
  --ink-muted: #4a5568;
  --accent: #c45c3e;
  --accent-soft: rgba(196, 92, 62, 0.12);
  --line: #d9d4ce;
  --footer: #0f1419;
  --footer-text: #e8e4dc;
  --radius: 12px;
  --radius-sm: 8px;
  --font: "Georgia", "Times New Roman", serif;
  --font-ui: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --shadow: 0 12px 40px rgba(26, 35, 50, 0.08);
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  background-image: radial-gradient(
      ellipse 120% 80% at 100% 0%,
      rgba(196, 92, 62, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 80% 60% at 0% 100%,
      rgba(26, 35, 50, 0.04) 0%,
      transparent 45%
    );
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: #a34a32;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* All editorial images: contain, never cover */
.img-wrap,
.media-slot,
.card__visual,
.sidebar-widget__visual,
.hero__logo,
.site-footer__logo,
.gallery__main,
.gallery__thumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ebe6df 0%, #f7f4ef 100%);
}

.img-wrap img,
.media-slot img,
.card__visual img,
.sidebar-widget__visual img,
.hero__logo img,
.site-footer__logo img,
.gallery__main img,
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.site-header {
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.brand__logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.brand__text {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.brand__tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.2rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--accent);
}

.main-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.breadcrumbs {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.breadcrumbs a {
  color: var(--ink-muted);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.hero {
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 200px;
  }
}

.hero__logo {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: 1.2rem;
  color: var(--ink-muted);
  max-width: 52ch;
  margin: 0;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(26, 35, 50, 0.12);
}

/* Ganze Karte als Link (Startseite) */
a.card {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a.card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

a.card:hover .card__title {
  color: var(--accent);
}

.card--reveal {
  opacity: 0;
  animation: fadeUp 0.55s ease forwards;
}

.card:nth-child(1) {
  animation-delay: 0.05s;
}
.card:nth-child(2) {
  animation-delay: 0.1s;
}
.card:nth-child(3) {
  animation-delay: 0.15s;
}
.card:nth-child(4) {
  animation-delay: 0.2s;
}
.card:nth-child(5) {
  animation-delay: 0.25s;
}

.card__visual {
  height: 180px;
  border-bottom: 1px solid var(--line);
}

.card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.card__meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.card__title {
  font-family: var(--font);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  color: var(--ink);
  transition: color var(--transition);
}

.card__excerpt {
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin: 0;
}

.editorial {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.editorial h2 {
  font-family: var(--font);
  margin-top: 0;
  font-size: 1.35rem;
}

.editorial p {
  margin-bottom: 0.75rem;
}

.editorial p:last-child {
  margin-bottom: 0;
}

/* Article + sidebar layout */
.layout-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .layout-two {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

.article {
  min-width: 0;
}

.article__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.article__meta {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.article__lead {
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  background: var(--accent-soft);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin: 0 0 1.5rem;
  line-height: 1.55;
}

.article__body h2 {
  font-family: var(--font);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--ink);
}

.article__body h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.article__body p {
  margin: 0 0 1rem;
}

.article__body ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.article__body blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--accent);
  background: var(--bg-card);
  font-style: italic;
  color: var(--ink-muted);
}

.gallery {
  margin: 1.5rem 0 2rem;
}

.gallery__main {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  margin-bottom: 0.75rem;
}

.gallery__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.gallery__thumb {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.sidebar {
  position: sticky;
  top: 5.5rem;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.sidebar-widget h3 {
  font-family: var(--font);
  font-size: 1rem;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.sidebar-widget__visual {
  height: 120px;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  border: 1px solid var(--line);
}

.sidebar-widget ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.95rem;
}

.sidebar-widget a {
  font-weight: 500;
}

.page-legal {
  max-width: 800px;
}

.page-legal h1 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.page-legal .article__meta {
  margin-bottom: 2rem;
}

.page-legal h2 {
  font-family: var(--font);
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-legal p,
.page-legal ul {
  margin: 0 0 1rem;
}

.site-footer {
  background: var(--footer);
  color: var(--footer-text);
  margin-top: auto;
  padding: 3rem 1.5rem 2rem;
}

.site-footer a {
  color: #f0ebe3;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.site-footer__col h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 1rem;
  color: rgba(232, 228, 220, 0.75);
}

.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__col li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.site-footer__logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__brand {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.site-footer__bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(232, 228, 220, 0.75);
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
