/* ===================================================================
   Catering — designtokens
   =================================================================== */

:root {
  --dark: #1C1918;
  --dark-brown: #2C2521;
  --accent: #B8965A;
  --accent-hover: #8B7340;
  --bg: #F8F6F3;
  --bg-white: #FFFFFF;
  --text: #2D2520;
  --text-muted: #6B6560;
  --text-soft: #9C948A;
  --border: #E0DBD4;

  --shadow-sm: 0 2px 16px -6px rgba(28, 25, 24, 0.16);
  --shadow-md: 0 18px 40px -18px rgba(28, 25, 24, 0.3);
  --shadow-lg: 0 30px 64px -22px rgba(28, 25, 24, 0.36);

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1160px;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

html, body { overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--dark);
  font-weight: 600;
  line-height: 1.18;
  margin: 0;
}

p { margin: 0; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section { padding: 104px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 16px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); display: inline-block; }
.eyebrow.on-dark { color: var(--accent); }

.section-head { max-width: 620px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 16px; }
.section-lead { font-size: 16.5px; }

/* ===== Buttons ===== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 3px; font-size: 14px; font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-primary { background: var(--accent); color: var(--dark); }
.btn-primary:hover { background: var(--accent-hover); color: var(--bg-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--dark); border: 1.5px solid var(--dark); }
.btn-ghost:hover { background: var(--dark); color: var(--bg-white); }
.btn-on-dark { background: var(--accent); color: var(--dark); }
.btn-on-dark:hover { background: var(--bg-white); transform: translateY(-2px); }
.btn-ghost-on-dark { background: transparent; color: var(--bg-white); border: 1.5px solid rgba(248,246,243,0.4); }
.btn-ghost-on-dark:hover { border-color: var(--bg-white); background: rgba(248,246,243,0.08); }

/* ===== Header ===== */

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(248, 246, 243, 0.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 28px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: 0.01em; color: var(--dark); }
.main-nav ul { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-size: 14px; font-weight: 700; color: var(--text); transition: color 0.2s ease; }
.main-nav a:hover { color: var(--accent-hover); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; }

/* ===== Hero ===== */

.hero { padding: 90px 0 100px; background: var(--dark); position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 10%, rgba(184,150,90,0.18), transparent 55%);
}
.hero-inner { position: relative; max-width: 720px; margin: 0 auto; text-align: center; }
.hero-tag { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 22px; }
.hero-inner h1 { color: var(--bg-white); font-size: clamp(38px, 5vw, 58px); margin-bottom: 22px; }
.hero-lead { color: rgba(248,246,243,0.72); font-size: 18px; max-width: 560px; margin: 0 auto 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ===== Kategorier ===== */

.categories { background: var(--bg); }
.card-grid-cat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px 28px; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.cat-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(184,150,90,0.12); color: var(--accent-hover); margin-bottom: 20px; }
.cat-card h3 { font-size: 19px; margin-bottom: 8px; }
.cat-card p { font-size: 14.5px; }

/* ===== Om oss ===== */

.about { background: var(--bg-white); }
.about-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-visual svg { width: 100%; }
.about-content p { margin-bottom: 16px; font-size: 16px; }
.about-content p:last-child { margin-bottom: 0; }
.about-stats { display: flex; gap: 44px; margin-top: 30px; }
.about-stat-num { display: block; font-family: var(--font-display); font-size: 32px; color: var(--dark); font-weight: 700; }
.about-stat-label { font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-soft); }

/* ===== Process ===== */

.process { background: var(--bg); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-step { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px 28px; }
.process-number { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--dark); color: var(--accent); font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-bottom: 18px; }
.process-step h3 { font-size: 18px; margin-bottom: 8px; }
.process-step p { font-size: 14.5px; }

/* ===== CTA ===== */

.cta-band { background: linear-gradient(135deg, var(--dark), var(--dark-brown)); text-align: center; }
.cta-band h2 { color: var(--bg-white); margin-bottom: 14px; font-size: clamp(28px, 3.4vw, 38px); }
.cta-band p { color: rgba(248,246,243,0.7); margin-bottom: 30px; font-size: 16.5px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ===== Footer ===== */

.site-footer { background: var(--dark); color: rgba(248,246,243,0.6); padding: 56px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-top .logo-text { color: var(--bg-white); }
.footer-tagline { font-size: 14px; margin-top: 14px; max-width: 260px; }
.footer-col h4 { color: var(--bg-white); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(248,246,243,0.65); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(248,246,243,0.12); padding-top: 24px; font-size: 13px; }

/* ===== Reveal ===== */

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */

@media (max-width: 920px) {
  .about-inner { grid-template-columns: 1fr; }
  .card-grid-cat { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .main-nav { display: none; width: 100%; }
  .main-nav.is-open {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
  }
  .main-nav.is-open ul { flex-direction: column; align-items: flex-start; gap: 4px; padding: 12px 28px 20px; }
  .main-nav.is-open a { display: block; padding: 10px 0; }
  .header-inner { position: relative; }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  .card-grid-cat { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
  .hero { padding-top: 48px; }
}
