:root {
  color-scheme: light;
  --ink: #1f1c1a;
  --muted: #4e4a47;
  --sand: #f5efe6;
  --peach: #f2d3b1;
  --clay: #c9926b;
  --forest: #2e4a3b;
  --paper: #fffdfa;
  --shadow: 0 24px 60px rgba(31, 28, 26, 0.18);
  --radius: 28px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fbf4ec 0%, #f9f6f1 55%, #f2ede5 100%);
  line-height: 1.6;
}

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

a:hover {
  opacity: 0.85;
}

.hero {
  padding: 36px 24px 90px;
  background:
    linear-gradient(135deg, rgba(242, 211, 177, 0.9), rgba(243, 240, 232, 0.65)),
    url("https://www.unikutvei.no/IMG_6708.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.85), rgba(248, 243, 237, 0.6));
  mix-blend-mode: screen;
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 3.8vw, 4.2rem);
  margin: 0 0 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--forest);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 28px rgba(46, 74, 59, 0.2);
}

.button:hover {
  transform: translateY(-2px);
}

.button.ghost {
  background: transparent;
  color: var(--forest);
  border-color: rgba(46, 74, 59, 0.4);
  box-shadow: none;
}

.hero-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.hero-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-stat strong {
  font-size: 1.1rem;
  color: var(--ink);
}

.section {
  padding: 96px 24px;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.section-title h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  margin: 0;
}

.section-content {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.photo-panel {
  min-height: 280px;
  border-radius: var(--radius);
  background: url("https://images.unsplash.com/photo-1619690508332-b138b10153e3?q=80&w=1287&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")
    center/cover no-repeat;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: var(--paper);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 18px 35px rgba(31, 28, 26, 0.12);
}

.card h3 {
  font-family: "Fraunces", serif;
  margin-top: 0;
  margin-bottom: 12px;
}

.quote-wrap {
  background: linear-gradient(120deg, #fef7ec, #f6e7d5);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}

blockquote {
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin: 0;
  line-height: 1.5;
}

.quote-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: var(--muted);
}

.client-list {
  background: var(--paper);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(31, 28, 26, 0.1);
}

.footer {
  background: var(--forest);
  color: #fef7ec;
  padding: 48px 24px 0;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
}

.footer h2 {
  font-family: "Fraunces", serif;
  margin-top: 0;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
}

.footer-lead {
  font-size: 1.1rem;
  color: rgba(254, 247, 236, 0.8);
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-actions .button {
  background: #f5efe6;
  color: var(--forest);
  box-shadow: none;
}

.footer-actions .button.ghost {
  border-color: rgba(245, 239, 230, 0.5);
  color: #fef7ec;
  background: transparent;
}

.footer-image {
  margin-top: 32px;
  height: 180px;
  background: url("https://www.unikutvei.no/IMG_3628.JPG") center/cover no-repeat;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .quote-wrap {
    padding: 32px;
  }
}
