/*
Theme Name: Le Gourmet Partyservice
Theme URI: https://www.lgps.de/
Author: Le Gourmet Partyservice
Author URI: https://www.lgps.de/
Description: Premium Catering & Event-Service Theme für Le Gourmet Partyservice (Leingarten / Heilbronn). Schwarz/Gold-Premium-Design, Cormorant Garamond + Manrope. RankMath-kompatibel, Fluent Forms vorbereitet.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: le-gourmet
*/

/* ============================================
   LE GOURMET PARTYSERVICE
   Tokens: black #111, gold #C9A227, white,
           grey #F5F5F5, bordeaux #8B1E22
   Type:   Cormorant Garamond + Manrope
   ============================================ */

:root {
  --ink: #111111;
  --ink-2: #1a1a1a;
  --ink-3: #2a2a2a;
  --paper: #ffffff;
  --bone: #f5f3ef;
  --grey: #f5f5f5;
  --line: rgba(17,17,17,.12);
  --line-d: rgba(255,255,255,.14);
  --gold: #c9a227;
  --gold-2: #b08b18;
  --gold-soft: #e6cd6a;
  --bordeaux: #8b1e22;
  --muted: #6b6b6b;
  --muted-d: rgba(255,255,255,.66);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:  "Manrope", "Helvetica Neue", Arial, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --container: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  font-size: 17px;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* ----- Type ----- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(48px, 7.2vw, 104px); line-height: 1.02; letter-spacing: -0.015em; }
h2 { font-size: clamp(34px, 4.6vw, 64px); line-height: 1.08; }
h3 { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.18; }
h4 { font-size: 17px; font-family: var(--sans); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
h5 { font-size: 13px; font-family: var(--sans); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
em { font-style: italic; color: var(--gold-2); font-family: var(--serif); }
p  { margin: 0 0 1em; text-wrap: pretty; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 32px;
  padding: 18px var(--pad);
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.logo-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 18px;
  letter-spacing: 0.04em;
  border: 1px solid var(--ink);
  position: relative; overflow: hidden;
}
.logo-mark::after{
  /* Hinweis: Platzhalter — bestehendes Pinguin-Logo hier einsetzen */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(201,162,39,.15), transparent 60%);
}
.logo-mark--sm { width: 36px; height: 36px; font-size: 16px; }
.logo-mark__placeholder { position: relative; z-index: 1; }
.nav__wordmark {
  display: flex; flex-direction: column; line-height: 1.05;
}
.nav__wordmark-1 {
  font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: 0.005em;
}
.nav__wordmark-2 {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.nav__links {
  display: flex; gap: 28px;
  margin-left: auto;
  font-size: 14px; font-weight: 500;
}
.nav__links a {
  text-decoration: none; color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav__links a:hover { border-bottom-color: var(--gold); }
.nav__cta {
  text-decoration: none;
  background: var(--ink); color: var(--paper);
  padding: 12px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid var(--ink);
  transition: background .2s, color .2s;
}
.nav__cta:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
@media (max-width: 920px) {
  .nav__links { display: none; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  letter-spacing: 0.02em;
  padding: 16px 28px; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold {
  background: var(--gold); color: var(--ink);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-2); border-color: var(--gold-2); color: #fff; }
.btn--ghost {
  background: transparent; color: var(--paper);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; }
.btn--block { width: 100%; }

/* link arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}
.link-arrow::after { content: "→"; transition: transform .2s; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ===== IMAGE PLACEHOLDERS =====
   Tasteful slot — striped tone-on-tone, monospace label.
*/
.img-slot {
  position: relative; overflow: hidden;
  background-color: #1c1c1c;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.025) 0 8px,
      rgba(255,255,255,0) 8px 16px),
    radial-gradient(120% 90% at 20% 0%, rgba(201,162,39,.10), transparent 60%);
  color: rgba(255,255,255,.55);
  border-radius: 4px;
  isolation: isolate;
}
/* Echtes Bild in einem Slot füllt den Rahmen randlos.
   Sobald ein <img> im Slot liegt, wird der Platzhalter-Hinweis ausgeblendet. */
.img-slot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  z-index: 1;
}
.img-slot:has(img) .img-slot__label { display: none; }

.img-slot__label {
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--mono); font-size: 11px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.02em;
  max-width: 80%;
}
/* on light backgrounds */
.intro .img-slot, .reviews .img-slot, .faq .img-slot { background-color: #ece8df; color: #777; }
.intro .img-slot__label { color: #6b6b6b; }


/* ===== HERO ===== */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: flex-end;
  color: var(--paper);
  background: var(--ink);
  padding: 0 var(--pad) clamp(48px, 7vw, 96px);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.img-slot--hero {
  position: absolute; inset: 0; border-radius: 0;
  background-color: #0f0f0f;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.03) 0 12px,
      rgba(255,255,255,0) 12px 24px),
    radial-gradient(80% 60% at 70% 30%, rgba(201,162,39,.18), transparent 65%),
    radial-gradient(60% 50% at 20% 90%, rgba(139,30,34,.18), transparent 60%);
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.1) 30%, rgba(0,0,0,.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,.5) 0%, transparent 50%);
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--container); width: 100%;
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 28px;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,39,.18);
}
.hero__title {
  max-width: 14ch;
  margin: 0 0 28px;
}
.hero__sub {
  max-width: 44ch;
  font-size: clamp(17px, 1.4vw, 21px);
  color: rgba(255,255,255,.85);
  margin: 0 0 36px;
}
.hero__ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__trust {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line-d);
  padding-top: 28px;
  max-width: 820px;
}
.hero__trust li { display: flex; flex-direction: column; gap: 4px; }
.hero__trust strong {
  font-family: var(--serif); font-weight: 500;
  font-size: 28px; letter-spacing: 0;
  color: var(--paper);
}
.hero__trust span {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-d);
}
@media (max-width: 720px) {
  .hero__trust { grid-template-columns: repeat(2, 1fr); }
}
.hero__scroll {
  position: absolute; bottom: 22px; right: var(--pad);
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  display: grid; place-items: center;
  z-index: 2;
}
.hero__scroll span {
  width: 1px; height: 12px; background: var(--gold-soft); display: block;
  animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: translateY(-3px); opacity: .4; }
  50% { transform: translateY(3px); opacity: 1; }
}

/* ===== SECTION HEAD ===== */
.section-head {
  max-width: var(--container);
  margin: 0 auto 56px;
  padding: 0 var(--pad);
}
.section-head--center { text-align: center; }
.section-head--center .section-head__lead { margin-left: auto; margin-right: auto; }
.section-head__kicker {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 18px;
}
.section-head__title { max-width: 22ch; margin-bottom: 18px; }
.section-head__lead {
  max-width: 60ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

/* ===== INTRO ===== */
.intro {
  background: var(--bone);
  padding: clamp(80px, 10vw, 140px) var(--pad);
}
.intro__kicker {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-2);
  max-width: var(--container); margin: 0 auto 28px;
}
.intro__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.22;
  max-width: var(--container);
  margin: 0 auto;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.intro__grid {
  max-width: var(--container); margin: clamp(56px, 7vw, 96px) auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}
.intro__grid h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 26px; margin: 0 0 12px; color: var(--bordeaux);
}
.intro__grid p { color: var(--muted); font-size: 16px; margin: 0; }
@media (max-width: 820px) {
  .intro__grid { grid-template-columns: 1fr; gap: 32px; padding-top: 32px; }
}

/* ===== SERVICES ===== */
.services {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--paper);
}
.services__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 980px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services__grid { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.svc-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201,162,39,.55);
  box-shadow: 0 24px 50px -28px rgba(17,17,17,.25);
}
.svc-card__media {
  aspect-ratio: 4 / 3;
  width: 100%; border-radius: 0;
}
.svc-card__body {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.svc-card__no {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--gold-2);
  margin: 0;
}
.svc-card__body h3 { margin: 0; }
.svc-card__body p { color: var(--muted); font-size: 15.5px; margin: 0 0 8px; }
.svc-card__body .link-arrow { margin-top: auto; align-self: flex-start; }

/* ===== FEATURE (Hochzeit, Firmen) ===== */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--pad);
}
.feature__body h2 { margin-bottom: 24px; }
.feature__body .lead {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 28px;
  max-width: 52ch;
}
.feature__media .img-slot--portrait {
  aspect-ratio: 4 / 5;
  width: 100%;
}
.feature--wedding {
  background: var(--bone);
  max-width: none;
  width: 100%;
}
.feature--wedding .feature__inner,
.feature--corporate .feature__inner { max-width: var(--container); margin: 0 auto; }

.feature--wedding > .feature__media { order: -1; }

.feature--corporate { background: var(--ink); color: var(--paper); max-width: none; }
.feature--corporate .section-head__kicker,
.feature--corporate h4 { color: var(--gold-soft); }
.feature--corporate .lead { color: rgba(255,255,255,.7); }
.feature--corporate .checks li { color: rgba(255,255,255,.86); }
.feature--corporate .checks li::before { background: var(--gold); }

.feature__split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  margin: 28px 0 36px;
}
.feature__split h4 { margin-bottom: 14px; }
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; }
  .feature--wedding > .feature__media { order: 0; }
  .feature__split { grid-template-columns: 1fr; gap: 24px; }
}

/* checks list */
.checks { list-style: none; padding: 0; margin: 0 0 28px; }
.checks li {
  position: relative; padding-left: 28px; margin-bottom: 12px;
  font-size: 16px;
}
.checks li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 14px; height: 1px; background: var(--gold-2);
}
.checks--two { columns: 2; column-gap: 36px; }
@media (max-width: 720px) { .checks--two { columns: 1; } }

/* ===== NUMBERS BAR ===== */
.numbers {
  background: var(--bordeaux);
  color: var(--paper);
  padding: clamp(40px, 5vw, 64px) var(--pad);
}
.numbers__row {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px;
  align-items: end;
}
.numbers__row div { display: flex; flex-direction: column; gap: 6px; }
.numbers strong {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  color: var(--gold-soft);
}
.numbers span {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
@media (max-width: 820px) {
  .numbers__row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ===== PROCESS ===== */
.process { padding: clamp(80px, 10vw, 140px) 0; background: var(--bone); }
.steps {
  list-style: none; padding: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.steps li {
  border-top: 1px solid var(--ink);
  padding-top: 28px;
}
.steps__num {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.2em; color: var(--gold-2);
  display: block; margin-bottom: 18px;
}
.steps h3 { font-size: 24px; margin: 0 0 10px; }
.steps p { font-size: 15.5px; color: var(--muted); margin: 0; }
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== MANUFAKTUR ===== */
.manufaktur {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--pad);
  align-items: center;
}
.manufaktur__copy h2 { margin-bottom: 24px; }
.manufaktur__copy .lead { color: var(--muted); font-size: 18px; margin-bottom: 32px; max-width: 50ch; }
.manufaktur__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 4 / 5;
}
.manufaktur__gallery .img-slot {
  width: 100%; height: 100%;
}
.img-slot--m1 { grid-row: span 2; }
@media (max-width: 820px) {
  .manufaktur { grid-template-columns: 1fr; }
}

/* ===== REVIEWS ===== */
.reviews { padding: clamp(80px, 10vw, 140px) 0; background: var(--paper); }
.reviews__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.review {
  margin: 0;
  background: var(--bone);
  padding: 36px;
  border-radius: 6px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
}
.review__stars { color: var(--gold-2); font-size: 14px; letter-spacing: 0.18em; }
.review blockquote {
  margin: 0;
  font-family: var(--serif); font-weight: 500;
  font-size: 22px; line-height: 1.32;
  color: var(--ink);
}
.review figcaption {
  font-size: 13px; color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  letter-spacing: 0.02em;
}
@media (max-width: 920px) { .reviews__grid { grid-template-columns: 1fr; } }

/* ===== STORY ===== */
.story {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--pad);
  align-items: center;
}
.story__media .img-slot--portrait { aspect-ratio: 4 / 5; }
.story__copy h2 { margin-bottom: 24px; }
.story__copy p { color: var(--muted); font-size: 17px; }
@media (max-width: 820px) {
  .story { grid-template-columns: 1fr; }
  .story__media { order: -1; }
}

/* ===== FAQ ===== */
.faq { padding: clamp(80px, 10vw, 140px) var(--pad); background: var(--bone); }
.faq__list { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  font-family: var(--serif); font-weight: 500;
  font-size: 24px; line-height: 1.25;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--sans); font-weight: 300;
  font-size: 26px; line-height: 1;
  color: var(--gold-2);
  transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 14px 0 4px;
  color: var(--muted);
  font-size: 16px;
  max-width: 64ch;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--ink); color: var(--paper);
  padding: clamp(80px, 10vw, 140px) var(--pad);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  max-width: none;
}
.contact__copy { max-width: 520px; margin-left: auto; }
.contact__copy h2 { margin-bottom: 24px; }
.contact__copy .lead { color: rgba(255,255,255,.72); font-size: 18px; margin-bottom: 36px; max-width: 42ch; }
.contact__copy .section-head__kicker { color: var(--gold-soft); }

.contact__meta {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line-d);
  display: grid; gap: 0;
}
.contact__meta li {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 18px; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-d);
  font-size: 16px;
}
.contact__meta li span {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-d);
}
.contact__meta li a { color: var(--paper); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

.contact__form {
  background: var(--paper); color: var(--ink);
  border-radius: 8px;
  padding: clamp(28px, 3.5vw, 44px);
  max-width: 560px;
  display: grid; gap: 18px;
  align-self: start;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper); color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact__thanks {
  margin: 8px 0 0; padding: 14px 16px;
  background: var(--bone); border-left: 2px solid var(--gold);
  font-size: 14px; color: var(--ink);
}
.contact__legal { margin: 4px 0 0; font-size: 12px; color: var(--muted); line-height: 1.5; }
.contact__legal a { color: var(--ink); }

@media (max-width: 920px) {
  .contact { grid-template-columns: 1fr; }
  .contact__copy { margin-left: 0; }
  .contact__form { max-width: 100%; }
}

/* ===== FOOTER ===== */
.foot { background: #0a0a0a; color: rgba(255,255,255,.7); padding: 72px var(--pad) 28px; }
.foot__top {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px;
}
.foot__brand { display: flex; align-items: flex-start; gap: 14px; }
.foot__brand p { font-size: 14px; color: rgba(255,255,255,.6); margin: 0; line-height: 1.55; }
.foot h5 { color: var(--paper); margin-bottom: 18px; }
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot ul a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px; }
.foot ul a:hover { color: var(--gold-soft); }
.foot ul li { font-size: 14px; }
.foot__bot {
  max-width: var(--container); margin: 56px auto 0;
  border-top: 1px solid var(--line-d);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 12px; letter-spacing: 0.08em;
  color: rgba(255,255,255,.5);
}
.foot__bot a { color: rgba(255,255,255,.65); text-decoration: none; margin: 0 2px; }
@media (max-width: 920px) {
  .foot__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .foot__top { grid-template-columns: 1fr; }
  .foot__bot { flex-direction: column; gap: 10px; }
}
