/* ─── Frank Future – Delt stilark ─── */
:root {
  --ff-navy: #1a2744;
  --ff-gold: #c8961e;
  --ff-gold-light: #e8b84b;
  --ff-cream: #f9f5ef;
  --ff-white: #ffffff;
  --ff-text: #2c2c2c;
  --ff-text-light: #5a5a5a;
  --ff-border: #e0d8cc;
  --ff-navy-light: #243258;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--ff-text);
  background: var(--ff-white);
  line-height: 1.7;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #000000;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

nav .logo img { height: 36px; display: block; }

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav ul a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--ff-gold-light); }

.nav-cta {
  background: var(--ff-gold) !important;
  color: var(--ff-navy) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 4px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--ff-gold-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: white; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 130px 2rem 5rem;
  text-align: center;
  color: white;
}
.page-hero-content { max-width: 700px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; color: white; margin-top: 1rem; }

.hero-eyebrow {
  display: inline-block;
  background: var(--ff-gold);
  color: var(--ff-navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
}

/* ─── SECTIONS ─── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ff-gold);
  margin-bottom: 0.75rem;
}

.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--ff-navy); margin-bottom: 1.2rem; }
.section-intro { font-size: 1.1rem; color: var(--ff-text-light); max-width: 680px; margin-bottom: 3rem; }

/* ─── PROSE LAYOUT ─── */
.prose-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.prose-main h2 {
  font-size: 1.7rem;
  color: var(--ff-navy);
  margin: 2.5rem 0 0.75rem;
}
.prose-main h2:first-child { margin-top: 0; }
.prose-main h3 { font-size: 1.2rem; color: var(--ff-navy); margin: 1.8rem 0 0.5rem; }
.prose-main p { color: var(--ff-text-light); margin-bottom: 1rem; font-size: 1.05rem; }

.aside-card {
  background: var(--ff-cream);
  border-radius: 8px;
  padding: 1.6rem;
  border: 1px solid var(--ff-border);
}
.aside-card h4 { font-size: 0.9rem; color: var(--ff-navy); margin-bottom: 0.75rem; font-family: 'Source Sans 3', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.aside-card p { font-size: 0.9rem; color: var(--ff-text-light); }

.mini-team { display: flex; gap: 0.75rem; align-items: center; }
.mini-team img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ff-gold); }
.mini-team strong { display: block; font-size: 0.9rem; color: var(--ff-navy); }
.mini-team span { font-size: 0.78rem; color: var(--ff-gold); font-weight: 600; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--ff-gold);
  color: var(--ff-navy);
  padding: 1rem 2.2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--ff-gold-light); transform: translateY(-2px); }

/* ─── BILDEGALLERI ─── */
.bildegalleri {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.bildegalleri img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s;
}
.bildegalleri img:hover { transform: scale(1.02); }

/* ─── FOOTER ─── */
footer {
  background: #000000;
  color: white;
  padding: 3.5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { height: 32px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; }

.footer-col h4 {
  color: var(--ff-gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-family: 'Source Sans 3', sans-serif;
}

.footer-col a, .footer-col p {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ff-gold-light); }

.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .prose-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .bildegalleri { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  nav ul { display: none; }
  nav ul.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: #000000;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .bildegalleri { grid-template-columns: 1fr; }
}
