/* =========================================================
   Trüffelschwein Eventlocation — Hochzeitsseite
   Warmer, romantischer Stil — eigenständig von Limeberry
   ========================================================= */

:root {
  /* Palette aus test2.messecatering.net (offizielle Trüffelschwein-Seite) */
  --t-coffee: #301f17;        /* Hauptdunkelton (Headings, dunkle Sections) */
  --t-coffee-deep: #231510;   /* Footer, sehr dunkler Akzent */
  --t-cream: #faf7f4;         /* Haupt-Hintergrund */
  --t-beige: #f0ebe5;         /* Alt-Hintergrund, Borders */
  --t-caramel: #ac8764;       /* Primär-Akzent (Buttons, Hover) */
  --t-tan: #c5a787;           /* Sekundär-Akzent (Eyebrows, dezente Highlights) */
  --t-mocha: #8f664a;         /* Mittlerer Braunton */
  --t-ink: #1c1410;
  --t-ink-soft: #4a3a32;
  --t-muted: #7a6a60;
  --t-line: #f0ebe5;
  --t-white: #ffffff;

  /* Legacy-Aliase (nicht entfernen — wird im restlichen CSS noch referenziert) */
  --t-burgundy: var(--t-coffee);
  --t-burgundy-dark: var(--t-coffee-deep);
  --t-burgundy-soft: var(--t-beige);
  --t-cream-warm: var(--t-beige);
  --t-brass: var(--t-caramel);
  --t-brass-light: var(--t-tan);
  --t-wood: var(--t-coffee-deep);

  --t-shadow-sm: 0 2px 10px rgba(60, 30, 15, 0.08);
  --t-shadow-md: 0 12px 32px rgba(60, 30, 15, 0.14);
  --t-shadow-lg: 0 24px 60px rgba(60, 30, 15, 0.2);

  --t-radius-sm: 4px;
  --t-radius-md: 10px;

  --t-container: 1200px;

  --t-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --t-script: "Pinyon Script", "Brush Script MT", cursive;
  --t-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--t-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--t-ink);
  background: var(--t-cream);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--t-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--t-burgundy);
  letter-spacing: -0.005em;
}

.t-script {
  font-family: var(--t-script);
  font-weight: 400;
  color: var(--t-brass);
  font-size: 1.5em;
  line-height: 1;
}

/* ---------- Layout ---------- */
.t-container {
  max-width: var(--t-container);
  margin: 0 auto;
  padding: 0 28px;
}
.t-section { padding: 110px 0; }
.t-section--cream { background: var(--t-cream); }
.t-section--warm { background: var(--t-cream-warm); }
.t-section--burgundy { background: var(--t-burgundy); color: var(--t-cream); }
.t-section--burgundy h2, .t-section--burgundy h3 { color: var(--t-cream); }

.t-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--t-brass);
  margin-bottom: 16px;
}

.t-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 28px;
  color: var(--t-brass);
}
.t-divider::before, .t-divider::after {
  content: "";
  width: 60px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.t-divider span {
  padding: 0 16px;
  font-family: var(--t-display);
  font-style: italic;
  font-size: 16px;
}

.t-section-title {
  font-size: clamp(34px, 5vw, 56px);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 18px;
  max-width: 760px;
}
.t-section-lead {
  font-size: 18px;
  color: var(--t-ink-soft);
  max-width: 680px;
  margin-bottom: 64px;
  line-height: 1.75;
}

/* ---------- Buttons ---------- */
.t-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}
.t-btn--primary {
  background: var(--t-burgundy);
  color: var(--t-cream);
}
.t-btn--primary:hover { background: var(--t-burgundy-dark); transform: translateY(-1px); }
.t-btn--ghost {
  background: transparent;
  color: var(--t-cream);
  border-color: var(--t-cream);
}
.t-btn--ghost:hover { background: var(--t-cream); color: var(--t-burgundy); }
.t-btn--brass {
  background: transparent;
  color: var(--t-brass);
  border-color: var(--t-brass);
}
.t-btn--brass:hover { background: var(--t-brass); color: var(--t-white); }

/* ---------- Header ---------- */
.t-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 24px 0;
}
.t-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--t-container);
  margin: 0 auto;
  padding: 0 28px;
}
.t-wordmark {
  font-family: var(--t-display);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--t-cream);
}
.t-wordmark span { color: var(--t-brass-light); }

/* Logo image (PNG with transparency, dark gray) — invert to cream on dark bg */
.t-logo {
  display: inline-block;
  line-height: 0;
}
.t-logo img {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.t-logo--footer img { height: 56px; margin-bottom: 14px; }

.t-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}
.t-back:hover { color: var(--t-brass-light); }
.t-back::before { content: "←"; font-size: 16px; }

/* ---------- Hero ---------- */
.t-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--t-cream);
  isolation: isolate;
  overflow: hidden;
}
.t-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.t-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(35, 21, 16, 0.35) 0%, rgba(35, 21, 16, 0.12) 50%, rgba(35, 21, 16, 0.6) 100%);
}
.t-hero__content {
  max-width: 880px;
  padding: 160px 28px 120px;
  margin: 0 auto;
  text-align: center;
}
.t-hero__script {
  display: block;
  font-family: var(--t-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--t-brass-light);
  margin-bottom: 24px;
}
.t-hero h1 {
  font-size: clamp(44px, 7vw, 84px);
  color: var(--t-cream);
  font-weight: 500;
  line-height: 1.05;
  font-style: italic;
  margin-bottom: 28px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.t-hero p {
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(245, 237, 224, 0.92);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.t-hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.t-hero__location {
  margin-top: 48px;
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.75);
}

/* ---------- Intro Story ---------- */
.t-story {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.t-story h2 {
  font-size: clamp(32px, 4.5vw, 50px);
  font-style: italic;
  font-weight: 500;
}
.t-story p {
  font-size: 18px;
  color: var(--t-ink-soft);
  margin-top: 24px;
  line-height: 1.85;
}

/* ---------- Services Grid ---------- */
.t-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 56px;
}
.t-service__num {
  font-family: var(--t-display);
  font-style: italic;
  font-size: 38px;
  color: var(--t-brass);
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.t-service h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
}
.t-service p {
  color: var(--t-ink-soft);
  font-size: 16px;
}

/* ---------- Location Showcase ---------- */
.t-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.t-location__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--t-line);
}
.t-location__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.t-location__media:hover img { transform: scale(1.04); }
.t-location__details {
  display: grid;
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--t-line);
}
.t-location__item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  font-size: 16px;
  color: var(--t-ink-soft);
}
.t-location__item strong {
  display: block;
  color: var(--t-burgundy);
  font-family: var(--t-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 2px;
}
.t-location__icon {
  font-family: var(--t-display);
  font-style: italic;
  color: var(--t-brass);
  font-size: 22px;
  line-height: 1;
  text-align: center;
  margin-top: 2px;
}

/* ---------- Pakete ---------- */
.t-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-package {
  background: var(--t-cream);
  border: 1px solid var(--t-line);
  padding: 48px 36px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.t-package:hover {
  transform: translateY(-4px);
  box-shadow: var(--t-shadow-md);
  border-color: var(--t-brass);
}
.t-package__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--t-brass);
  margin-bottom: 8px;
}
.t-package h3 {
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 8px;
}
.t-package__sub {
  font-size: 14px;
  color: var(--t-muted);
  margin-bottom: 28px;
  font-style: italic;
}
.t-package ul { display: grid; gap: 0; margin-bottom: 32px; }
.t-package ul li {
  font-size: 15px;
  color: var(--t-ink-soft);
  padding: 14px 0 14px 28px;
  border-top: 1px solid var(--t-line);
  position: relative;
}
.t-package ul li:last-child { border-bottom: 1px solid var(--t-line); }
.t-package ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--t-brass);
  font-size: 13px;
}
.t-package .t-btn { margin-top: auto; align-self: flex-start; }

/* Featured (Premium) variant — overrides base .t-package rules */
.t-package.t-package--featured {
  background: var(--t-burgundy);
  color: var(--t-cream);
  border-color: var(--t-burgundy);
}
.t-package.t-package--featured h3 { color: var(--t-cream); }
.t-package.t-package--featured .t-package__sub { color: var(--t-brass-light); }
.t-package.t-package--featured .t-package__label { color: var(--t-brass-light); }
.t-package.t-package--featured ul li {
  color: var(--t-cream);
  border-color: rgba(245, 237, 224, 0.18);
}
.t-package.t-package--featured ul li:last-child { border-bottom-color: rgba(245, 237, 224, 0.18); }
.t-package.t-package--featured ul li::before { color: var(--t-brass-light); }

/* ---------- Testimonial ---------- */
.t-testimonial {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.t-testimonial blockquote {
  font-family: var(--t-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4;
  color: var(--t-cream);
  margin-bottom: 32px;
}
.t-testimonial blockquote::before {
  content: "„";
  display: block;
  font-size: 80px;
  line-height: 0.4;
  color: var(--t-brass-light);
  margin-bottom: 24px;
}
.t-testimonial cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--t-brass-light);
}

/* ---------- Wedding Planner ---------- */
.t-planner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.t-planner__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--t-line);
  background: var(--t-cream-warm);
}
.t-planner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.t-planner__media:hover img { transform: scale(1.03); }

/* ---------- Hochzeitsgalerie (mosaic) ---------- */
.t-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 12px;
}
.t-gallery__tile {
  position: relative;
  overflow: hidden;
  background: var(--t-cream-warm);
}
.t-gallery__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.t-gallery__tile:hover img {
  transform: scale(1.05);
  filter: brightness(1.03);
}
.t-gallery__tile--wide { grid-column: span 2; }
.t-gallery__tile--tall { grid-row: span 2; }

@media (max-width: 960px) {
  .t-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .t-gallery__tile--wide { grid-column: span 2; }
  .t-gallery__tile--tall { grid-row: span 2; }
}
@media (max-width: 560px) {
  .t-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .t-gallery__tile--wide,
  .t-gallery__tile--tall { grid-column: auto; grid-row: auto; }
}

/* ---------- Contact ---------- */
.t-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.t-contact__card {
  background: var(--t-cream);
  padding: 56px 48px;
  border: 1px solid var(--t-brass);
}
.t-contact__card h3 {
  font-size: 28px;
  font-style: italic;
  margin-bottom: 24px;
}
.t-contact__list {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
  font-size: 17px;
  color: var(--t-ink-soft);
}
.t-contact__list a { color: var(--t-burgundy); text-decoration: underline; text-underline-offset: 4px; }
.t-contact__list a:hover { color: var(--t-brass); }
.t-contact__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--t-brass);
  margin-bottom: 4px;
}

/* ---------- Google Reviews ---------- */
.t-reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 56px;
}
.t-reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  text-decoration: none;
  color: var(--t-ink-soft);
  transition: opacity 0.2s ease;
}
.t-reviews-summary:hover { opacity: 0.85; }
.t-google-mark {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.t-reviews-summary__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-reviews-summary__num {
  font-family: var(--t-display);
  font-style: italic;
  font-size: 40px;
  font-weight: 500;
  color: var(--t-burgundy);
  line-height: 1;
}
.t-reviews-summary__count {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-muted);
}

.t-stars {
  display: inline-flex;
  gap: 2px;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1;
}
.t-star {
  color: #fbbc05;
  text-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* Partial-fill stars — uses --rating (0–5) custom property */
.t-stars-rated {
  position: relative;
  display: inline-block;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 2px;
}
.t-stars-rated__bg {
  color: #e0d4c0;
  display: block;
}
.t-stars-rated__fg {
  color: #fbbc05;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  width: calc(var(--rating, 5) / 5 * 100%);
  text-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.t-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-reviews .t-review:nth-child(4),
.t-reviews .t-review:nth-child(5) {
  /* center the last two cards in a balanced last row */
}
.t-review {
  background: var(--t-white);
  border: 1px solid var(--t-line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.t-review:hover {
  transform: translateY(-3px);
  box-shadow: var(--t-shadow-md);
  border-color: var(--t-brass);
}
.t-review__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.t-review__name {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--t-ink);
  margin-bottom: 4px;
}
.t-review__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--t-muted);
}
.t-review__meta .t-stars { font-size: 14px; }
.t-review__date { font-size: 12px; }
.t-review__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--t-ink-soft);
  font-family: "Inter", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t-review__guide {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: var(--t-cream);
  color: var(--t-brass);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--t-brass-light);
  border-radius: 999px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

@media (max-width: 960px) {
  .t-reviews { grid-template-columns: repeat(2, 1fr); }
  .t-reviews-head { align-items: flex-start; }
  .t-reviews-summary { align-items: flex-start; }
}
@media (max-width: 600px) {
  .t-reviews { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.t-footer {
  background: var(--t-wood);
  color: var(--t-cream-warm);
  padding: 72px 0 32px;
  font-size: 15px;
}
.t-footer a { color: var(--t-cream-warm); transition: color 0.2s ease; }
.t-footer a:hover { color: var(--t-brass-light); }
.t-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.t-footer__top h4 {
  font-family: var(--t-body);
  color: var(--t-cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.t-footer ul { display: grid; gap: 8px; }
.t-footer__brand .t-wordmark {
  font-size: 32px;
  margin-bottom: 16px;
  display: inline-block;
}
.t-footer__brand p {
  color: rgba(245, 237, 224, 0.6);
  max-width: 360px;
  font-size: 14px;
}
.t-footer__bottom {
  border-top: 1px solid rgba(245, 237, 224, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(245, 237, 224, 0.55);
}
.t-footer__sister {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(245, 237, 224, 0.7);
}
.t-footer__sister a { color: #a7d44a; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .t-section { padding: 80px 0; }
  .t-services { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .t-packages { grid-template-columns: 1fr; }
  .t-location { grid-template-columns: 1fr; gap: 40px; }
  .t-planner { grid-template-columns: 1fr; gap: 40px; }
  .t-contact { grid-template-columns: 1fr; gap: 40px; }
  .t-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .t-services { grid-template-columns: 1fr; }
  .t-footer__top { grid-template-columns: 1fr; }
  .t-hero { min-height: 88vh; }
  .t-hero__content { padding: 140px 20px 90px; }
  .t-contact__card { padding: 40px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
