/* ===========================================================
   StoryFilm — shared stylesheet
   =========================================================== */

/* Die Originalseite nutzt Adobe Fonts (Typekit): adobe-garamond-pro + din-condensed-web.
   Die sind lizenzpflichtig und laufen auf Squarespace über deren Adobe-Abo.
   Hast du ein eigenes Adobe-Fonts-Webprojekt, hier die Zeile einkommentieren und
   die Kit-ID einsetzen — die Stacks unten nennen die Originalfonts zuerst, es
   greift dann automatisch:
   @import url('https://use.typekit.net/DEINE_KIT_ID.css');
   Sonst laden die freien Ersatzschriften: EB Garamond (fast identisch mit Adobe
   Garamond, gleiche Vorlage) und Oswald (DIN-Condensed-Verwandter). */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Oswald:wght@300;400;500&display=swap');

:root {
  --color-bg: #ffffff;
  --color-dark: #1a1a1a;
  --color-text: #1a1a1a;
  --color-text-light: #f6f4ef;
  --color-muted: #55554f;   /* kraeftiger als vorher (#6b6b66) */
  --color-accent: #4c7ea3;
  --color-accent-dark: #3d6685;
  --color-red: #cf4436;
  --font-serif: adobe-garamond-pro, 'EB Garamond', Garamond, Georgia, serif;
  --font-cond: din-condensed-web, 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-sans: var(--font-cond);   /* kleine Versal-Labels = DIN Condensed */
  --max-width: 1180px;
}

* { box-sizing: border-box; }

/* Das geschlossene Menue parkt rechts ausserhalb des Viewports und erzeugte
   auf dem Handy einen horizontalen Scrollbalken. 'clip' unterbindet das,
   ohne — anders als overflow:hidden — position:sticky im Header zu brechen. */
html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(19px, 1.85vw, 23px);  /* Desktop 23px (Original 20px), Handy 19px */
  line-height: 1.6em;
  letter-spacing: .02em;
  color: #1f1f1e;               /* vorher rgba(23,23,23,.8) — mehr Kontrast */
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Typografie (Werte aus dem Original-CSS) ---------- */

h1, h2 { font-family: var(--font-serif); color: #171717; margin-top: 0; }
h1, h2, h3, p, li, td, th, blockquote { overflow-wrap: break-word; }

h1 {
  font-weight: 600;
  /* Original: fix 60px. clamp() hält die Zeile auf dem Handy heil und
     erreicht auf dem Desktop exakt 60px. */
  font-size: clamp(30px, 5vw, 60px);     /* Desktop 60px = Originalwert */
  line-height: 1.5em;
  letter-spacing: .02em;
}

h2 {
  font-weight: 400;
  font-size: clamp(24px, 2.5vw, 30px);   /* Desktop 30px = Originalwert */
  line-height: 1.5em;
  letter-spacing: .02em;
}

h3 {
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: 18px;              /* Originalwert */
  line-height: 1.8em;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #171717;
  margin-top: 0;
}

/* Auf Foto- und Dunkelflächen erben Überschriften die helle Textfarbe */
.photo-section h1, .photo-section h2, .photo-section h3,
.section-dark h1, .section-dark h2, .section-dark h3,
.site-footer h1, .site-footer h2, .site-footer h3 { color: inherit; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 36px;
  border: none;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
}
.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-dark); }
.btn-light { background: #fff; color: var(--color-accent); }
.btn-light:hover { transform: translateY(-2px); }

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid #eee;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.site-header .brand img { height: 42px; width: auto; }
.site-footer .brand img { height: 56px; width: auto; margin: 0 auto 18px; }

/* Sprachschalter dauerhaft im Header — nicht im Hamburger versteckt */
.header-right { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-cond); font-size: 15px;
  letter-spacing: .2em; text-transform: uppercase;
}
.lang-switch a { color: #a9a69d; padding: 4px 2px; transition: color .15s ease; }
.lang-switch a:hover { color: var(--color-accent); }
.lang-switch a.active { color: #171717; border-bottom: 2px solid var(--color-accent); }
.lang-switch span { color: #ddd; }

/* Hinweis, wenn jemand auf der falschen Sprachseite gelandet ist */
.lang-hint {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px 16px;
  background: var(--color-accent); color: #fff;
  padding: 12px 52px 12px 20px; position: relative;
  font-size: 19px; text-align: center;
}
.lang-hint a {
  font-family: var(--font-cond); font-size: 15px;
  letter-spacing: .15em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.6); padding-bottom: 2px;
}
.lang-hint a:hover { border-bottom-color: #fff; }
.lang-hint button {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #fff; font-size: 26px;
  line-height: 1; cursor: pointer; opacity: .8; padding: 0 6px;
}
.lang-hint button:hover { opacity: 1; }

.nav-toggle {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--color-dark); display: block; }

.site-nav {
  position: fixed; inset: 0 0 0 auto;
  width: min(320px, 85vw); height: 100vh;
  background: var(--color-dark); color: var(--color-text-light);
  transform: translateX(100%); transition: transform .3s ease;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto; z-index: 60;
}
.site-nav.open { transform: translateX(0); }
.site-nav .nav-close {
  align-self: flex-end; background: none; border: none;
  color: var(--color-text-light); font-size: 28px; cursor: pointer;
  line-height: 1; margin-bottom: 12px;
}
.site-nav a {
  font-family: var(--font-sans); font-size: 15px; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-nav .lang-row {
  margin-top: 20px; display: flex; gap: 16px;
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 2px;
}
.site-nav .lang-row a {
  border: none; padding: 6px 0; color: #8a877e;
}
.site-nav .lang-row a:hover { color: #fff; }
.site-nav .lang-row a.active { color: #fff; border-bottom: 1px solid var(--color-accent); }

.nav-scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  opacity: 0; pointer-events: none; transition: opacity .3s ease; z-index: 55;
}
.nav-scrim.open { opacity: 1; pointer-events: auto; }

/* ---------- Click-to-play video ---------- */

.video {
  position: relative; aspect-ratio: 16/9; cursor: pointer;
  overflow: hidden; background: #000;
}
.video img { width: 100%; height: 100%; object-fit: cover; }
.video iframe { width: 100%; height: 100%; border: 0; display: block; }
.video .play {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  transition: background .2s ease;
}
.video:hover .play { background: rgba(0,0,0,.15); }
.video .play i {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(0,0,0,.5); border: 2px solid rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-style: normal; font-size: 22px; padding-left: 5px;
}

/* ---------- Photo sections ---------- */

.photo-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.photo-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
}
.photo-section > * { position: relative; z-index: 1; }

/* ---------- Hero ---------- */

.hero {
  min-height: 78vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 90px 24px;
  background-image: url('../images/hero.jpg');
}
.hero h1 { margin: 0 0 30px; }

/* ---------- Sections ---------- */

section { padding: 80px 0; }
.section-dark { background: var(--color-dark); color: var(--color-text-light); }
.section-tint { background: #f4f2ec; }

.narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; text-align: center; }
.narrow h2 { margin: 0 0 20px; }
.narrow p { color: var(--color-muted); }
.section-dark .narrow p, .photo-section .narrow p { color: #e8e5dd; }
.photo-section .narrow h2 { color: #fff; }

.caption-line { text-align: center; font-size: 21px; color: #d8d5cc; margin-top: 20px; }

.barriers {
  list-style: none; margin: 32px auto 0; padding: 0;
  max-width: 640px; text-align: left; display: grid; gap: 16px;
}
.barriers li { font-size: clamp(18px, 1.7vw, 21px); padding-left: 28px; position: relative; }
.barriers li::before { content: '—'; position: absolute; left: 0; color: var(--color-accent); }

.matrix-img { max-width: 420px; margin: 34px auto 0; }

/* testimonials */
.reviews {
  display: grid; gap: 22px; margin-top: 40px;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}
.reviews img { border-radius: 4px; box-shadow: 0 2px 14px rgba(0,0,0,.09); }

/* included list */
.included { padding: 90px 24px; text-align: center; background-image: url('../images/beach-aerial.jpg'); }
.included h2 { margin: 0 0 6px; }
.included .subhead { font-size: 25px; margin: 0 0 6px; }
.included .note { font-size: clamp(17px, 1.6vw, 20px); opacity: .92; margin-bottom: 34px; }
.included ul {
  list-style: none; padding: 0; margin: 0 auto 26px; max-width: 500px;
  text-align: left; display: grid; gap: 15px; font-size: clamp(18px, 1.7vw, 21px);
}
.included ul li::before { content: '• '; color: #9dc4dc; }
.included .travel-note { font-style: italic; margin-bottom: 30px; }

/* help cards */
.help-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 26px; margin-top: 46px;
}
.help-card { border: 1px solid #e6e4dc; padding: 28px 24px; text-align: center; }
.help-card h3 { color: var(--color-accent); margin: 0 0 12px; }
.help-card p { margin: 0; font-size: 20px; color: var(--color-muted); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--color-dark); color: var(--color-text-light);
  padding: 60px 24px 32px; text-align: center;
}
.site-footer .tagline {
  font-family: var(--font-sans); font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; color: #cfccc2; margin-bottom: 26px;
}
.legal-row {
  font-family: var(--font-sans); font-size: clamp(19px, 1.85vw, 23px); letter-spacing: 1.5px;
  color: #8a877e; display: flex; justify-content: center; gap: 20px;
}

/* ---------- Portfolio ---------- */

.page-head { text-align: center; padding: 70px 24px 10px; }
.page-head h1 { margin: 0 0 8px; }
.page-head p { color: var(--color-muted); font-size: clamp(19px, 1.85vw, 23px); margin: 0; }

.grid-heading { text-align: center; margin: 60px 0 30px; }
.grid-heading h2 { margin: 0; }

.work-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 28px; margin-bottom: 40px;
}
/* 4-item rows sit better as a 2x2 than as 3 + 1 orphan */
.work-grid.two { grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr)); }
.work-title {
  font-family: var(--font-sans); font-size: 14px; letter-spacing: 1px;
  text-transform: uppercase; margin-top: 12px; text-align: center;
}
.work-title small {
  display: block; font-family: var(--font-serif); font-size: 18px;
  letter-spacing: 0; text-transform: none; color: var(--color-muted); margin-top: 3px;
}

.feature-film { background: #f4f2ec; padding: 70px 0; margin: 60px 0; }
/* Two-column block. Own class so it also works when it sits directly on the
   wrapper (a descendant selector silently did nothing there). */
.split { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 820px) { .split { grid-template-columns: 0.75fr 1.25fr; } }
.split > div > img { width: 100%; }
.split .srf { width: auto; height: 38px; }
.feature-film h2 { margin: 0 0 4px; }
.feature-film .orig {
  font-family: var(--font-sans); font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--color-accent); margin-bottom: 14px;
}
.feature-film .meta { color: var(--color-muted); font-size: 19px; margin-bottom: 16px; }
.feature-film .srf { height: 38px; width: auto; margin-top: 22px; }

.series { margin: 70px auto; }
.series h2 { text-align: center; margin: 0 0 6px; }
.series .sub { text-align: center; color: var(--color-muted); font-size: 19px; margin: 0 0 8px; }
.series .hilkinger { height: 46px; width: auto; margin: 18px auto 34px; opacity: .8; }

/* ---------- About ---------- */

.portrait { max-width: 460px; margin: 34px auto; }
.pull-quote {
  max-width: 760px; margin: 54px auto; text-align: center; padding: 0 24px;
  font-size: clamp(22px, 2.5vw, 30px); font-style: italic;
}
.pull-quote cite {
  display: block; margin-top: 16px; font-style: normal;
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--color-accent);
}
.about-copy { max-width: 760px; margin: 0 auto 56px; padding: 0 24px; }
.about-copy p { margin-bottom: 22px; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid; gap: 50px; max-width: 1000px;
  margin: 50px auto 80px; padding: 0 24px; grid-template-columns: 1fr;
}
@media (min-width: 820px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.location-block h2 {
  font-family: var(--font-cond); font-size: 18px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--color-accent); margin: 0 0 14px;
}
.location-block p { font-size: 19px; margin-bottom: 16px; }
.location-block .phone { font-weight: 600; }
.map-frame { width: 100%; aspect-ratio: 4/3; border: 0; margin-top: 20px; }

/* ---------- Team (DE pages) ---------- */

.team-grid {
  display: grid; gap: 34px; margin-top: 40px;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}
.team-grid.three { grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.team-grid img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.team-grid h3 { margin: 16px 0 4px; }
.team-grid p {
  margin: 0 0 8px; font-size: 18px; color: var(--color-muted);
}

/* ---------- Quotes ---------- */

.quote-grid {
  display: grid; gap: 24px; margin-top: 34px;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}
.quote-grid blockquote {
  margin: 0; padding: 24px; background: #f4f2ec;
  font-style: italic; font-size: clamp(18px, 1.7vw, 21px); border-left: 3px solid var(--color-accent);
}

/* ---------- Gallery ---------- */

.gallery {
  display: grid; gap: 12px; margin-top: 30px;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
}
.gallery img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* ---------- Sponsor wall ---------- */

.sponsor-wall {
  display: grid; gap: 18px; align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
.sponsor-wall img {
  width: 100%; height: 66px; object-fit: contain;
  filter: grayscale(1); opacity: .7; transition: opacity .2s ease, filter .2s ease;
}
.sponsor-wall img:hover { filter: none; opacity: 1; }

/* ---------- Release table ---------- */

.release-table { width: 100%; border-collapse: collapse; margin-top: 26px; }
.release-table th, .release-table td {
  text-align: left; padding: 12px 8px; border-bottom: 1px solid #e0ddd4; font-size: 18px;
}
.release-table th {
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--color-muted); font-weight: 600; width: 45%;
}

/* ---------- Legal pages ---------- */

.about-copy.legal { font-size: 19px; }
.about-copy.legal h2 {
  font-size: 26px; margin: 40px 0 12px;
  padding-bottom: 8px; border-bottom: 1px solid #e6e4dc;
}
.about-copy.legal p { margin-bottom: 14px; }

@media (max-width: 600px) {
  section { padding: 56px 0; }
  .lang-switch { font-size: 13px; letter-spacing: .12em; gap: 5px; }
  .lang-hint { font-size: 15px; padding: 11px 44px 11px 16px; }
  .hero { min-height: 68vh; padding: 70px 20px; }
  .sponsor-wall { grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); }
}
