/* Gartenraum — section blocks */

/* Hero — full-bleed image with overlay text */
.shore {
  position: relative;
  background: var(--deep);
  color: var(--mist);
  overflow: hidden;
}
.shore__back {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.shore__back img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.shore__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,45,46,0.55) 0%, rgba(31,45,46,0.35) 40%, rgba(31,45,46,0.85) 100%);
  z-index: 2;
}
.shore__inner {
  position: relative;
  z-index: 3;
  padding: 140px 0 110px;
}
@media (min-width: 768px) { .shore__inner { padding: 200px 0 160px; } }
.shore h1 {
  color: var(--mist);
  font-weight: 500;
  max-width: 18ch;
  font-size: clamp(2.4rem, 1.6rem + 3.3vw, 4.2rem);
  margin: 0 0 28px;
}
.shore .intro { color: rgba(235,237,237,0.92); max-width: 54ch; margin-bottom: 36px; }
.shore__buttons { display: flex; flex-wrap: wrap; gap: 14px; }

/* Crumbs */
.trail {
  font-size: 0.85rem;
  color: var(--stone);
  padding: 24px 0 0;
}
.trail ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: var(--reach);
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
}
.trail li { margin: 0; }
.trail li::after { content: "›"; margin-left: 8px; color: var(--stone); }
.trail li:last-child::after { content: ""; }
.trail a { color: var(--stone); text-decoration: none; }
.trail a:hover { color: var(--ivy); }

/* Page intro on inner pages */
.opener { padding: 24px 0 56px; }
.opener h1 { margin: 0 0 20px; }
.opener .intro { max-width: 60ch; }

/* Tag chip */
.label {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: rgba(45,69,56,0.1);
  color: var(--ivy);
  border-radius: 999px;
  font-weight: 600;
}

/* Service tiles — 2-column on tablet, 4-column on desktop, asymmetric */
.services {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (min-width: 1024px) {
  .services { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 24px; }
  .services > :first-child { grid-row: span 2; }
}

.card {
  display: block;
  background: var(--chalk);
  text-decoration: none;
  color: var(--deep);
  overflow: hidden;
  transition: transform 0.25s;
}
.card:hover { transform: translateY(-3px); text-decoration: none; color: var(--deep); }
.card__shot { aspect-ratio: 3/2; overflow: hidden; background: var(--line); }
.card__shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.card:hover .card__shot img { transform: scale(1.04); }
.card__inner { padding: 24px 24px 28px; }
.card__title { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; margin: 0 0 8px; }
.card__hint { color: var(--stone); font-size: 0.95rem; margin: 0 0 16px; }
.card__line {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--stone);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.card__price { color: var(--ivy); font-weight: 500; }

/* Two-column duo */
.duet {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 880px) { .duet { grid-template-columns: 1fr 1fr; gap: 80px; } }
.duet--rev { grid-template-columns: 1fr; }
@media (min-width: 880px) { .duet--rev { grid-template-columns: 1fr 1fr; } .duet--rev .duet__shot { order: 2; } }
.duet__shot img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }

/* Stages — vertical list, big number on left */
.stages {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) { .stages { grid-template-columns: 1fr 1fr; gap: 56px; } }

.stage {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: baseline;
}
.stage__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--ivy);
  line-height: 1;
  font-feature-settings: "lnum";
}
.field--deep .stage__num { color: rgba(235,237,237,0.85); }
.stage__title { font-family: var(--sans); font-size: 1.05rem; font-weight: 600; margin: 0 0 8px; }
.stage__body p { margin: 0; font-size: 0.94rem; color: var(--shade); }
.field--deep .stage__body p { color: rgba(235,237,237,0.82); }

/* Numbers strip */
.numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 768px) { .numbers { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.numbers__cell { padding-left: 0; }
.numbers__big {
  font-family: var(--serif);
  font-size: clamp(2rem, 1.4rem + 1.6vw, 2.6rem);
  font-weight: 500;
  color: var(--ivy);
  line-height: 1;
}
.field--deep .numbers__big { color: var(--mist); }
.numbers__what {
  font-size: 0.86rem;
  color: var(--stone);
  margin-top: 10px;
}
.field--deep .numbers__what { color: rgba(235,237,237,0.7); }

/* Voices */
.echoes {
  display: grid;
  gap: 48px;
}
@media (min-width: 880px) { .echoes { grid-template-columns: 1fr 1fr; gap: 64px; } }
.echo {
  padding: 0;
}
.echo__words {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--shade);
  margin: 0 0 18px;
  max-width: none;
  font-style: italic;
}
.echo__words::before { content: "\201E"; color: var(--ivy); font-size: 1.4em; font-weight: 600; margin-right: 0.05em; }
.echo__who { font-size: 0.92rem; color: var(--stone); }
.echo__who strong { color: var(--deep); display: block; font-family: var(--sans); font-style: normal; }

/* FAQ */
.qbank { display: flex; flex-direction: column; }
.qa-row {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.qa-row__trig {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  color: var(--deep);
}
.qa-row__trig:hover { color: var(--ivy); }
.qa-row__mark {
  font-family: var(--sans);
  font-size: 1.4rem;
  color: var(--ivy);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.qa-row[aria-expanded="true"] .qa-row__mark { transform: rotate(45deg); }
.qa-row__body {
  display: none;
  padding-top: 16px;
  font-size: 0.97rem;
  color: var(--shade);
}
.qa-row[aria-expanded="true"] .qa-row__body { display: block; }
.qa-row__body p { margin: 0 0 0.8em; }
.qa-row__body p:last-child { margin-bottom: 0; }

/* Spec table */
.spec-tab {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.spec-tab caption {
  text-align: left;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 0 16px;
  color: var(--stone);
}
.spec-tab th, .spec-tab td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.spec-tab th {
  font-weight: 500;
  color: var(--deep);
  width: 32%;
  background: rgba(31,45,46,0.025);
}
.spec-tab tr:last-child th, .spec-tab tr:last-child td { border-bottom: 0; }

/* Crew (team) */
.crew {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) { .crew { grid-template-columns: repeat(3, 1fr); gap: 48px; } }
.crew__one { display: flex; flex-direction: column; gap: 18px; }
.crew__pic {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--line);
}
.crew__pic img { width: 100%; height: 100%; object-fit: cover; }
.crew__name { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; margin: 0 0 4px; }
.crew__role {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivy);
  font-weight: 500;
  margin: 0 0 14px;
}
.crew__short { font-size: 0.94rem; color: var(--shade); margin: 0; }
.crew__mail { font-size: 0.86rem; margin-top: 14px; }
.crew__mail a { color: var(--ivy); }

/* CTA band */
.callto { }
.callto h2 { max-width: 24ch; margin-bottom: 24px; }
.callto .intro { margin-bottom: 36px; }
.callto__row { display: flex; flex-wrap: wrap; gap: 14px; }

/* 404 */
.lost { text-align: center; padding: 120px 0; }
.lost h1 { font-size: clamp(4rem, 3rem + 3vw, 6rem); margin-bottom: 12px; color: var(--ivy); }
.lost p { max-width: 50ch; margin: 0 auto 32px; }

/* Kontakt grid */
.reach {
  display: grid;
  gap: 48px;
}
@media (min-width: 880px) { .reach { grid-template-columns: 1fr 1.2fr; gap: 72px; } }
.reach__info { display: flex; flex-direction: column; gap: 28px; }
.reach__row h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 8px;
  font-weight: 600;
}
.reach__row p { margin: 0; font-size: 1.04rem; }
.reach__row a { color: var(--deep); text-decoration: none; border-bottom: 1px solid var(--line); }
.reach__row a:hover { color: var(--ivy); border-bottom-color: var(--ivy); }

.opens {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}
.opens th, .opens td { text-align: left; padding: 8px 0; font-weight: 400; }
.opens th { color: var(--stone); font-weight: 500; }
.opens td { font-variant-numeric: tabular-nums; }
