:root {
  --paper: #f7f4ed;
  --paper-warm: #eee9df;

  --muted: #6c7068;
  --green: #647763;
  --green-dark: #445446;
  --line: #d9d4c9;
  --white: #fffdf8;

  --bg: #f4f3ef;
  --bg-light: #faf9f6;
  --bg-dark: #e9e7e1;
  --ink: #292a28;
  --muted: #686a65;
  --line: #d3d1ca;
  --accent: #5e625d;
  --max: 1180px;
  --narrow: 720px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg-light);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  line-height: 1.25;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
}

h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  margin-bottom: .5rem;
  font-size: 1.25rem;
}

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 48px), var(--narrow));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  width: 100%;
  color: white;
  background: linear-gradient(to bottom, rgba(20,25,20,.45), transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}

.brand {
  display: flex;
  flex-direction: column;
  color: white;
  text-decoration: none;
}

.brand-name {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.45rem;
}

.brand-sub {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}

.nav {
  display: flex;
  gap: 2rem;
  font-size: .9rem;
}

.nav a {
  text-decoration: none;
  opacity: .92;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #667064;
}

.hero-image,
.image-break,
.split-image {
  background-size: cover;
  background-position: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(22,31,24,.54), rgba(22,31,24,.05)),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=2000&q=85");
    filter: grayscale(50%);
}

.hero-content {
  position: relative;
  padding-bottom: clamp(70px, 10vw, 130px);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--green);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255,255,255,.82);
}

.lead {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.7;
}

.section {
  padding: clamp(80px, 11vw, 145px) 0;
}

.intro {
  background: var(--bg-light);
}

.copy {
  align-self: center;
  max-width: 620px;
  padding-right: clamp(30px, 7vw, 100px);
}

.copy p:not(.eyebrow) {
  color: #555751;
}

.intro p:not(.eyebrow),
.split-copy p:not(.eyebrow),
.contact p:not(.eyebrow) {
  color: #575b54;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  background: var(--bg);
}

.split-image {
  min-height: 650px;
  background-image: url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1400&q=85");
  filter: grayscale(50%);
}

.split-copy {
  align-self: center;
  max-width: 600px;
  padding: 90px clamp(40px, 7vw, 110px);
}

.topics {
  background: var(--white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 4rem;
}

.section-heading > p:last-child {
  color: var(--muted);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.topic-grid article {
  padding: 2rem 2rem 2.5rem 0;
  border-bottom: 1px solid var(--line);
}

.topic-grid article:nth-child(3n+2),
.topic-grid article:nth-child(3n+3) {
  padding-left: 2rem;
  border-left: 1px solid var(--line);
}

.topic-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .95rem;
}

.quote-section {
  padding: clamp(90px, 12vw, 160px) 0;
  background: var(--green);
  color: #f7f5ef;
}

blockquote {
  max-width: 900px;
  margin: 0 auto;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.45;
  text-align: center;
}

.prices {
  background: var(--bg);
}

.price-list {
  border-top: 1px solid var(--line);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.price-row h3 {
  margin-bottom: .15rem;
}

.price-row p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.price-row strong {
  white-space: nowrap;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.image-break {
  min-height: 55vh;
  background-image:
    linear-gradient(rgba(30,40,35,.08), rgba(30,40,35,.08)),
    url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=2000&q=85");
    filter: grayscale(50%);
}

.contact {
  background: var(--bg-dark);
  padding-bottom: 100px;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-photo {
  min-height: 540px;
  background-image:
    url(images/laerke-profil.jpg);
}

.contact-grid .copy {
  padding: 80px clamp(35px, 7vw, 100px);
  max-width: none;
}

.contact-details {
  margin: 2.5rem 0 0;
  border-top: 1px solid var(--line);
}

.contact-details div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-details dt {
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
}

.contact-details a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 28px 0;
  color: #777b73;
  background: #e5e0d6;
  font-size: .78rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  nav {
    gap: 1rem;
  }

  nav a:nth-child(-n+2) {
    display: none;
  }

  .hero {
    min-height: 65vh;
  }

  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .copy {
    padding-right: 0;
  }

  .interior-photo,
  .contact-photo {
    min-height: 420px;
    margin-top: 45px;
  }

  .contact-grid .copy {
    padding: 70px 0 0;
  }
}

@media (max-width: 500px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .service-grid article + article,
  .service-grid article:nth-child(odd) {
    min-height: auto;
    padding: 1.4rem 0;
    border-left: 0;
  }

  .price-row {
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
  }
}

.photo {
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}
.contact-photo {
  min-height: 540px;
  background-image:
    url(images/laerke-profil.jpg);
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 36px), var(--max));
  }

  .header-inner {
    align-items: flex-start;
    padding-top: 18px;
  }

  .brand-sub {
    display: none;
  }

  .nav {
    font-size: .8rem;
  }

  .nav a {
    display: none;
  }

  .nav a:last-child {
    display: inline;
  }

  .hero-content {
    padding-bottom: 65px;
  }

  .topic-grid {
    grid-template-columns: 1fr;
  }

  .topic-grid article,
  .topic-grid article:nth-child(2n) {
    padding: 1.5rem 0;
    border-left: 0;
  }

  .price-row {
    align-items: flex-start;
  }

  .price-row strong {
    font-size: 1rem;
  }

  .contact-details p {
    grid-template-columns: 1fr;
    gap: .15rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}
