/* Waldfilm website UI kit styles — consumes colors_and_type.css tokens */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); }

.wf-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ─── Buttons ─── */
.wf-btn { display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border:0; border-radius:9999px; font-family:var(--font-sans); font-weight:600;
  cursor:pointer; transition: all 200ms var(--ease-out); white-space:nowrap;
  text-decoration:none;
}
.wf-btn-sm { height:36px; padding:0 18px; font-size:12.5px; }
.wf-btn-md { height:40px; padding:0 22px; font-size:13.5px; }
.wf-btn-lg { height:48px; padding:0 30px; font-size:15px; }
.wf-btn-xl { height:56px; padding:0 36px; font-size:17px; }
.wf-btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-md); }
.wf-btn-primary:hover { filter: brightness(1.1); box-shadow: var(--shadow-hover-brand); }
.wf-btn-outline-light { background: transparent; color: var(--fg); border: 1px solid rgba(237,237,237,.3); }
.wf-btn-outline-light:hover { background: rgba(237,237,237,.1); }
.wf-btn-ghost { background: transparent; color: var(--fg); }
.wf-btn-ghost:hover { background: var(--surface-raised); }

/* ─── Header ─── */
.wf-header { position: fixed; top:0; left:0; right:0; z-index:50;
  transition: background 300ms var(--ease-out), border-color 300ms;
  background: transparent; border-bottom: 1px solid transparent;
}
.wf-header.is-solid { background: rgba(10,10,10,.92); backdrop-filter: blur(12px);
  border-color: var(--border); }
.wf-header-inner { max-width:1280px; margin:0 auto; padding: 0 32px;
  height:80px; display:flex; align-items:center; justify-content:space-between;
}
.wf-logo img { height: 32px; display:block; }
.wf-nav { display:flex; gap:36px; }
.wf-nav a { color: var(--fg); font-size:14px; font-weight:500; text-decoration:none;
  transition: color 200ms; }
.wf-nav a:hover, .wf-nav a.is-active { color: var(--brand); }
.wf-header-right { display:flex; align-items:center; gap:16px; }
.wf-lang { background:transparent; border:0; color:var(--fg); font-size:13px;
  font-weight:500; cursor:pointer; display:flex; align-items:center; gap:6px;
  font-family:var(--font-sans); }
.wf-lang:hover { color: var(--brand); }

/* ─── Hero ─── */
.wf-hero { position: relative; min-height: 100vh; display:flex; align-items:center;
  justify-content:center; overflow:hidden; }
.wf-hero-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.wf-hero-scrim { position:absolute; inset:0; background: var(--scrim-hero); }
.wf-hero-content { position:relative; z-index:2; text-align:center; padding: 120px 32px 80px;
  max-width: 1100px; }
.wf-hero-content h1 { margin: 0 0 24px; color: var(--fg); }
.wf-hero-sub { font-size:20px; color: rgba(237,237,237,.85); line-height:1.55;
  max-width:680px; margin: 0 auto 40px; }
.wf-hero-ctas { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.wf-hero-scroll { position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:12px; color: var(--fg-muted); }
.wf-hero-scroll-line { width:1px; height:40px; background: linear-gradient(to bottom, var(--fg-muted), transparent); }

/* ─── Sections shared ─── */
.wf-section-head { text-align:center; max-width: 720px; margin: 0 auto 64px; }
.wf-section-head .wf-eyebrow { display:block; margin-bottom: 12px; }
.wf-section-head h2 { margin: 0 0 16px; }
.wf-section-head .wf-lead { margin: 0 auto; }

/* ─── Trust ─── */
.wf-trust { background:#fff; padding: 48px 0; overflow:hidden; }
.wf-trust-title { color: #6b6b6b; display:block; text-align:center; margin-bottom: 24px; }
.wf-marquee { overflow:hidden; }
.wf-marquee-track { display:flex; gap:64px; align-items:center;
  animation: wf-marquee 40s linear infinite; width:max-content; }
.wf-marquee-track img { height:40px; width:auto; object-fit:contain;
  filter: grayscale(1); opacity:.55; transition: all 300ms; flex-shrink:0; }
.wf-marquee-track img:hover { filter:none; opacity:1; }
@keyframes wf-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Services ─── */
.wf-services { padding: 128px 0; }
.wf-services-list { display:flex; flex-direction:column; gap: 16px; }
.wf-service-card { position:relative; display:flex; align-items:center; gap:32px;
  padding: 36px 40px; border:1px solid rgba(46,46,46,.8); border-radius:16px;
  background: var(--surface); text-decoration:none; color:inherit;
  transition: all 500ms var(--ease-out); overflow:hidden;
}
.wf-service-card:hover { border-color: rgba(62,168,62,.4);
  box-shadow: var(--shadow-brand); transform: translateY(-2px); }
.wf-service-icon { width:64px; height:64px; border-radius:14px;
  background: var(--brand-soft); color: var(--brand);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition: background 300ms; }
.wf-service-icon svg { width:30px; height:30px; }
.wf-service-card:hover .wf-service-icon { background: rgba(62,168,62,.2); }
.wf-service-body { flex:1; min-width:0; }
.wf-service-body h3 { margin:0 0 6px; font-size:28px; font-weight:800;
  letter-spacing:-.02em; transition: color 300ms; }
.wf-service-card:hover .wf-service-body h3 { color: var(--brand); }
.wf-service-body p { margin:0; color: var(--fg-muted); font-size:15px; line-height:1.55; }
.wf-service-arrow { display:flex; align-items:center; gap:8px; color: var(--brand);
  font-size:13px; font-weight:600; transition: transform 300ms; }
.wf-service-card:hover .wf-service-arrow { transform: translateX(6px); }

/* ─── Process ─── */
.wf-process { background: var(--bg-elevated); padding: 112px 0; position: relative; }
.wf-timeline { display:grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto; position: relative; }
.wf-timeline-line { position:absolute; top: 72px; left:0; right:0; height:2px;
  background: linear-gradient(to right, transparent, rgba(62,168,62,.3), transparent); }
.wf-timeline-step { text-align:center; padding-top: 90px; position: relative; }
.wf-timeline-dot { position:absolute; top: 62px; left:50%; transform:translateX(-50%);
  width: 18px; height: 18px; border-radius:999px; background: rgba(62,168,62,.4);
  box-shadow: 0 0 0 5px var(--bg-elevated); z-index:2; transition: all 300ms; }
.wf-timeline-step:hover .wf-timeline-dot { background: var(--brand); transform: translateX(-50%) scale(1.2); }
.wf-timeline-num { display:block; font-size: 56px; font-weight:900;
  color: rgba(62,168,62,.2); line-height:1; letter-spacing:-.03em;
  transition: color 300ms; }
.wf-timeline-step:hover .wf-timeline-num { color: rgba(62,168,62,.5); }
.wf-timeline-step h3 { margin: 10px 0 8px; font-size:18px; font-weight:700; }
.wf-timeline-step p { margin:0; color: var(--fg-muted); font-size:13.5px; line-height:1.55; }

/* ─── Testimonials ─── */
.wf-testimonials { padding: 128px 0; }
.wf-testimonial-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:24px;
  max-width: 1200px; margin: 0 auto; }
.wf-testimonial { background: var(--surface); border:1px solid var(--border);
  border-radius:16px; padding:32px; }
.wf-q { width:32px; height:32px; color: rgba(62,168,62,.25); margin-bottom:18px; }
.wf-testimonial blockquote { margin:0 0 20px; font-size:16px; line-height:1.65;
  font-weight:500; color: var(--fg); }
.wf-testimonial cite { font-style:normal; font-size:13px; color: var(--fg-muted); }
.wf-testimonial cite b { color: var(--fg); font-weight:600; }
.wf-testimonial cite .wf-sep { margin: 0 8px; color: var(--fg-dim); }

/* ─── CTA Band ─── */
.wf-cta-band { background: #000; padding: 128px 0; text-align:center; }
.wf-cta-inner { max-width:720px; }
.wf-cta-inner h2 { margin: 0 0 18px; }
.wf-cta-inner .wf-lead { margin: 0 auto 40px; }

/* ─── Footer ─── */
.wf-footer { background: #000; color: rgba(237,237,237,.6); padding: 80px 0 32px; }
.wf-footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:48px; }
.wf-footer h4 { color: rgba(237,237,237,.4); font-size:12px; text-transform:uppercase;
  letter-spacing:.18em; font-weight:700; margin: 0 0 18px; }
.wf-footer p { font-size:14px; line-height:1.65; color: rgba(237,237,237,.55); margin:0; }
.wf-footer ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.wf-footer a { color: rgba(237,237,237,.6); text-decoration:none; font-size:14px;
  transition: color 200ms, transform 200ms; display:inline-flex; align-items:center; gap:8px; }
.wf-footer a:hover { color: var(--brand); transform: translateX(4px); }
.wf-footer-contact svg { color: var(--brand); flex-shrink:0; }
.wf-footer-bottom { margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(237,237,237,.08);
  display:flex; justify-content:space-between; align-items:center; font-size:12px;
  color: rgba(237,237,237,.35); }
.wf-footer-legal { display:flex; gap:24px; }
.wf-footer-legal a { font-size:12px; color: rgba(237,237,237,.4); }

/* ─── Contact ─── */
.wf-contact { padding: 160px 0 128px; }
.wf-contact-grid { display:grid; grid-template-columns: 1fr 2fr; gap:64px;
  max-width: 1100px; margin: 0 auto; }
.wf-contact-info { display:flex; flex-direction:column; gap:24px; }
.wf-contact-info > div { display:flex; flex-direction:column; gap:4px; }
.wf-ci-label { font-size:11px; text-transform:uppercase; letter-spacing:.2em;
  color: var(--fg-muted); font-weight:600; }
.wf-contact-info a, .wf-contact-info span { color: var(--fg); font-size:15px; text-decoration:none; }
.wf-contact-info a:hover { color: var(--brand); }
.wf-form { display:flex; flex-direction:column; gap:18px; }
.wf-form-row { display:grid; grid-template-columns: 1fr 1fr; gap:18px; }
.wf-form label { display:flex; flex-direction:column; gap:6px; font-size:13px;
  font-weight:600; color: var(--fg); }
.wf-form input, .wf-form select, .wf-form textarea {
  padding: 14px 16px; border: 1px solid var(--border); border-radius:12px;
  background: var(--bg); color: var(--fg); font-family: var(--font-sans);
  font-size:14px; outline:none; transition: all 200ms; font-weight:400;
}
.wf-form input:focus, .wf-form select:focus, .wf-form textarea:focus {
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(62,168,62,.25); }
.wf-form textarea { resize: vertical; min-height: 120px; font-family: var(--font-sans); }
.wf-form-legal { font-size:12px; color: var(--fg-muted); margin:0; }
.wf-form-legal a { color: var(--brand); }
.wf-form-success { padding: 14px 18px; border-radius: 12px;
  background: rgba(62,168,62,.12); color: #7dc77d; font-size:14px; border:1px solid rgba(62,168,62,.3); }

/* ─── Portfolio ─── */
.wf-portfolio { padding: 160px 0 128px; }
.wf-portfolio-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
.wf-portfolio-card { text-decoration:none; color:inherit; display:block;
  border-radius:16px; overflow:hidden; background: var(--surface);
  border: 1px solid var(--border); transition: all 400ms var(--ease-out); }
.wf-portfolio-card:hover { border-color: rgba(62,168,62,.3); transform: translateY(-4px); }
.wf-portfolio-media { position:relative; aspect-ratio: 16/10; overflow:hidden; background:#000; }
.wf-portfolio-media img { width:100%; height:100%; object-fit:cover;
  transition: transform 600ms var(--ease-out); filter: grayscale(.3) brightness(.85); }
.wf-portfolio-card:hover .wf-portfolio-media img { transform: scale(1.05); filter:none; }
.wf-portfolio-play { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:56px; height:56px; border-radius:999px; background: rgba(10,10,10,.6);
  backdrop-filter: blur(8px); color: var(--fg);
  display:flex; align-items:center; justify-content:center;
  transition: all 300ms; }
.wf-portfolio-card:hover .wf-portfolio-play { background: var(--brand); color:#fff; }
.wf-portfolio-body { padding: 24px; }
.wf-portfolio-cat { display:inline-block; font-size:11px; text-transform:uppercase;
  letter-spacing:.2em; color: var(--brand); font-weight:600; margin-bottom:8px; }
.wf-portfolio-body h3 { margin:0 0 6px; font-size:18px; font-weight:700; letter-spacing:-.01em; }
.wf-portfolio-client { font-size:13px; color: var(--fg-muted); }

/* ─── Service Detail ─── */
.wf-service-detail { padding-bottom: 128px; }
.wf-service-hero { position:relative; min-height: 420px; display:flex;
  align-items:flex-end; padding: 128px 0 64px; overflow:hidden; }
.wf-service-hero img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:brightness(.7); }
.wf-service-hero-scrim { position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(10,10,10,.4) 0%, rgba(10,10,10,.95) 100%); }
.wf-service-hero-content { position:relative; z-index:2; }
.wf-service-hero-content h1 { margin: 12px 0 16px; }
.wf-back { background:transparent; border:0; color: var(--fg-muted); font-size:13px;
  cursor:pointer; padding:0; margin-bottom:24px; font-family:var(--font-sans); }
.wf-back:hover { color: var(--brand); }
.wf-service-body { display:grid; grid-template-columns: 2fr 1fr; gap:64px; padding-top: 64px; }
.wf-check-list { list-style:none; padding:0; margin: 20px 0 0; }
.wf-check-list li { padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; position: relative; padding-left: 30px; }
.wf-check-list li::before { content: ""; position:absolute; left:0; top:18px;
  width:18px; height:18px; border-radius:999px;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233ea83e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }
.wf-service-cta { background: var(--surface); border:1px solid var(--border);
  border-radius:16px; padding: 32px; position: sticky; top: 100px; height: fit-content; }
.wf-price { font-size:44px; font-weight:800; letter-spacing:-.02em; margin: 6px 0 12px; }
