/* ---------- Tokens ---------- */
:root {
  --bg: #383d46;
  --bg-alt: #434955;
  --text: #f2f0ea;
  --text-dim: #b0b0ac;
  --border: rgba(242, 240, 234, 0.14);
  --accent: #c17a4c; /* terracotta — swap for --accent-ice or --accent-gold below to preview alternatives */
  /* --accent-ice: #6fa4a8; */
  /* --accent-gold: #c2a05a; */

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 720px;
  --gutter: 24px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px var(--gutter);
}

h1, h2, h3 { font-weight: 300; letter-spacing: -0.01em; }

/* ---------- Language switch ---------- */
.lang-switch {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(20, 22, 26, 0.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(242, 240, 234, 0.16);
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  padding: 2px 3px;
  transition: color 0.2s ease;
}
.lang-btn[aria-pressed="true"] { color: var(--accent); }
.lang-btn:hover { color: var(--text); }

.lang-sep {
  color: var(--text-dim);
  font-size: 11px;
  opacity: 0.5;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: var(--bg-alt);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 50%, rgba(20,22,26,0.6), transparent 70%),
    linear-gradient(180deg, rgba(20,22,26,0.3) 0%, rgba(20,22,26,0.45) 55%, var(--bg) 100%);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

/* Fallback state when no photo has been supplied yet */
.hero-media.no-photo {
  background:
    radial-gradient(circle at 30% 20%, rgba(193,122,76,0.18), transparent 60%),
    linear-gradient(180deg, #434955 0%, var(--bg) 100%);
}
.hero-media.no-photo .hero-photo { display: none; }

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(48px, 11vw, 84px);
  font-weight: 200;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 38ch;
  margin-bottom: 28px;
}

.hero-cta {
  display: inline-block;
  font-size: 18px;
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: opacity 0.2s ease;
}
.hero-cta:hover { opacity: 0.7; }

.scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-hint span {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--text-dim));
  animation: hint-move 2s ease-in-out infinite;
}
@keyframes hint-move {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
}

/* ---------- About ---------- */
.about { background: var(--bg); }
.about h2 { color: var(--text-dim); font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 24px; }
.about p { font-size: clamp(19px, 3vw, 24px); font-weight: 300; color: var(--text); max-width: 620px; }

/* ---------- Ventures ---------- */
.ventures { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ventures .section-inner { max-width: 920px; }
.ventures h2 { color: var(--text-dim); font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 40px; }

.venture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}

.venture-card {
  background: var(--bg-alt);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s ease;
}
a.venture-card:hover { background: rgba(242,240,234,0.03); }

.venture-label {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.venture-card h3 { font-size: 22px; margin-top: 2px; }
.venture-card p { color: var(--text-dim); font-size: 15px; max-width: 46ch; }
.venture-link { font-size: 14px; color: var(--text); margin-top: 8px; }

/* ---------- Contact ---------- */
.contact { background: var(--bg); }
.contact h2 { color: var(--text-dim); font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
.contact-intro { color: var(--text-dim); font-size: 16px; margin-bottom: 40px; }

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-photo-col {
  display: flex;
  justify-content: center;
}

.contact-photo {
  width: 160px;
  height: auto;
  object-fit: contain;
  flex: none;
  -webkit-mask-image: radial-gradient(ellipse 60% 65% at 50% 32%, black 25%, transparent 100%);
  mask-image: radial-gradient(ellipse 60% 65% at 50% 32%, black 25%, transparent 100%);
}

.contact-body { min-width: 0; }

.hidden-field { position: absolute; left: -9999px; }

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 300;
  padding: 10px 0;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.submit-btn {
  margin-top: 12px;
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.submit-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.submit-btn:disabled { opacity: 0.5; cursor: default; }

.form-status {
  margin-top: 18px;
  font-size: 14px;
  color: var(--accent);
  min-height: 20px;
}

/* ---------- Footer ---------- */
footer {
  text-align: center;
  padding: 40px var(--gutter) 56px;
  color: var(--text-dim);
  font-size: 13px;
}

/* ---------- Desktop ---------- */
@media (min-width: 720px) {
  .venture-grid { grid-template-columns: repeat(3, 1fr); }
  .venture-card { padding: 32px; }

  .contact-layout { flex-direction: row; align-items: flex-start; gap: 56px; }
  .contact-photo-col { flex: 0 0 220px; justify-content: flex-start; padding-top: 8px; }
  .contact-photo { width: 100%; max-width: 220px; }
}
