@charset "UTF-8";

:root {
  --paper: #dfccb1;
  --paper2: #e7d7c0;
  --ink: #080706;
  --line: rgba(8, 7, 6, .24);
  --max: 1536px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
}

body {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

.page {
  width: min(100%, var(--max));
  min-height: 100vh;
  margin: 0 auto;
  padding: 38px 88px 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 14%, rgba(255,255,255,.26), rgba(231,215,192,.48) 34%, rgba(218,197,168,.94) 100%),
    linear-gradient(180deg, #e5d2b6 0%, #dac3a3 100%);
}

.topbar {
  height: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.brand-mini {
  font-size: 24px;
  letter-spacing: .16em;
  font-weight: 400;
  line-height: 1;
  padding-top: 9px;
}

.top-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-width: 162px;
  border: 1px solid var(--ink);
  padding: 0 28px;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  background: rgba(255,255,255,.08);
}

.hero {
  position: relative;
  min-height: 738px;
}

.hero-copy {
  position: relative;
  z-index: 10;
  width: 430px;
  padding-top: 116px;
}

h1 {
  margin: 0;
  font-size: 94px;
  line-height: .88;
  font-weight: 400;
  letter-spacing: .035em;
}

.kanji {
  margin-top: 18px;
  font-size: 76px;
  line-height: 1;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS Mincho", Georgia, serif;
  font-weight: 600;
}

.short-rule {
  width: 42px;
  height: 1px;
  background: var(--ink);
  opacity: .55;
  margin: 34px 0 20px;
}

.hero-copy h2 {
  margin: 0 0 31px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
}

.hero-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
}

.marsh {
  position: absolute;
  z-index: 1;
  left: -100px;
  bottom: -2px;
  width: calc(100% + 200px);
  max-width: none;
  height: auto;
  opacity: .52;
}

.knife {
  position: absolute;
  z-index: 6;
  top: 116px;
  right: 232px;
  width: 37%;
  max-width: 520px;
  height: auto;
  opacity: 1;
  filter: contrast(1.06);
}

.info-grid {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
  padding: 0 84px;
}

.info-card {
  min-height: 350px;
  padding: 0 44px;
  border-left: 1px solid var(--line);
}

.info-card:first-child {
  border-left: 0;
  padding-left: 0;
}

.info-card:last-child {
  padding-right: 0;
}

.icon {
  width: 42px;
  height: 42px;
  margin-bottom: 23px;
  position: relative;
}

.icon-name {
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.icon-knife:before,
.icon-knife:after {
  content: "";
  position: absolute;
  border-left: 2px solid var(--ink);
  border-top: 2px solid var(--ink);
  transform: rotate(45deg);
}

.icon-knife:before {
  width: 24px;
  height: 24px;
  left: 7px;
  top: 13px;
}

.icon-knife:after {
  width: 12px;
  height: 12px;
  left: 25px;
  top: 22px;
}

.icon-use {
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.icon-use:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 20px;
  width: 24px;
  height: 8px;
  border-top: 2px solid var(--ink);
  border-radius: 50%;
}

.info-card h3 {
  margin: 0 0 23px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: .31em;
}

.info-card p,
.info-card li {
  font-size: 15.5px;
  line-height: 1.56;
}

.info-card p {
  margin: 0 0 17px;
}

.info-card ul {
  margin: 0;
  padding-left: 20px;
}

.info-card li {
  margin-bottom: 10px;
}

.buy-section {
  position: relative;
  z-index: 13;
  text-align: center;
  padding-top: 24px;
}

.main-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 444px;
  height: 56px;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 14px;
  background: rgba(255,255,255,.10);
}

.bottom-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  padding: 0 86px;
}

.bottom-divider:before,
.bottom-divider:after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1;
}

.bottom-divider span {
  font-size: 22px;
}

@media (max-width: 900px) {
  .page {
    padding: 24px 24px 48px;
  }

  .topbar {
    height: 48px;
  }

  .brand-mini {
    font-size: 16px;
  }

  .top-buy {
    min-width: 0;
    height: 42px;
    font-size: 12px;
    letter-spacing: .14em;
    padding: 0 14px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    width: 100%;
    padding-top: 54px;
  }

  h1 {
    font-size: 58px;
  }

  .kanji {
    font-size: 54px;
  }

  .hero-copy h2 {
    font-size: 23px;
  }

  .marsh {
    left: -330px;
    bottom: 0;
    width: 1120px;
    opacity: .48;
  }

  .knife {
    top: 272px;
    right: auto;
    left: 50%;
    transform: translateX(-42%);
    width: 480px;
    max-width: none;
  }

  .info-grid {
    grid-template-columns: 1fr;
    padding: 0;
    margin-top: 18px;
  }

  .info-card,
  .info-card:first-child,
  .info-card:last-child {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 28px 0;
    min-height: 0;
  }

  .main-buy {
    min-width: 0;
    width: 100%;
    height: 56px;
    font-size: 12px;
    letter-spacing: .14em;
  }

  .bottom-divider {
    padding: 0;
  }
}


/* Mobilfix: vis hele kniven i hero-sektionen */
@media (max-width: 900px) {
  .hero {
    min-height: 860px;
  }

  .marsh {
    left: 50%;
    transform: translateX(-50%);
    bottom: 42px;
    width: 1120px;
    max-width: none;
    opacity: .42;
  }

  .knife {
    top: 455px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(-17deg);
    width: min(92vw, 430px);
    max-width: none;
    opacity: 1;
    z-index: 8;
  }

  .info-grid {
    margin-top: 24px;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 820px;
  }

  .knife {
    top: 438px;
    width: 390px;
  }

  .marsh {
    bottom: 28px;
    width: 1040px;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: 785px;
  }

  .knife {
    top: 430px;
    width: 360px;
  }
}


/* Mobilfix v8: hele kniven synlig ved landing */
@media (max-width: 900px) {
  .hero {
    min-height: 760px;
  }

  .hero-copy {
    padding-top: 46px;
  }

  .marsh {
    left: 50%;
    transform: translateX(-50%);
    bottom: 78px;
    width: 980px;
    max-width: none;
    opacity: .40;
  }

  .knife {
    top: 385px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(-17deg);
    width: min(84vw, 350px);
    max-width: none;
    opacity: 1;
    z-index: 8;
  }

  .info-grid {
    margin-top: 10px;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 735px;
  }

  .knife {
    top: 372px;
    width: 330px;
  }

  .marsh {
    bottom: 70px;
    width: 930px;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 710px;
  }

  .knife {
    top: 365px;
    width: 305px;
  }

  .marsh {
    bottom: 66px;
    width: 880px;
  }
}
