@import url('../css/styles.css');

/* HAUSGLÜCK PALETTE TOKENS  */
:root {
  --hg-pink:        #D83873;
  --hg-pink-dk:     #B82E5F;
  --hg-pink-light:  #FAE0EA;
  --hg-yellow:      #F4B840;
  --hg-purple:      #9283CC;
  --hg-teal:        #68D1C6;
  --hg-black:       #18161F;
  --hg-blanc:       #FFFEFB;
  --hg-bg:          #FDF8F5;
  --hg-border:      rgba(216, 56, 115, 0.12);
}

body {
  background: var(--hg-bg);
}

/* SECTION LABEL */
.hg-section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hg-pink);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hg-section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--hg-pink);
  border-radius: 2px;
}

.hg-section-label--light {
  color: rgba(255,255,255,0.55);
}

.hg-section-label--light::before {
  background: rgba(255,255,255,0.4);
}

/* HERO */
.hg-hero {
  padding: 9rem 4rem 5rem;
  background: var(--hg-blanc);
  border-bottom: 1px solid var(--hg-border);
  position: relative;
  overflow: hidden;
}

.hg-hero::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(216,56,115,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hg-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hg-meta-divider {
  width: 1px;
  height: 16px;
  background: rgba(30,30,30,0.15);
}

.hg-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hg-hero-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hg-hero-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hg-hero-title em {
  font-style: italic;
  color: var(--hg-pink);
}

.hg-hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--black-subtle);
  margin-bottom: 2rem;
}

.hg-hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hg-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--hg-pink);
  color: white;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hg-btn-primary:hover {
  background: var(--hg-pink-dk);
  transform: translateY(-2px);
}

.hg-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--hg-pink);
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--hg-pink);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, color 0.25s ease;
}

.hg-btn-ghost:hover {
  background: var(--hg-pink-light);
}

.hg-cover {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--hg-pink-light);
  border-radius: var(--radius-lg);
}

.hg-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hg-stats-bar {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: start;
  border-top: 1px solid rgba(30,30,30,0.1);
  padding: 2rem 0;
}

.hg-stat {
  padding-right: 3.5rem;
  margin-right: 3.5rem;
  border-right: 1px solid rgba(30,30,30,0.1);
}

.hg-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.hg-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black-subtle);
  margin-bottom: 0.4rem;
}

.hg-stat-value {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

/* BODY WRAPPER */
.hg-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}

/* OVERVIEW */
.hg-overview {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  padding: 7rem 0;
  border-bottom: 1px solid var(--hg-border);
}

.hg-overview-left h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hg-overview-left h2 em {
  font-style: italic;
  color: var(--hg-pink);
}

.hg-overview-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hg-overview-right p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--black-subtle);
}

/* CALLOUT BLOCK (VALUE PROPOSITION) */
.hg-callout {
  background: var(--hg-pink);
  border-radius: var(--radius-lg);
  color: white;
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.hg-callout-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hg-callout-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}

.hg-callout h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
}

.hg-callout h2 em {
  font-style: italic;
  color: var(--hg-yellow);
}

.hg-callout-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hg-value-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  align-items: start;
}

.hg-value-num {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  line-height: 1;
  padding-top: 0.2rem;
}

.hg-value-item p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.hg-value-item strong {
  color: white;
  font-weight: 500;
}

/* SECTION HEADER */
.hg-section-header {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
  margin-bottom: 4rem;
}

.hg-section-header h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 0.25rem;
}

.hg-section-header h2 em {
  font-style: italic;
  color: var(--hg-pink);
}

.hg-section-intro {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--black-subtle);
  padding-top: 0.5rem;
}

/* PERSONA & IA SECTIONS */
.hg-persona-section,
.hg-ia-section {
  padding: 7rem 0;
  border-bottom: 1px solid var(--hg-border);
}

.hg-persona-img,
.hg-ia-img {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--hg-blanc);
  border: 1px solid var(--hg-border);
}

.hg-persona-img img,
.hg-ia-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Placeholder styling for missing images */
.hg-img-placeholder-wide {
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--hg-pink-light);
  border: 2px dashed var(--hg-pink);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--hg-pink);
  font-size: 0.85rem;
}

.hg-img-placeholder-wide i {
  font-size: 2.5rem;
  opacity: 0.5;
}

/* BRANDING SECTION */
.hg-branding-section {
  padding: 7rem 0;
  border-bottom: 1px solid var(--hg-border);
}

.hg-components-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hg-pink);
  margin-bottom: 0.75rem;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hg-components-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--hg-pink);
  border-radius: 2px;
}

.hg-components-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--black-subtle);
  margin-bottom: 2rem;
  max-width: 640px;
}

/* Palette */
.hg-palette-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hg-swatch {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 130px;
}

.hg-swatch-color {
  height: 90px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.hg-swatch-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--hg-black);
  line-height: 1.3;
}

.hg-swatch-hex {
  font-size: 0.72rem;
  color: var(--black-subtle);
  font-family: monospace;
  text-transform: uppercase;
}

/* Typography cards */
.hg-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.hg-type-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hg-type-card--pink {
  background: var(--hg-pink);
  color: white;
}

.hg-type-card--dark {
  background: var(--hg-black);
  color: white;
}

.hg-type-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hg-type-specimen {
  font-size: 3.5rem;
  line-height: 1;
  color: white;
  letter-spacing: -0.02em;
}

.hg-type-card--pink .hg-type-specimen {
  font-weight: 700;
}

.hg-type-card--dark .hg-type-specimen {
  font-weight: 400;
}

.hg-type-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-top: auto;
}

/* logo */
.hg-logo {
  max-width: 320px; 
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
}

.hg-logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* MID-FI & HIGH-FI IMAGES  */
.hg-midfi-img,
.hg-hifi-img {
  width: 100%;
  overflow: hidden;
}

.hg-midfi-img img,
.hg-hifi-img img {
  width: 100%;
  height: auto;
  display: block;
}

.hg-screens-section,
.hg-hifi-section {
  padding: 7rem 0;
  border-bottom: 1px solid var(--hg-border);
}

.hg-prototype-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* REFLECTION / RESULTS */
.hg-results {
  background: var(--hg-black);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 7rem 4rem;
}

.hg-results h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  color: var(--hg-blanc);
}

.hg-results h2 em {
  font-style: italic;
  color: var(--hg-pink);
}

.hg-learnings {
  max-width: 760px;
}

.hg-learnings p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hg-hero {
    padding: 7rem 2rem 4rem;
  }

  .hg-hero-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hg-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hg-stat {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }

  .hg-body {
    padding: 0 2rem;
  }

  .hg-overview {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 5rem 0;
  }

  .hg-callout {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 2rem;
  }

  .hg-section-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hg-type-grid {
    grid-template-columns: 1fr;
  }

  .hg-results {
    padding: 5rem 2rem;
  }
}

@media (max-width: 600px) {
  .hg-palette-grid {
    gap: 1rem;
  }

  .hg-swatch {
    width: calc(33% - 0.7rem);
  }

  .hg-hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hg-prototype-links {
    flex-direction: column;
    align-items: flex-start;
  }
}