:root {
  --forest: #1f3027;
  --forest-deep: #15201a;
  --moss: #3d5344;
  --cream: #f5efe3;
  --cream-warm: #ede4d0;
  --terracotta: #c65d3b;
  --terracotta-deep: #a64a2d;
  --ochre: #d4a34a;
  --ink: #1a1a1a;
  --muted: #6b6257;
  --line: rgba(31, 48, 39, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
.display { font-family: 'Fraunces', Georgia, serif; font-weight: 400; letter-spacing: -0.02em; }
.italic { font-style: italic; }

/* ---------- NAV ---------- */
body > nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  background: rgba(245, 239, 227, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--forest);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--terracotta); color: var(--cream) !important; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--forest);
  padding: 0;
  transition: color 0.2s;
}
.nav-dropdown-toggle:hover { color: var(--terracotta); }
.nav-dropdown-toggle svg {
  width: 12px; height: 12px;
  transition: transform 0.3s;
}
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 300px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 50px -15px rgba(31, 48, 39, 0.25);
  padding: 0.7rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  list-style: none;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 1.5rem;
  display: none;
}
.nav-dropdown.open::after { display: block; }

.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  transition: background 0.2s;
  text-decoration: none;
  color: var(--forest);
}
.nav-dropdown-menu a:hover {
  background: var(--cream-warm);
  color: var(--forest);
}
.nav-dropdown-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.nav-dropdown-menu a:hover .nav-dropdown-icon { background: var(--terracotta); }
.nav-dropdown-label {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.nav-dropdown-label strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--forest);
}
.nav-dropdown-label span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.burger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.burger span { display: block; width: 24px; height: 2px; background: var(--forest); margin: 5px 0; transition: 0.3s; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  padding: 9rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(212, 163, 74, 0.18), transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(198, 93, 59, 0.12), transparent 50%),
    var(--cream);
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--terracotta);
}
h1.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 6.2vw, 5.2rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--forest);
  margin-bottom: 1.8rem;
}
.hero-title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}
.hero-lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 2rem;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(198, 93, 59, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-secondary:hover { background: var(--forest); color: var(--cream); }
.btn svg { width: 18px; height: 18px; }

.hero-trust { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-item svg { width: 18px; height: 18px; color: var(--forest); flex-shrink: 0; }

/* hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.15;
  max-width: 560px;
  justify-self: center;
  width: 100%;
}
.hero-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(31, 48, 39, 0.35);
}
.hero-card-main {
  inset: 0;
  background: linear-gradient(135deg, #3d5344 0%, #1f3027 100%);
}
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-card-badge {
  position: absolute;
  top: -1.5rem; right: -1.5rem;
  width: 140px; height: 140px;
  background: var(--ochre);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  text-align: center;
  z-index: 3;
  transform: rotate(-8deg);
  animation: wiggle 6s ease-in-out infinite;
}
.hero-card-badge .big { font-size: 1.5rem; line-height: 1; }
.hero-card-badge .small { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.3rem; font-family: 'Manrope', sans-serif; font-weight: 600; }
@keyframes wiggle {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(-3deg); }
}
.hero-card-mini {
  position: absolute;
  bottom: -1.5rem; left: -2rem;
  background: var(--cream);
  padding: 1.2rem 1.4rem;
  border-radius: 18px;
  box-shadow: 0 20px 40px -15px rgba(31, 48, 39, 0.25);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  z-index: 3;
}
.hero-card-mini .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--ochre));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-weight: 700;
}
.hero-card-mini .text small { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.hero-card-mini .text div { font-family: 'Fraunces', serif; font-size: 1rem; color: var(--forest); font-weight: 500; }

/* ---------- SECTIONS ---------- */
section { padding: 7rem 2.5rem; position: relative; }
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--terracotta);
}
h2.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--forest);
  margin-bottom: 1.2rem;
  max-width: 700px;
}
h2 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
.section-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.6;
}

/* ---------- SERVICES ---------- */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
.service-card {
  background: var(--forest);
  color: var(--cream);
  padding: 3rem;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.service-card.alt { background: var(--cream-warm); color: var(--forest); }
.service-card:hover { transform: translateY(-6px); }
.service-card .service-number {
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.6;
  margin-bottom: 2rem;
}
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.service-card p { margin-bottom: 2rem; opacity: 0.85; line-height: 1.55; }
.service-features { list-style: none; margin-bottom: 2rem; }
.service-features li {
  padding: 0.6rem 0;
  border-top: 1px solid currentColor;
  display: flex;
  justify-content: space-between;
  font-size: 0.94rem;
  opacity: 0.9;
}
.service-features li:last-child { border-bottom: 1px solid currentColor; }
.service-features li span:last-child { font-weight: 600; font-family: 'Fraunces', serif; }
.service-link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  transition: gap 0.25s;
}
.service-link:hover { gap: 0.9rem; }

/* ---------- ABOUT ---------- */
.about { background: var(--cream-warm); position: relative; overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}
.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--moss), var(--forest-deep));
  box-shadow: 0 30px 60px -20px rgba(31, 48, 39, 0.3);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-visual-tag {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(245, 239, 227, 0.95);
  backdrop-filter: blur(8px);
  padding: 1rem 1.3rem;
  border-radius: 14px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--forest);
  font-size: 1.05rem;
  line-height: 1.4;
}
.about-visual-tag small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.about-body p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.2rem; }
.about-body p strong { color: var(--forest); font-weight: 600; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-item {
  padding: 1.4rem;
  background: var(--cream);
  border-radius: 14px;
  border-left: 3px solid var(--terracotta);
}
.value-item h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.value-item p { font-size: 0.92rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ---------- GALLERY ---------- */
.gallery { background: var(--cream); }
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.gallery-header-left { max-width: 600px; }
.gallery-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.gallery-filter button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--forest);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}
.gallery-filter button:hover { border-color: var(--forest); }
.gallery-filter button.active { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 1rem;
}
.gallery-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s;
}
.gallery-tile:hover { transform: translateY(-4px); }
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }
.gallery-tile svg, .gallery-tile img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}
.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 32, 26, 0.85) 0%, rgba(21, 32, 26, 0) 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.4rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-tile-label { color: var(--cream); }
.gallery-tile-label small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.2rem;
}
.gallery-tile-label span { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 500; }
.tile-1 { grid-column: span 3; grid-row: span 2; }
.tile-2 { grid-column: span 2; grid-row: span 2; }
.tile-3 { grid-column: span 1; grid-row: span 2; }
.tile-4 { grid-column: span 2; grid-row: span 2; }
.tile-5 { grid-column: span 2; grid-row: span 2; }
.tile-6 { grid-column: span 2; grid-row: span 2; }
.gallery-tile.hidden { display: none; }
.gallery-note {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--cream-warm);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  border-left: 3px solid var(--ochre);
}
.gallery-note svg { width: 24px; height: 24px; color: var(--terracotta); flex-shrink: 0; }

/* ---------- PRICING ---------- */
.pricing { background: var(--forest); color: var(--cream); }
.pricing h2 { color: var(--cream); }
.pricing h2 em { color: var(--ochre); }
.pricing .section-lead { color: rgba(245, 239, 227, 0.7); }
.pricing .section-eyebrow { color: var(--ochre); }
.pricing .section-eyebrow::before { background: var(--ochre); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.price-block h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(245, 239, 227, 0.2);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px dashed rgba(245, 239, 227, 0.15);
}
.price-row:last-child { border-bottom: none; }
.price-row .label { font-size: 0.98rem; opacity: 0.9; }
.price-row .price {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--ochre);
  font-weight: 500;
  white-space: nowrap;
}
.price-note {
  margin-top: 2rem;
  font-size: 0.88rem;
  opacity: 0.6;
  font-style: italic;
}

/* ---------- HOW IT WORKS ---------- */
.how { background: var(--cream-warm); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}
.step { position: relative; }
.step-number {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 3.5rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 300;
}
.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}
.step p { color: var(--muted); line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  margin-top: 3rem;
  align-items: start;
}
.faq-intro { position: sticky; top: 6rem; }
.faq-help-box {
  margin-top: 2rem;
  padding: 1.8rem;
  background: var(--forest);
  color: var(--cream);
  border-radius: 18px;
}
.faq-help-box h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.faq-help-box p { font-size: 0.92rem; opacity: 0.8; margin-bottom: 1.2rem; line-height: 1.5; }
.faq-help-box a {
  color: var(--ochre);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.25s;
}
.faq-help-box a:hover { gap: 0.8rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.6rem 0;
  text-align: left;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--terracotta); }
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.faq-icon svg { width: 14px; height: 14px; transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--forest); color: var(--cream); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner {
  padding: 0 0 1.6rem 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 620px;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ---------- ARTICLES ---------- */
.articles { background: var(--cream-warm); }
.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.articles-header-left { max-width: 600px; }
.articles-link {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 1.5px solid var(--forest);
  transition: all 0.25s;
}
.articles-link:hover { color: var(--terracotta); border-color: var(--terracotta); gap: 0.9rem; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.article-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s;
  cursor: pointer;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -18px rgba(31, 48, 39, 0.25);
}
.article-image { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.article-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.article-card:hover .article-image img { transform: scale(1.06); }
.article-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--cream);
  color: var(--forest);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-body {
  padding: 1.8rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-meta {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.article-meta .dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }
.article-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 0.7rem;
  transition: color 0.25s;
}
.article-card:hover h3 { color: var(--terracotta); }
.article-excerpt {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex: 1;
}
.article-read {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.25s, color 0.25s;
}
.article-card:hover .article-read { color: var(--terracotta); gap: 0.7rem; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--terracotta);
  color: var(--cream);
  text-align: center;
  padding: 6rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/photo-1477884213360-7e9d7dcc1e48.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  mix-blend-mode: multiply;
  z-index: 0;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(198, 93, 59, 0.3) 0%, rgba(166, 74, 45, 0.85) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}
.cta-band > *:not(.cta-band-bg) { position: relative; z-index: 2; }
.cta-band h2 {
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.05;
}
.cta-band h2 em { color: var(--ochre); font-style: italic; }
.cta-band p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-primary { background: var(--cream); color: var(--forest); }
.cta-band .btn-primary:hover { background: var(--forest); color: var(--cream); }

/* ---------- CONTACT ---------- */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}
.contact-info h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}
.contact-info h4:first-child { margin-top: 0; }
.contact-info p, .contact-info a {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--forest);
  text-decoration: none;
  line-height: 1.4;
  font-weight: 400;
}
.contact-info a:hover { color: var(--terracotta); }

.contact-form {
  background: var(--forest);
  padding: 3rem;
  border-radius: 24px;
  color: var(--cream);
}
.contact-form h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.contact-form p { opacity: 0.75; margin-bottom: 1.8rem; font-size: 0.95rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(245, 239, 227, 0.08);
  border: 1px solid rgba(245, 239, 227, 0.2);
  border-radius: 10px;
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  transition: border 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--ochre);
  background: rgba(245, 239, 227, 0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245, 239, 227, 0.4); }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  padding: 0.2rem 0;
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 20px; height: 20px;
  margin-top: 2px;
  border: 1.5px solid rgba(245, 239, 227, 0.4);
  border-radius: 5px;
  background: rgba(245, 239, 227, 0.08);
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
.form-consent input[type="checkbox"]:hover { border-color: var(--ochre); }
.form-consent input[type="checkbox"]:checked { background: var(--ochre); border-color: var(--ochre); }
.form-consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px; top: 1px;
  width: 6px; height: 11px;
  border: solid var(--forest);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.form-consent label {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(245, 239, 227, 0.85);
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
}
.form-consent label a { color: var(--ochre); text-decoration: underline; text-underline-offset: 2px; }
.form-consent label a:hover { color: var(--cream); }

.form-submit {
  background: var(--ochre);
  color: var(--forest);
  border: none;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.25s;
  font-size: 1rem;
}
.form-submit:hover { background: var(--cream); transform: translateY(-2px); }

/* ---------- FOOTER ---------- */
footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 4rem 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  margin-top: 1rem;
  opacity: 0.6;
  max-width: 320px;
  font-size: 0.93rem;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(245, 239, 227, 0.08);
  border: 1px solid rgba(245, 239, 227, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 239, 227, 0.7);
  transition: all 0.2s;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--ochre);
  border-color: var(--ochre);
  color: var(--forest);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-contact { font-size: 0.92rem; }
.footer-contact-item {
  margin-bottom: 0.9rem;
}
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.25rem;
}
.footer-contact-value {
  color: rgba(245, 239, 227, 0.85);
  text-decoration: none;
  line-height: 1.4;
  display: block;
  transition: color 0.2s;
}
a.footer-contact-value:hover { color: var(--ochre); }
.footer-col h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--ochre);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: var(--cream);
  opacity: 0.7;
  text-decoration: none;
  font-size: 0.94rem;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; color: var(--ochre); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 239, 227, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  align-items: center;
}
.footer-bottom > * { opacity: 0.55; }
.footer-bottom .footer-credit {
  opacity: 0.7;
}
.footer-bottom .footer-credit a {
  color: var(--ochre);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-bottom .footer-credit a:hover {
  color: var(--cream);
  text-decoration: underline;
}
.footer-bottom .footer-legal { opacity: 0.7; }
.footer-bottom .footer-legal a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom .footer-legal a:hover {
  color: var(--ochre);
}

@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr !important; }
}

/* ---------- ARTICLE PAGE (single artikkel) ---------- */
.article-hero {
  padding: 8rem 2.5rem 2rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.article-hero .article-meta {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.article-hero .article-meta .dot {
  width: 3px; height: 3px; background: var(--muted); border-radius: 50%;
}
.article-hero .article-meta .article-tag-inline {
  display: inline-block;
  background: var(--cream-warm);
  color: var(--terracotta);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--forest);
  margin: 0 0 1.2rem;
}
.article-hero h1 em { font-style: italic; color: var(--terracotta); font-weight: 300; }
.article-hero .article-lead {
  font-size: 1.18rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.article-feature-img {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding: 0 2.5rem;
}
.article-feature-img img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: 0 25px 50px -20px rgba(31, 48, 39, 0.25);
}

.article-prose {
  max-width: 740px;
  margin: 0 auto;
  padding: 4rem 2.5rem 5rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink);
}
.article-prose p { margin-bottom: 1.5rem; color: rgba(26, 26, 26, 0.85); }
.article-prose p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 3.4rem;
  float: left;
  line-height: 1;
  margin: 0.1rem 0.6rem 0 0;
  color: var(--terracotta);
  font-weight: 400;
}
.article-prose h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 2.5rem 0 1rem;
}
.article-prose h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest);
  margin: 2rem 0 0.6rem;
  letter-spacing: -0.01em;
}
.article-prose ul, .article-prose ol { margin: 1rem 0 1.5rem 1.4rem; }
.article-prose li { margin-bottom: 0.6rem; }
.article-prose strong { color: var(--forest); font-weight: 600; }
.article-prose em { font-style: italic; }
.article-prose a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-prose a:hover { color: var(--terracotta-deep); }
.article-prose blockquote {
  border-left: 3px solid var(--terracotta);
  padding: 0.6rem 0 0.6rem 1.4rem;
  margin: 2rem 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--forest);
  line-height: 1.5;
}
.article-prose hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2.5rem auto;
  width: 60%;
}

.article-share {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 2.5rem 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.article-share-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-share-icons { display: flex; gap: 0.5rem; }
.article-share-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  text-decoration: none;
  transition: all 0.2s;
}
.article-share-icons a:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.article-share-icons svg { width: 16px; height: 16px; }

.article-related {
  background: var(--cream-warm);
  padding: 5rem 2.5rem;
}
.article-related .container { max-width: 1100px; margin: 0 auto; }
.article-related .section-eyebrow { margin-bottom: 0.8rem; }
.article-related-title {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--forest);
  margin: 0 0 2.5rem;
}

@media (max-width: 720px) {
  .article-hero { padding: 7rem 1.25rem 1.5rem; }
  .article-feature-img { padding: 0 1.25rem; }
  .article-prose { padding: 3rem 1.25rem 4rem; font-size: 1rem; }
  .article-related { padding: 4rem 1.25rem; }
  .article-share { padding: 0 1.25rem 3rem; }
}

/* ---------- LEAD FORM (gjenbrukes på service-sidene) ---------- */
.lead-form { background: var(--cream-warm); }
.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.lead-form-intro { padding-top: 0.5rem; }
.lead-form-intro .section-title { margin-bottom: 1.2rem; }
.lead-features {
  list-style: none;
  margin: 1.8rem 0;
  padding: 0;
}
.lead-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.55rem 0;
  font-size: 0.98rem;
  color: var(--forest);
  font-weight: 500;
}
.lead-features li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--forest);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f5efe3' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.lead-form-card {
  background: var(--forest);
  color: var(--cream);
  padding: 2.5rem;
  border-radius: 22px;
  box-shadow: 0 25px 50px -20px rgba(31, 48, 39, 0.35);
}
.lead-form-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.65rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.lead-form-card .lead-form-sub {
  opacity: 0.75;
  margin-bottom: 1.6rem;
  font-size: 0.92rem;
}
.lead-form-card .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.lead-form-card .form-field { display: block; }
.lead-form-card .form-field.full { grid-column: 1 / -1; }
.lead-form-card label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  opacity: 0.8;
}
.lead-form-card input,
.lead-form-card textarea,
.lead-form-card select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(245, 239, 227, 0.08);
  border: 1px solid rgba(245, 239, 227, 0.2);
  border-radius: 10px;
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  transition: border 0.2s, background 0.2s;
}
.lead-form-card select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23d4a34a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}
.lead-form-card input:focus,
.lead-form-card textarea:focus,
.lead-form-card select:focus {
  outline: none;
  border-color: var(--ochre);
  background: rgba(245, 239, 227, 0.12);
}
.lead-form-card textarea { resize: vertical; min-height: 80px; }
.lead-form-card input::placeholder,
.lead-form-card textarea::placeholder { color: rgba(245, 239, 227, 0.4); }

.lead-form-card .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}
.lead-form-card .form-consent input[type="checkbox"] {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  margin-top: 2px;
  border: 1.5px solid rgba(245, 239, 227, 0.4);
  border-radius: 4px;
  background: rgba(245, 239, 227, 0.08);
  cursor: pointer;
  position: relative;
  transition: all 0.15s;
}
.lead-form-card .form-consent input[type="checkbox"]:checked {
  background: var(--ochre);
  border-color: var(--ochre);
}
.lead-form-card .form-consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 0px;
  width: 5px; height: 10px;
  border: solid var(--forest);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.lead-form-card .form-consent label {
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  margin: 0;
  color: rgba(245, 239, 227, 0.85);
  cursor: pointer;
  line-height: 1.45;
}
.lead-form-card .form-consent a {
  color: var(--ochre);
  text-decoration: underline;
}
.lead-form-card .form-submit-row {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}
.lead-form-card .form-submit {
  background: var(--ochre);
  color: var(--forest);
  border: none;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  cursor: pointer;
  flex: 1;
  font-size: 0.98rem;
  transition: all 0.25s;
}
.lead-form-card .form-submit:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.lead-form-card .form-secondary {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.85;
  transition: opacity 0.2s, gap 0.25s;
}
.lead-form-card .form-secondary:hover { opacity: 1; gap: 0.7rem; color: var(--ochre); }

@media (max-width: 960px) {
  .lead-form-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .lead-form-card { padding: 2rem; }
  .lead-form-card .form-grid { grid-template-columns: 1fr; }
}

/* ---------- STICKY BOOK CTA (på service-sider) ---------- */
.sticky-book {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 90;
  background: var(--terracotta);
  color: var(--cream);
  border: none;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 16px 35px -10px rgba(166, 74, 45, 0.55);
  transition: all 0.25s;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.sticky-book.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-book:hover { background: var(--forest); transform: translateY(-2px); }
.sticky-book svg { width: 16px; height: 16px; }

/* ---------- SERVICE FEATURE CARDS (gjenbrukes) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--forest);
  box-shadow: 0 18px 35px -16px rgba(31, 48, 39, 0.18);
}
.feature-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-card-icon svg { width: 20px; height: 20px; }
.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 960px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ---------- TIMELINE / DAG-HOS-OSS ---------- */
.timeline {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px; left: 5%; right: 5%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.timeline-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--forest);
  color: var(--forest);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}
.timeline-step:hover .timeline-time {
  background: var(--forest);
  color: var(--cream);
}
.timeline-step h4 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.3rem;
}
.timeline-step p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 960px) {
  .timeline { grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
  .timeline::before { display: none; }
}
@media (max-width: 480px) {
  .timeline { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PAGE-WIDE COMPONENTS
   ============================================================ */

/* ---------- TEAM (Om oss) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -18px rgba(31, 48, 39, 0.25);
}
.team-photo {
  aspect-ratio: 4 / 3.5;
  background: linear-gradient(135deg, var(--moss), var(--forest-deep));
  position: relative;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-photo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--ochre);
  font-size: 3rem;
  opacity: 0.5;
  font-weight: 300;
}
.team-body { padding: 1.6rem 1.6rem 1.8rem; }
.team-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
}
.team-name {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.6rem;
  letter-spacing: -0.015em;
}
.team-bio { font-size: 0.93rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* ---------- STATS ---------- */
.stats-band {
  background: var(--forest);
  color: var(--cream);
  padding: 5rem 2.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 400;
  color: var(--ochre);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.8;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .team-grid { grid-template-columns: 1fr; }
  .stats-band { padding: 3.5rem 1.25rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* ---------- LIGHTBOX (Galleri) ---------- */
.gallery-page-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 1rem;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(21, 32, 26, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0s 0.3s;
  padding: 2rem;
}
.lightbox.open { opacity: 1; visibility: visible; transition: opacity 0.3s, visibility 0s 0s; }
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  text-align: center;
}
.lightbox-btn {
  position: absolute;
  background: rgba(245, 239, 227, 0.1);
  border: 1px solid rgba(245, 239, 227, 0.2);
  color: var(--cream);
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox-btn:hover { background: rgba(245, 239, 227, 0.2); border-color: var(--ochre); }
.lightbox-btn svg { width: 18px; height: 18px; }
.lightbox-close { top: 2rem; right: 2rem; }
.lightbox-prev { top: 50%; left: 2rem; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 2rem; transform: translateY(-50%); }

@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next { top: auto; bottom: 2rem; transform: none; }
  .lightbox-prev { left: 1rem; }
  .lightbox-next { right: 1rem; }
  .lightbox-close { top: 1rem; right: 1rem; }
}

/* ---------- FAQ JUMP NAVIGATION ---------- */
.faq-jumpnav {
  background: var(--cream-warm);
  padding: 1.4rem 1.8rem;
  border-radius: 18px;
  margin: 0 auto 4rem;
  max-width: 1100px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
}
.faq-jumpnav-title {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  white-space: nowrap;
}
.faq-jumpnav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.faq-jumpnav-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
}
.faq-jumpnav-list a:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.faq-jumpnav-list a svg { width: 14px; height: 14px; }

.faq-category {
  margin-bottom: 4rem;
  scroll-margin-top: 6rem;
}
.faq-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--line);
}
.faq-category-icon {
  width: 40px; height: 40px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-category-icon svg { width: 20px; height: 20px; }
.faq-category-title {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin: 0;
}

@media (max-width: 600px) {
  .faq-jumpnav {
    flex-direction: column;
    align-items: stretch;
    padding: 1.4rem 1.25rem;
  }
  .faq-jumpnav-title { text-align: center; white-space: normal; }
  .faq-jumpnav-list { justify-content: center; }
  .faq-jumpnav-list a { padding: 0.55rem 0.9rem; font-size: 0.82rem; }
}

/* ---------- KONTAKT-PAGE ---------- */
.contact-page-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.contact-detail {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  background: var(--cream-warm);
  border-radius: 14px;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.contact-detail:hover { background: var(--cream); transform: translateY(-2px); }
.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.2rem;
}
.contact-detail-value {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.005em;
  line-height: 1.35;
}
.contact-detail-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.contact-map {
  margin-top: 3rem;
  background: var(--cream-warm);
  border-radius: 18px;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-align: center;
}
.contact-map-overlay {
  position: relative;
  z-index: 2;
  background: rgba(245, 239, 227, 0.95);
  padding: 1.2rem 1.6rem;
  border-radius: 12px;
  box-shadow: 0 14px 30px -12px rgba(31, 48, 39, 0.2);
}
.contact-map-overlay strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 0.2rem;
}
.contact-map-overlay span { font-size: 0.85rem; color: var(--muted); }
.contact-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, var(--moss), transparent 60%),
    linear-gradient(135deg, var(--cream-warm), var(--cream));
  opacity: 0.6;
  z-index: 1;
}

@media (max-width: 960px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------- PRICE EXAMPLES ---------- */
.price-example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.price-example-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.price-example-card.featured {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.price-example-card:hover {
  transform: translateY(-4px);
  border-color: var(--forest);
  box-shadow: 0 20px 40px -16px rgba(31, 48, 39, 0.2);
}
.price-example-card.featured:hover { box-shadow: 0 25px 50px -16px rgba(31, 48, 39, 0.4); }
.price-example-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}
.price-example-card.featured .price-example-tag { color: var(--ochre); }
.price-example-name {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--forest);
}
.price-example-card.featured .price-example-name { color: var(--cream); }
.price-example-rows {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  border-top: 1px dashed var(--line);
}
.price-example-card.featured .price-example-rows { border-top-color: rgba(245, 239, 227, 0.2); }
.price-example-rows li {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}
.price-example-card.featured .price-example-rows li {
  border-bottom-color: rgba(245, 239, 227, 0.2);
  color: rgba(245, 239, 227, 0.85);
}
.price-example-rows li span:last-child { font-family: 'Fraunces', serif; color: var(--forest); font-weight: 500; }
.price-example-card.featured .price-example-rows li span:last-child { color: var(--ochre); }
.price-example-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1rem;
  border-top: 2px solid var(--forest);
  font-family: 'Fraunces', serif;
}
.price-example-card.featured .price-example-total { border-top-color: var(--ochre); }
.price-example-total span:first-child {
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
}
.price-example-card.featured .price-example-total span:first-child { color: var(--cream); }
.price-example-total span:last-child {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--terracotta);
}
.price-example-card.featured .price-example-total span:last-child { color: var(--ochre); }

@media (max-width: 960px) {
  .price-example-grid { grid-template-columns: 1fr; }
}

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  body > nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--line);
  }
  .burger { display: block; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: none;
    box-shadow: none;
    background: var(--cream-warm);
    margin-top: 0;
    transition: max-height 0.3s ease, margin-top 0.3s ease, padding 0.3s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 300px;
    margin-top: 0.8rem;
    padding: 0.5rem;
    transform: none;
  }
  .nav-dropdown.open::after { display: none; }

  .hero { padding: 7rem 1.25rem 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; max-width: 400px; aspect-ratio: 1 / 1; }
  .hero-card-badge { width: 100px; height: 100px; top: -0.8rem; right: -0.8rem; }
  .hero-card-badge .big { font-size: 1.1rem; }
  .hero-card-badge .small { font-size: 0.6rem; }

  section { padding: 4.5rem 1.25rem; }
  .services-grid,
  .pricing-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { gap: 3rem; }
  .about-grid,
  .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-values { grid-template-columns: 1fr; gap: 1rem; }
  .faq-intro { position: static; }
  .faq-question { font-size: 1.05rem; padding: 1.3rem 0; }

  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
  .tile-1, .tile-2, .tile-3, .tile-4, .tile-5, .tile-6 { grid-column: span 1; grid-row: span 2; }
  .tile-1 { grid-column: span 2; }
  .gallery-tile-overlay { opacity: 1; background: linear-gradient(to top, rgba(21, 32, 26, 0.75) 0%, rgba(21, 32, 26, 0) 60%); }

  .articles-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .articles-header { margin-bottom: 2.5rem; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .service-card { padding: 2rem; }
  .contact-form { padding: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-trust { gap: 1.25rem; }
  .hero-cta-row .btn { flex: 1; justify-content: center; }
}

/* ============================================================
 * Logo images (from Customizer)
 * .logo--image is added to the <a> when a header logo URL is set;
 * we drop the inline-icon spacing rules of plain .logo for cleanness.
 * ========================================================== */
.logo--image { padding: 0; gap: 0; }
.logo .logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}
.footer-brand .footer-logo-link { display: inline-block; }
.footer-brand .footer-logo-img {
  display: block;
  height: 90px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}
@media (max-width: 640px) {
  .logo .logo-img { height: 40px; max-width: 220px; }
  .footer-brand .footer-logo-img { height: 70px; max-width: 260px; }
}

/* ============================================================
 * White nav + white footer (v11 → v12 override)
 * Switches the top navigation and the footer to a clean white
 * background with appropriate dark text/link colours.
 * Body background stays cream so content area still feels warm.
 * ========================================================== */

/* Nav: solid white, no blur */
body > nav {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Footer: white background, dark text */
footer {
  background: #ffffff;
  color: var(--ink);
  border-top: 1px solid rgba(31, 48, 39, 0.08);
}
footer .footer-brand p { color: var(--muted); }
footer .footer-brand .logo { color: var(--forest) !important; }
footer h5 { color: var(--forest); }
footer .footer-col ul li a,
footer .footer-contact-label,
footer .footer-contact-value,
footer .footer-contact-value a { color: var(--ink); }
footer .footer-contact-label { color: var(--muted); }
footer .footer-col ul li a:hover,
footer .footer-contact-value a:hover { color: var(--terracotta); }
footer .footer-social a { color: var(--forest); }
footer .footer-social a:hover { color: var(--terracotta); }

/* Footer-bottom: re-tone for light background */
.footer-bottom { border-top: 1px solid rgba(31, 48, 39, 0.1); }
.footer-bottom > * { opacity: 1; color: var(--muted); }
.footer-bottom .footer-credit { color: var(--muted); }
.footer-bottom .footer-credit a { color: var(--terracotta); }
.footer-bottom .footer-credit a:hover { color: var(--forest); }
.footer-bottom .footer-legal a { color: var(--ink); }
.footer-bottom .footer-legal a:hover { color: var(--terracotta); }

/* ============================================================
 * Nav inner content alignment
 * Nav element stays full-viewport-width (white background spans
 * edge to edge), but its content (logo + nav-links) aligns with
 * the 1200px body .container above 1240px viewports.
 * Below 1240px the existing 2.5rem padding kicks in.
 * ========================================================== */
@media (min-width: 1240px) {
  body > nav {
    padding-left: calc((100% - 1200px) / 2);
    padding-right: calc((100% - 1200px) / 2);
  }
}
