/* Make it Go – Brand CSS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --green-dark:   #1a4a1a;
  --green-mid:    #2d6b2d;
  --green-light:  #4a8c4a;
  --gold:         #c9a227;
  --gold-light:   #e8c96a;
  --bronze:       #8b5e3c;
  --bronze-light: #b5844f;
  --cream:        #f5f0e6;
  --cream-dark:   #e8dfc8;
  --text-dark:    #1a1a1a;
  --text-mid:     #3a3a3a;
  --white:        #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}

/* ── NAVBAR ───────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--green-dark);
  border-bottom: 3px solid var(--gold);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 0rem;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--gold);
  color: var(--green-dark);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold-light);
  transition: all 0.3s;
}

/* ── MAIN CONTENT ─────────────────────────────── */
main { padding-top: 72px; }

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, var(--green-dark) 0%, #0d2b0d 60%, #050f05 100%);
}

.hero-globe-bg {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 70% 50%, rgba(201,162,39,0.08) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(201,162,39,0.04) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(201,162,39,0.04) 50px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 40px rgba(201,162,39,0.4));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(245,240,230,0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-outline:hover {
  background: var(--gold-light);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-outline-green:hover {
  background: var(--green-dark);
  color: var(--white);
}

/* ── SECTION BASE ─────────────────────────────── */
.section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--bronze);
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 700px;
  margin-bottom: 3rem;
}

/* ── DIVIDER ──────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--bronze));
  margin-bottom: 2rem;
  border-radius: 2px;
}

/* ── DARK SECTION ─────────────────────────────── */
.section-dark {
  background: var(--green-dark);
  color: var(--cream);
}

.section-dark .section-title {
  color: var(--gold-light);
}

.section-dark .section-lead {
  color: rgba(245,240,230,0.8);
}

/* ── CARDS ────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--gold);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--bronze) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
}

.card-body {
  padding: 1.5rem;
}

.card-tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.card-meta {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--bronze);
  font-weight: 600;
}

.card-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--green-mid);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.card-link:hover {
  border-color: var(--gold);
  color: var(--bronze);
}

/* ── DARK CARD ────────────────────────────────── */
.card-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.25);
  border-top: 4px solid var(--gold);
}

.card-dark .card-title { color: var(--gold-light); }
.card-dark .card-text { color: rgba(245,240,230,0.75); }

/* ── HERO HANDELSER PREVIEW ───────────────────── */
.upcoming-strip {
  background: var(--cream-dark);
  padding: 3rem 2rem;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

/* ── TJÄNST LIST ──────────────────────────────── */
.tjanst-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.tjanst-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.tjanst-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
}

.tjanst-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.tjanst-body p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── HISTORIA PAGE ────────────────────────────── */
.historia-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.historia-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border: 4px solid var(--gold);
}

.historia-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.historia-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

/* ── PAGE HERO ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0d2b0d 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(201,162,39,0.03) 30px,
    rgba(201,162,39,0.03) 31px
  );
}

.page-hero-inner { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(245,240,230,0.8);
  max-width: 600px;
  margin: 0 auto;
}

.gold-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: #0d1f0d;
  border-top: 3px solid var(--gold);
  padding: 3rem 2rem;
  text-align: center;
  color: rgba(245,240,230,0.6);
}

footer .footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

footer p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

footer a:hover { color: var(--gold-light); }

/* ── SERVICE CARD USP & PRICE ─────────────────── */
.card-usp {
  list-style: none;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.card-usp li {
  font-size: 0.85rem;
  color: var(--green-mid);
  font-weight: 600;
  padding-left: 1.4rem;
  position: relative;
}

.card-usp li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.card-price {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── PROCESS SECTION ──────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 3.5rem;
}

.process-step {
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 8px;
  padding: 2.5rem 2rem;
}

.process-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  box-shadow: 0 4px 20px rgba(201,162,39,0.4);
}

.process-step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.process-step-text {
  font-size: 0.95rem;
  color: rgba(245,240,230,0.65);
  line-height: 1.7;
}

/* ── ANALYS FORM ──────────────────────────────── */
.section-cream {
  background: var(--cream);
}

.analys-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  background: rgba(45,107,45,0.08);
  border: 2px solid var(--green-mid);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-mid);
  font-size: 1.05rem;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    padding: 1rem;
    border-bottom: 3px solid var(--gold);
    gap: 0.9rem;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.75rem 1rem;
    border-radius: 4px;
  }

  .nav-hamburger { display: flex; }

  .navbar { position: relative; }
  main { padding-top: 0; }

  .historia-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-logo { width: 140px; height: 140px; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
