/* The German Kitchens - Offers Hub CSS */
:root {
  --tgk-slate: #1C2B3A;
  --tgk-slate-dark: #0F172A;
  --tgk-stone: #C4A882;
  --tgk-stone-light: #DFCAAE;
  --tgk-cream: #F9F7F3;
  --tgk-bg: #F8FAFC;
  --tgk-border: #E2E8F0;
  --tgk-red: #DC2626;
  --tgk-text: #334155;
  --tgk-muted: #64748B;
}

.tgk-lp-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.tgk-hero-wrapper {
  background: linear-gradient(135deg, #1C2B3A 0%, #0F172A 100%);
  color: #ffffff;
  padding: 60px 0 70px;
  text-align: center;
  position: relative;
  border-bottom: 2px solid var(--tgk-stone);
}
.tgk-hero-wrapper h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #ffffff;
}
.tgk-hero-wrapper h1 span {
  color: var(--tgk-stone-light);
  font-style: italic;
}
.tgk-hero-lead {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 17px;
  line-height: 1.6;
  color: #cbd5e1;
}

.tgk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tgk-stone-light);
  background: rgba(196,168,130,0.15);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(196,168,130,0.3);
}

.tgk-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #C4A882 0%, #A88B64 100%);
  color: #0F172A !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(196,168,130,0.35);
  transition: all 0.25s ease;
}
.tgk-btn-gold:hover {
  background: linear-gradient(135deg, #DFCAAE 0%, #C4A882 100%);
  transform: translateY(-2px);
  color: #0F172A !important;
}

.tgk-btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid rgba(196,168,130,0.8);
  cursor: pointer;
  transition: all 0.25s ease;
}
.tgk-btn-outline-gold:hover {
  background: rgba(196,168,130,0.15);
  border-color: #DFCAAE;
  color: #DFCAAE !important;
}

/* Featured Headline Offer Banner */
.tgk-offers-featured {
  margin-top: -35px;
  position: relative;
  z-index: 5;
  margin-bottom: 50px;
}
.tgk-featured-card {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--tgk-stone);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}
.tgk-featured-img {
  height: 100%;
  min-height: 280px;
  position: relative;
  background: #0f172a;
}
.tgk-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tgk-featured-content {
  padding: 36px 40px;
}
.tgk-featured-content h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--tgk-slate);
  margin: 0 0 12px;
}
.tgk-featured-content p {
  color: var(--tgk-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
}

/* 5 Offer Cards Grid */
.tgk-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}
.tgk-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.tgk-offer-card {
  background: #ffffff;
  border: 1px solid var(--tgk-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.tgk-offer-card:hover {
  transform: translateY(-4px);
  border-color: var(--tgk-stone);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.tgk-offer-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}
.tgk-offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tgk-offer-card:hover .tgk-offer-img img {
  transform: scale(1.04);
}
.tgk-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--tgk-slate-dark);
  color: var(--tgk-stone-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  border: 1px solid rgba(196,168,130,0.4);
}
.tgk-offer-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.tgk-offer-body h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--tgk-slate);
  margin: 0 0 10px;
}
.tgk-offer-body p {
  color: var(--tgk-muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 16px;
  flex-grow: 1;
}
.tgk-offer-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--tgk-text);
}
.tgk-offer-points li {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tgk-offer-points li svg {
  color: var(--tgk-stone);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.tgk-card-btn {
  display: block;
  text-align: center;
  background: var(--tgk-slate);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.tgk-card-btn:hover {
  background: var(--tgk-stone);
  color: #0F172A !important;
}

/* 4 Pillars */
.tgk-pillars-section {
  background: #ffffff;
  border: 1px solid var(--tgk-border);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 60px;
}
.tgk-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tgk-pillar {
  text-align: center;
  padding: 20px 10px;
}
.tgk-pillar-icon {
  width: 48px;
  height: 48px;
  background: rgba(196,168,130,0.15);
  color: var(--tgk-stone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.tgk-pillar h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--tgk-slate);
  margin: 0 0 8px;
}
.tgk-pillar p {
  color: var(--tgk-muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Consultation Box */
.tgk-hub-consultation {
  background: linear-gradient(135deg, #1C2B3A 0%, #0F172A 100%);
  color: #ffffff;
  border-radius: 8px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
.tgk-hub-consultation h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px;
  color: #ffffff;
  margin: 0 0 12px;
}
.tgk-hub-consultation p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
}

@media (max-width: 960px) {
  .tgk-featured-card { grid-template-columns: 1fr; }
  .tgk-offers-grid { grid-template-columns: 1fr; }
  .tgk-bottom-grid { grid-template-columns: 1fr; }
  .tgk-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .tgk-hub-consultation { grid-template-columns: 1fr; padding: 30px; }
}