/*
  Kronjyllands Camping Center.

  Written from the front-page design (forside mockup v31). Measurements are the design's own
  wherever it gives one; where it only drew one width, the narrower layouts follow its two
  breakpoints, 1020px and 650px.

  Order: tokens, base, layout primitives, header, footer, the ordinary blocks, then one
  section per front-page band in the order the design stacks them.
*/

/* ---- Tokens --------------------------------------------------------------------------- */

:root {
  --ink: #151514;
  --paper: #f4f1eb;
  --soft: #fbfaf7;
  --sand: #d0c0ab;
  --night: #181817;
  --night-2: #20201f;
  --muted: #77736c;
  --line: rgba(21, 21, 20, .13);

  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;

  /* The side margin every band keeps. */
  --gutter: 6.2vw;

  /* The widest an ordinary content band's column grows. Mirrored as ContentWidth in
     ViewComponents/BlockWidths.cs, which must change with it. */
  --measure: 1500px;
}

/* ---- Base ----------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input {
  font: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  z-index: 100;
  top: -100px;
  left: 16px;
  padding: 10px 16px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

/* ---- Shared type ------------------------------------------------------------------------ */

.kicker {
  margin-bottom: 14px;
  color: #7b7770;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.display {
  font-family: var(--serif);
  font-size: clamp(44px, 5.2vw, 74px);
  font-weight: 400;
  line-height: .97;
  letter-spacing: -.045em;
}

.display--small {
  font-size: clamp(29px, 3vw, 42px);
  line-height: .98;
  letter-spacing: -.035em;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.section-head__intro {
  max-width: 480px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.text-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.text-link::after {
  content: " →";
}

.text-link--back::after {
  content: none;
}

.text-link--back::before {
  content: "← ";
}

/* ---- Buttons ---------------------------------------------------------------------------- */

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .2s, color .2s;
}

.btn:hover {
  background: var(--paper);
}

/* The arrow the design puts on the buttons that take you further in. */
.btn--go::after {
  content: " →";
  white-space: pre;
}

.btn--dark {
  background: #171716;
  color: #fff;
}

.btn--dark:hover {
  background: #3a3a37;
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, .75);
  background: transparent;
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.btn--outline {
  border: 1px solid rgba(0, 0, 0, .18);
}

/* ---- Points: the rows of small-capital keywords ----------------------------------------- */

.points {
  color: #a9a59d;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.points--row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 24px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.points--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 23px 0 29px;
  border-top: 1px solid rgba(255, 255, 255, .17);
  border-bottom: 1px solid rgba(255, 255, 255, .17);
  color: inherit;
  font-size: 10px;
  letter-spacing: .06em;
}

.points--grid li {
  padding: 17px 0;
}

.points--grid li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, .17);
}

.points--grid li:nth-child(even) {
  padding-left: 20px;
}

/* On light ground. */
.points--light {
  border-color: #e3ddd4;
  color: #47433d;
}

.points--light li:nth-child(odd) {
  border-color: #e3ddd4;
}

.points--row.points--light {
  gap: 10px 18px;
  margin-bottom: 16px;
  padding: 12px 0;
  border-color: rgba(0, 0, 0, .09);
  color: #6e685f;
}

/* ---- Picture helpers --------------------------------------------------------------------- */

/* A picture that fills its box, cropped rather than squashed. */
.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Header ------------------------------------------------------------------------------ */

.masthead {
  position: relative;
  z-index: 20;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

/*
  A page that opens on a hero lays the whole masthead over the picture, as the design draws
  the front page. Decided from the markup rather than a setting: move the hero down the page
  and the header goes back to being an ordinary band on its own.
*/
body:has(.page > .umb-block-grid > .umb-block-grid__layout-container > .umb-block-grid__layout-item:first-child .hero) .masthead {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  color: #fff;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 34px;
  padding: 0 5.5vw;
  background: var(--night);
  color: #fff;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body:has(.page > .umb-block-grid > .umb-block-grid__layout-container > .umb-block-grid__layout-item:first-child .hero) .topbar {
  background: rgba(8, 8, 8, .38);
}

.topbar__contact {
  display: flex;
  gap: .6em;
}

.topbar__contact > * + *::before {
  content: "·";
  margin-right: .6em;
}

.topbar a:hover {
  text-decoration: underline;
}

.site-header {
  display: flex;
  align-items: center;
  height: 92px;
  padding: 0 5.5vw;
}

body:has(.page > .umb-block-grid > .umb-block-grid__layout-container > .umb-block-grid__layout-item:first-child .hero) .site-header {
  border-bottom: 1px solid rgba(255, 255, 255, .20);
}

.site-header__brand {
  display: flex;
  align-items: center;
  height: 76px;
}

.site-header__logo {
  width: auto;
  height: 68px;
  max-width: 340px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: block;
  padding: 10px 0;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.site-nav__sub {
  position: absolute;
  top: 100%;
  left: -18px;
  display: none;
  min-width: 220px;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
  color: var(--ink);
}

.site-nav__item--has-children:hover .site-nav__sub,
.site-nav__item--has-children:focus-within .site-nav__sub {
  display: block;
}

.site-nav__sub-link {
  display: block;
  padding: 9px 18px;
  font-weight: 400;
}

.site-nav__sub-link:hover,
.site-nav__sub-link.is-active {
  background: var(--paper);
}

.site-nav__cta {
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

body:has(.page > .umb-block-grid > .umb-block-grid__layout-container > .umb-block-grid__layout-item:first-child .hero) .site-nav__cta {
  border-color: rgba(255, 255, 255, .72);
}

.site-nav__cta:hover {
  background: rgba(127, 127, 127, .14);
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 12px 8px;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

.site-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
}

/* ---- Footer ------------------------------------------------------------------------------ */

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 35px;
  padding: 33px var(--gutter);
  background: #10100f;
  color: #96928c;
  font-size: 10px;
  line-height: 1.8;
}

.site-footer strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.site-footer__company > span,
.site-footer__company > a {
  display: block;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__copy {
  grid-column: 1 / -1;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  color: #6f6b65;
}

/* ---- Block grid -------------------------------------------------------------------------- */

/*
  Umbraco's block grid markup, laid out here rather than with its own stylesheet. The root is
  a stack of full-width bands; inside a Sektion's area the elements share a 12-column row
  and stack below 900px, which BlockWidths.cs mirrors as StackAt.
*/
.umb-block-grid__area-container,
.umb-block-grid__area > .umb-block-grid__layout-container {
  display: grid;
  grid-template-columns: repeat(var(--umb-block-grid--grid-columns, 12), minmax(0, 1fr));
  gap: 32px;
}

.umb-block-grid__area {
  grid-column: span var(--umb-block-grid--area-column-span, 12);
}

.umb-block-grid__area .umb-block-grid__layout-item {
  grid-column: span min(var(--umb-block-grid--item-column-span, 12), var(--umb-block-grid--grid-columns, 12));
}

@media (max-width: 900px) {
  .umb-block-grid__area .umb-block-grid__layout-item {
    grid-column: 1 / -1;
  }

  /* Quarters and thirds pair up as halves before they stack, as StackPairsAt expects. */
  .umb-block-grid__area .umb-block-grid__layout-item[data-col-span="3"],
  .umb-block-grid__area .umb-block-grid__layout-item[data-col-span="4"] {
    grid-column: span 6;
  }
}

@media (max-width: 600px) {
  .umb-block-grid__area .umb-block-grid__layout-item[data-col-span="3"],
  .umb-block-grid__area .umb-block-grid__layout-item[data-col-span="4"] {
    grid-column: 1 / -1;
  }
}

/* ---- Sektion ----------------------------------------------------------------------------- */

.band {
  padding: 88px var(--gutter);
}

.band__inner {
  max-width: var(--measure);
  margin: 0 auto;
}

.band--white {
  background: #fff;
}

.band--grey {
  background: var(--paper);
}

/* No green in this dealer's palette; a band set to it gets the nearest calm ground. */
.band--green {
  background: #ece7de;
}

.band--sand {
  background: var(--sand);
}

.band--dark {
  background: var(--night);
  color: #fff;
}

.band--dark .kicker {
  color: #9b978f;
}

.band--dark .section-head__intro {
  color: #aaa69e;
}

/*
  A section whose blocks all chose to render nothing takes no space. The featured-units block
  is the usual case: with nothing marked as featured in Danbase it writes no markup, and the
  section around it would otherwise leave a band of empty padding in the middle of the page.
*/
.band:not(:has(.umb-block-grid__layout-item > *)) {
  display: none;
}

/* A section holding the hero gives it the whole width and no padding. */
.band:has(.hero) {
  padding: 0;
}

.band:has(.hero) > .band__inner {
  max-width: none;
}

.band:has(.hero) .umb-block-grid__area-container,
.band:has(.hero) .umb-block-grid__area > .umb-block-grid__layout-container {
  gap: 0;
}

/*
  The search bar tucks up over the bottom of the hero, whether it sits in the hero's own
  section or in the one straight after it.
*/
.band:has(.hero) .search {
  width: 89%;
  margin: -48px auto 0;
}

.umb-block-grid__layout-item:has(.hero) + .umb-block-grid__layout-item > .band:has(.search) {
  padding-top: 0;
}

.umb-block-grid__layout-item:has(.hero) + .umb-block-grid__layout-item > .band .search {
  margin-top: -48px;
}

/* ---- Ordinary blocks: headings, text, text and picture ----------------------------------- */

.heading {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.04em;
}

.heading--1 {
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: .97;
}

.heading--2 {
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1;
}

.heading--3 {
  font-size: 28px;
  line-height: 1.1;
}

.heading--4 {
  font-size: 21px;
  line-height: 1.2;
}

.rich-text {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
}

.rich-text > * + * {
  margin-top: 1em;
}

.rich-text h2,
.rich-text h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.rich-text h2 {
  margin-top: 1.4em;
  font-size: 34px;
}

.rich-text h3 {
  margin-top: 1.4em;
  font-size: 24px;
}

.rich-text ul {
  padding-left: 1.2em;
  list-style: disc;
}

.rich-text ol {
  padding-left: 1.2em;
  list-style: decimal;
}

.rich-text a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.text-image--image-right .text-image__media {
  order: 2;
}

.text-image__body .btn {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .text-image {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .text-image--image-right .text-image__media {
    order: 0;
  }
}

/* ---- Hero -------------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 870px;
  overflow: hidden;
  background: var(--night);
  color: #fff;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

/* The design's two washes: dark from the left behind the words, dark from the foot. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 12, 11, .72) 0%, rgba(12, 12, 11, .43) 39%, rgba(12, 12, 11, .08) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, .30), transparent 42%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 var(--gutter) 110px;
}

.hero__kicker {
  margin-bottom: 18px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .30em;
  text-transform: uppercase;
}

.hero__heading {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(62px, 7.6vw, 112px);
  font-weight: 400;
  line-height: .90;
  letter-spacing: -.045em;
}

.hero__text {
  max-width: 630px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, .92);
  font-size: 18px;
  line-height: 1.65;
}

/* The design sets the hero's buttons in sentence case, unlike every other button. */
.hero .btn {
  text-transform: none;
}

.hero__aside {
  position: absolute;
  right: 5.5vw;
  bottom: 100px;
  z-index: 2;
  width: 240px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, .38);
}

.hero__aside strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.15;
}

.hero__aside span {
  display: block;
  margin-top: 9px;
  color: #ddd;
  font-size: 10px;
  line-height: 1.55;
}

/* ---- Search bar -------------------------------------------------------------------------- */

.search {
  position: relative;
  z-index: 8;
  overflow: hidden;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(0, 0, 0, .13);
  color: var(--ink);
}

.search__tabs {
  display: flex;
  margin: 0;
  padding: 0 0 0 22px;
  border: 0;
  border-bottom: 1px solid #ece9e4;
}

.search__tab {
  position: relative;
  padding: 15px 19px;
  border-bottom: 2px solid transparent;
  color: #8b877f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.search__tab input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.search__tab:has(input:checked) {
  border-bottom-color: #171716;
  color: #171716;
}

.search__tab:has(input:focus-visible) {
  outline: 2px solid #171716;
  outline-offset: -4px;
}

.search__fields {
  display: grid;
  grid-template-columns: repeat(var(--fields, 5), minmax(0, 1fr)) minmax(120px, .72fr);
}

.search__field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 88px;
  padding: 22px 19px;
  border-right: 1px solid #ece9e4;
}

.search__field--tow {
  background: var(--paper);
}

.search__label {
  margin-bottom: 8px;
  color: #8d8981;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.search__field select,
.search__field input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #1b1b1a;
  font-size: 13px;
  font-weight: 700;
}

.search__field:focus-within {
  box-shadow: inset 0 -2px 0 #171716;
}

.search__submit {
  border: 0;
  background: #171716;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.search__submit::after {
  content: " →";
}

.search__submit:hover {
  background: #3a3a37;
}

/* ---- Cards: Genveje, Butik and Inspiration share one picture card ------------------------ */

.card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 24px;
  background: #494945;
  color: #fff;
}

.card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.card:hover .card__image {
  transform: scale(1.03);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02) 34%, rgba(0, 0, 0, .72));
}

.card__copy {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* The link sits on the heading and is stretched over the whole card. */
.card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
}

.card__overline {
  margin-bottom: 10px;
  font-size: 9px;
  letter-spacing: .2em;
  opacity: .72;
}

.card__heading {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
}

.card__text {
  max-width: 260px;
  color: #ddd;
  font-size: 11px;
  line-height: 1.55;
}

.card__more {
  display: inline-block;
  margin-top: 14px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.card__more::after {
  content: " →";
}

.card__arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  font-size: 22px;
}

/* A card with no picture yet, drawn in the design's warm greys rather than left flat. */
.card--plain:nth-child(4n + 1) { background: linear-gradient(145deg, #8f8172, #4c433b); }
.card--plain:nth-child(4n + 2) { background: linear-gradient(145deg, #69777a, #323d40); }
.card--plain:nth-child(4n + 3) { background: linear-gradient(145deg, #a58e70, #554838); }
.card--plain:nth-child(4n + 4) { background: linear-gradient(145deg, #77736b, #3d3a35); }

/* ---- Genveje ----------------------------------------------------------------------------- */

.routes {
  padding: 105px var(--gutter);
}

.routes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.card--route {
  min-height: 405px;
  border: 1px solid rgba(0, 0, 0, .04);
}

.card--route .card__heading {
  font-size: 30px;
}

/* ---- Mærkestribe ------------------------------------------------------------------------- */

.brand-strip {
  display: grid;
  grid-template-columns: .75fr 1.05fr 1.2fr;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  padding: 54px var(--gutter);
  background: var(--sand);
}

.brand-strip__logo img {
  width: 100%;
  max-width: 280px;
  mix-blend-mode: multiply;
}

.brand-strip .kicker {
  color: #6c6358;
}

.display--strip {
  margin-bottom: 16px;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: .98;
  letter-spacing: -.04em;
}

.brand-strip__copy p:last-child {
  max-width: 680px;
  color: #403a33;
  font-size: 14px;
  line-height: 1.68;
}

.brand-strip__image {
  display: flex;
  justify-content: flex-end;
}

.brand-strip__image img {
  width: min(100%, 560px);
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, .18));
}

/* ---- Fremhævede enheder ------------------------------------------------------------------ */

.featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.product {
  position: relative;
  background: #fff;
}

.product__media {
  position: relative;
  height: 405px;
  overflow: hidden;
  background: linear-gradient(145deg, #f3efe8, #d7cfc3);
}

/* Stock photographs are photographs, not cut-outs, so they fill the panel. */
.product__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.product:hover .product__image {
  transform: scale(1.03);
}

.product__tag {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product__copy {
  padding: 27px 30px 31px;
}

.product__meta {
  color: #858179;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.product__title {
  margin: 9px 0 17px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.product__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.product__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #55514b;
  font-size: 11px;
}

.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.product__price {
  font-size: 13px;
}

.product__price s {
  margin-left: 8px;
  color: var(--muted);
  font-weight: 400;
}

/* ---- Mærkeoversigt ----------------------------------------------------------------------- */

.brand-showcase {
  padding: 42px var(--gutter) 46px;
  border-top: 1px solid #e5e1da;
  border-bottom: 1px solid #e5e1da;
  background: #fff;
}

.brand-showcase__label {
  margin-bottom: 24px;
  color: #8d8981;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .22em;
  text-align: center;
  text-transform: uppercase;
}

.brand-showcase__groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #e1ddd6;
  border-bottom: 1px solid #e1ddd6;
}

.brand-group {
  padding: 28px 34px 30px 0;
}

.brand-group + .brand-group {
  padding-left: 34px;
  border-left: 1px solid #e1ddd6;
}

.brand-group__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.brand-group__title {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.brand-group__count {
  color: #99958d;
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.brand-group__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 74px;
  padding: 10px 14px;
  border: 1px solid #ece8e1;
  background: #faf9f6;
  transition: border-color .2s;
}

a.brand-logo:hover {
  border-color: #c9c2b6;
}

/* multiply drops a JPEG logo's white box into the tile's own ground. */
.brand-logo img {
  max-width: 125px;
  max-height: 38px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* ---- Mærkeunivers ------------------------------------------------------------------------ */

.feature {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 650px;
}

.feature__media {
  position: relative;
  min-height: 560px;
  background: #494945;
}

.feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 85px 6vw;
  background: var(--night-2);
  color: #fff;
}

.feature .kicker {
  color: #9b978f;
}

.feature .display {
  margin-bottom: 23px;
  font-size: clamp(46px, 5vw, 74px);
  line-height: .96;
  letter-spacing: -.04em;
}

.feature__text {
  max-width: 500px;
  color: #bbb7af;
  font-size: 14px;
  line-height: 1.7;
}

.feature .btn {
  align-self: flex-start;
}

/* ---- Mærker side om side ----------------------------------------------------------------- */

.brand-cards {
  padding: 82px var(--gutter) 90px;
  background: var(--soft);
}

.brand-cards .section-head {
  margin-bottom: 38px;
}

.brand-cards .display {
  font-size: clamp(42px, 4.7vw, 66px);
  line-height: .98;
  letter-spacing: -.04em;
}

.brand-cards .section-head__intro {
  max-width: 500px;
  color: #736f68;
  font-size: 13px;
  line-height: 1.7;
}

.brand-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.brand-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  overflow: hidden;
  padding: 34px 34px 30px;
  border: 1px solid #e8e2d8;
  background: #fff;
}

.brand-card::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -48px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(208, 192, 171, .18);
}

.brand-card:nth-child(even)::before {
  background: rgba(80, 78, 72, .10);
}

.brand-card__word {
  position: absolute;
  top: 22px;
  right: 26px;
  color: rgba(20, 20, 19, .04);
  font-family: var(--serif);
  font-size: 72px;
  line-height: 1;
  letter-spacing: -.04em;
  pointer-events: none;
}

.brand-card__top,
.brand-card .points,
.brand-card__bottom {
  position: relative;
  z-index: 2;
}

.brand-card__logo {
  display: flex;
  align-items: center;
  height: 56px;
  margin-bottom: 26px;
}

.brand-card__logo img {
  width: auto;
  max-width: 170px;
  max-height: 48px;
  object-fit: contain;
}

.brand-card__heading {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.03em;
}

.brand-card__top p {
  max-width: 470px;
  color: #666158;
  font-size: 13px;
  line-height: 1.7;
}

.brand-card .points--grid {
  margin: 28px 0 24px;
}

.brand-card .points--grid li {
  padding: 15px 0;
}

.brand-card .points--grid li:nth-child(even) {
  padding-left: 18px;
}

.brand-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.brand-card__bottom p {
  max-width: 310px;
  color: #1a1a19;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.brand-card__bottom .btn {
  flex-shrink: 0;
}

/* ---- Mærkebånd --------------------------------------------------------------------------- */

.brand-band {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 510px;
  background: #1a1a19;
  color: #fff;
}

.brand-band__media {
  position: relative;
  overflow: hidden;
  background: #494945;
}

.brand-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .40)),
    linear-gradient(90deg, transparent 62%, rgba(26, 26, 25, .28));
}

.brand-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px 5.6vw;
}

.brand-band .kicker {
  color: #9b978f;
}

.brand-band .display {
  margin-bottom: 20px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: .96;
  letter-spacing: -.04em;
}

.brand-band__text {
  max-width: 540px;
  color: #bbb7af;
  font-size: 14px;
  line-height: 1.7;
}

.brand-band__brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 28px 0 27px;
}

.brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #f6f3ed;
}

.brand-tile img {
  max-width: 125px;
  max-height: 48px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* ---- Mærkefremhævning -------------------------------------------------------------------- */

.highlight {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  min-height: 280px;
  border-top: 1px solid #e8dfd2;
  border-bottom: 1px solid #e8dfd2;
  background: #f5f0e8;
}

.highlight__copy {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 34px 4.8vw;
}

.highlight__logo {
  display: flex;
  flex: 0 0 160px;
  padding-top: 4px;
}

.highlight__logo img {
  max-width: 150px;
  max-height: 32px;
  object-fit: contain;
}

.highlight__text {
  flex: 1 1 auto;
}

.highlight .display {
  margin-bottom: 10px;
  color: #1d1d1b;
}

.highlight__text > p:not(.kicker) {
  max-width: 560px;
  margin-bottom: 16px;
  color: #69645c;
  font-size: 13px;
  line-height: 1.68;
}

.highlight__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #e2d4c1;
}

.highlight__media img {
  width: 86%;
  max-width: 460px;
  filter: drop-shadow(0 20px 20px rgba(0, 0, 0, .12));
}

/* ---- Værkstedsblok ----------------------------------------------------------------------- */

/*
  The design sets a strip of paper above the workshop, parting it from the light band that
  usually comes before it. A border rather than a spacer element, so it needs no block.
*/
.workshop {
  overflow: hidden;
  border-top: 64px solid var(--paper);
  background: #171716;
  color: #fff;
}

.workshop__hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: 610px;
}

.workshop__photo {
  position: relative;
  overflow: hidden;
  background: #494945;
}

.workshop__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .42));
}

/* The thin inset frame the design draws over the photograph. */
.workshop__photo::before {
  content: "";
  position: absolute;
  inset: 7%;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .19);
}

.workshop__note {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  max-width: 72%;
  padding: 14px 16px;
  border-left: 2px solid rgba(255, 255, 255, .55);
  background: rgba(0, 0, 0, .34);
  color: #efebe4;
  font-size: 10px;
  letter-spacing: .12em;
  line-height: 1.7;
}

.workshop__note strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -.02em;
}

.workshop__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px 6vw;
}

.workshop .kicker {
  color: #9b978f;
}

.workshop .display {
  margin-bottom: 24px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: .95;
}

.workshop__text {
  max-width: 560px;
  margin-bottom: 28px;
  color: #b8b4ad;
  font-size: 14px;
  line-height: 1.7;
}

.workshop__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 5px 0 31px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.workshop__stats li {
  min-width: 120px;
}

.workshop__stats strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.workshop__stats span {
  color: #97938b;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.workshop__services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #3b3b38;
}

.service {
  position: relative;
  min-height: 205px;
  padding: 30px 26px 32px;
  background: var(--night-2);
  transition: background-color .2s;
}

.service:has(.service__link):hover {
  background: #2a2a28;
}

.service__no {
  margin-bottom: 24px;
  color: #88847d;
  font-size: 9px;
  letter-spacing: .17em;
}

.service__heading {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.service__link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.service > p:not(.service__no) {
  margin-bottom: 20px;
  color: #aba79f;
  font-size: 11px;
  line-height: 1.6;
}

.service__more {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.service__more::after {
  content: " →";
}

.workshop__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px var(--gutter);
  background: var(--sand);
  color: #171716;
}

.workshop__bottom h3 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -.03em;
}

.workshop__bottom p {
  margin-top: 7px;
  color: #514b43;
  font-size: 12px;
}

.workshop__bottom .btns {
  flex-shrink: 0;
}

/* ---- Butik ------------------------------------------------------------------------------- */

.shop {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 520px;
  background: #f5f2ec;
}

.shop__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px var(--gutter);
}

.shop .display {
  margin-bottom: 22px;
  font-size: clamp(46px, 5vw, 72px);
  letter-spacing: -.04em;
}

.shop__text {
  max-width: 520px;
  margin-bottom: 26px;
  color: #666159;
  font-size: 14px;
  line-height: 1.7;
}

.shop__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 8px;
  border-top: 1px solid #d8d2c8;
}

.shop__links a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid #d8d2c8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.shop__links a::after {
  content: " →";
}

.shop__links li:nth-child(even) a {
  padding-left: 22px;
  border-left: 1px solid #d8d2c8;
}

.shop__links a:hover {
  background: rgba(0, 0, 0, .03);
}

.shop__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #d7ccbc;
}

.card--shop {
  min-height: 260px;
}

.card--shop .card__overline {
  margin-bottom: 7px;
  color: #ddd;
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 1;
}

.card--shop .card__heading {
  margin: 0;
  font-size: 24px;
}

/* ---- Grunde ------------------------------------------------------------------------------ */

.reasons {
  padding: 72px var(--gutter) 66px;
  background: #fff;
}

.reasons .section-head {
  margin-bottom: 39px;
}

.reasons .display {
  font-size: clamp(42px, 4.7vw, 65px);
  line-height: .98;
  letter-spacing: -.04em;
}

.reasons .section-head__intro {
  max-width: 460px;
  font-size: 13px;
  line-height: 1.7;
}

.reasons__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ded9d1;
  border-bottom: 1px solid #ded9d1;
}

.reason {
  padding: 27px 32px 28px 0;
}

.reason + .reason {
  padding-left: 32px;
  border-left: 1px solid #ded9d1;
}

.reason__no {
  margin-bottom: 18px;
  color: #9c978e;
  font-size: 8px;
  letter-spacing: .18em;
}

.reason__heading {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.reason > p:not(.reason__no) {
  max-width: 355px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.reason .text-link {
  margin-top: 14px;
}

/* ---- Seneste nyheder, and the news overview ---------------------------------------------- */

.news {
  padding: 82px var(--gutter) 88px;
  background: #fff;
}

.news .section-head {
  margin-bottom: 38px;
}

.news .display {
  font-size: clamp(42px, 4.8vw, 66px);
  line-height: .98;
  letter-spacing: -.04em;
}

.news .section-head__intro {
  font-size: 13px;
  line-height: 1.7;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.news__all {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.news__empty {
  color: var(--muted);
}

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #ebe5dc;
  background: #f7f4ee;
}

.news-card:nth-child(3n + 2) {
  background: #f2eee6;
}

.news-card__media {
  position: relative;
  height: 225px;
  overflow: hidden;
  background: linear-gradient(135deg, #8d8171, #51473e);
}

.news-card:nth-child(3n + 2) .news-card__media {
  background: linear-gradient(135deg, #c6b39c, #786958);
}

.news-card:nth-child(3n + 3) .news-card__media {
  background: linear-gradient(135deg, #666662, #2d2d2b);
}

.news-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .20));
}

.news-card__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 25px 27px;
}

.news-card__meta {
  margin-bottom: 10px;
  color: #918c83;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.news-card:nth-child(3n + 2) .news-card__meta {
  color: #6a5f51;
}

.news-card__heading {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.news-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.news-card__copy > p:not(.news-card__meta) {
  color: #6f6b64;
  font-size: 12px;
  line-height: 1.65;
}

.news-card__more {
  margin-top: auto;
  padding-top: 21px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.news-card__more::after {
  content: " →";
}

.news--index {
  padding-top: 0;
}

.page-head {
  padding: 82px var(--gutter) 48px;
  background: #fff;
}

/* ---- Inspiration ------------------------------------------------------------------------- */

.inspiration {
  padding: 82px var(--gutter) 88px;
  background: var(--paper);
}

.inspiration .section-head {
  margin-bottom: 38px;
}

.inspiration .display {
  font-size: clamp(43px, 4.9vw, 67px);
  letter-spacing: -.04em;
}

.inspiration__grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 14px;
}

.card--inspiration {
  min-height: 350px;
  background: #383835;
}

.card--inspiration.card--plain {
  background: linear-gradient(145deg, #8f806f, #493f37);
}

.card--inspiration .card__overline {
  margin-bottom: 8px;
  color: #ddd;
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 1;
}

.card--inspiration .card__heading {
  max-width: 430px;
  margin: 0;
  font-size: 27px;
}

/* ---- Besøg os ---------------------------------------------------------------------------- */

.visit {
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  background: var(--sand);
}

.visit__copy {
  padding: 65px var(--gutter);
}

.visit .kicker {
  color: #6c6358;
}

.visit .display {
  margin-bottom: 19px;
  font-size: clamp(45px, 5vw, 70px);
  line-height: .96;
  letter-spacing: -.04em;
}

.visit__text {
  max-width: 570px;
  margin-bottom: 25px;
  color: #514a42;
  font-size: 13px;
  line-height: 1.7;
}

.visit__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 50px 5vw;
  background: #191918;
  color: #fff;
}

.visit__line {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  font-size: 11px;
  line-height: 1.55;
}

.visit__line:first-child {
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.visit__line dt {
  padding-top: 2px;
  color: #918d86;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.visit__line dd {
  margin: 0;
}

.visit__line dd a:hover {
  text-decoration: underline;
}

/* ---- A news article ---------------------------------------------------------------------- */

.article {
  background: #fff;
}

.article__head {
  max-width: 900px;
  margin: 0 auto;
  padding: 82px var(--gutter) 40px;
}

.article__teaser {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.article__image {
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 0 var(--gutter);
}

.article__back {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter) 82px;
}

/* ---- Up to 1020px: tablets, small laptops ------------------------------------------------ */

@media (max-width: 1020px) {
  .site-header__toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 5.5vw 24px;
    background: var(--night);
    color: #fff;
    font-size: 15px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav__link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .site-nav__sub {
    position: static;
    display: block;
    padding: 0 0 8px 16px;
    background: none;
    box-shadow: none;
    color: inherit;
  }

  .site-nav__sub-link {
    padding: 8px 0;
  }

  .site-nav__sub-link:hover,
  .site-nav__sub-link.is-active {
    background: none;
    text-decoration: underline;
  }

  .site-nav__cta {
    align-self: flex-start;
    margin-top: 18px;
  }

  .hero__aside {
    display: none;
  }

  .search__fields {
    grid-template-columns: 1fr 1fr;
  }

  .search__field {
    border-bottom: 1px solid #ece9e4;
  }

  .search__submit {
    grid-column: 1 / -1;
    min-height: 64px;
  }

  .routes__grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-strip {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }

  .brand-strip__logo img {
    max-width: 220px;
  }

  .brand-strip__image {
    justify-content: center;
  }

  .featured__grid,
  .feature,
  .workshop__hero {
    grid-template-columns: 1fr;
  }

  .workshop__photo {
    min-height: 440px;
  }

  .workshop__services {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Up to 980px ------------------------------------------------------------------------- */

@media (max-width: 980px) {
  .brand-showcase__groups,
  .brand-cards__grid,
  .brand-band,
  .highlight,
  .shop,
  .visit {
    grid-template-columns: 1fr;
  }

  .brand-group {
    padding: 26px 0;
  }

  .brand-group + .brand-group {
    padding-left: 0;
    border-top: 1px solid #e1ddd6;
    border-left: 0;
  }

  .brand-band__media {
    min-height: 420px;
  }

  .highlight__media {
    min-height: 220px;
  }

  .reasons__list,
  .news__grid {
    grid-template-columns: 1fr;
  }

  .reason + .reason {
    padding-left: 0;
    border-top: 1px solid #ded9d1;
    border-left: 0;
  }

  .inspiration__grid {
    grid-template-columns: 1fr 1fr;
  }

  .card--inspiration:first-child {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Up to 650px: phones ----------------------------------------------------------------- */

@media (max-width: 650px) {
  .topbar {
    display: none;
  }

  .site-header {
    height: 84px;
    padding: 0 20px;
  }

  .site-header__logo {
    height: 56px;
    max-width: 260px;
  }

  .band {
    padding: 64px 22px;
  }

  .section-head {
    display: block;
  }

  .section-head__intro,
  .section-head .text-link {
    margin-top: 18px;
  }

  .hero {
    min-height: 720px;
  }

  .hero__copy {
    padding: 0 23px 80px;
  }

  .hero__heading {
    font-size: 58px;
  }

  .band:has(.hero) .search {
    width: 92%;
    margin-top: -28px;
  }

  .search__tabs {
    overflow-x: auto;
    padding-left: 8px;
  }

  .search__fields {
    grid-template-columns: 1fr;
  }

  .search__field {
    min-height: 69px;
    border-right: 0;
  }

  .routes {
    padding: 74px 22px;
  }

  .routes__grid {
    grid-template-columns: 1fr;
  }

  .card--route {
    min-height: 390px;
  }

  .product__media {
    height: 310px;
  }

  .brand-showcase {
    padding: 30px 22px;
  }

  .brand-group__title {
    font-size: 22px;
  }

  .brand-logo {
    height: 62px;
  }

  .feature__copy,
  .workshop__main {
    padding: 64px 24px;
  }

  .feature__media {
    min-height: 360px;
  }

  .brand-cards {
    padding: 62px 22px 70px;
  }

  .brand-card {
    min-height: auto;
    padding: 26px 24px 24px;
  }

  .brand-card__heading {
    font-size: 31px;
  }

  .brand-card .points--grid {
    grid-template-columns: 1fr;
  }

  .brand-card .points--grid li:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid #e3ddd4;
  }

  .brand-card .points--grid li:nth-child(even) {
    padding-left: 0;
  }

  .brand-card__bottom {
    display: block;
  }

  .brand-card__bottom .btn {
    margin-top: 18px;
  }

  .brand-card__word {
    top: 16px;
    right: 16px;
    font-size: 54px;
  }

  .brand-band__media {
    min-height: 310px;
  }

  .brand-band__copy {
    padding: 58px 23px;
  }

  .brand-tile {
    height: 68px;
  }

  .brand-tile img {
    max-width: 90px;
    max-height: 38px;
  }

  .points--row {
    gap: 10px 14px;
  }

  .highlight__copy {
    display: block;
    padding: 28px 23px;
  }

  .highlight__logo {
    margin-bottom: 12px;
    padding-top: 0;
  }

  .highlight .display {
    font-size: 34px;
  }

  .highlight__media {
    min-height: 190px;
  }

  .workshop__photo {
    min-height: 330px;
  }

  .workshop__note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    padding: 12px 13px;
  }

  .workshop__services {
    grid-template-columns: 1fr;
  }

  .workshop__bottom {
    display: block;
    padding: 38px 24px;
  }

  .workshop__bottom .btns {
    margin-top: 20px;
  }

  .shop__copy {
    padding: 58px 23px;
  }

  .shop__links {
    grid-template-columns: 1fr;
  }

  .shop__links li:nth-child(even) a {
    padding-left: 0;
    border-left: 0;
  }

  .card--shop {
    min-height: 205px;
    padding: 18px;
  }

  .reasons,
  .news,
  .inspiration {
    padding: 60px 22px;
  }

  .news-card__media {
    height: 210px;
  }

  .inspiration__grid {
    grid-template-columns: 1fr;
  }

  .card--inspiration:first-child {
    grid-column: auto;
  }

  .card--inspiration {
    min-height: 295px;
  }

  .visit__copy,
  .visit__info {
    padding: 50px 23px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 29px 22px;
  }

  .page-head,
  .article__head {
    padding: 60px 22px 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .card__image,
  .product__image {
    transition: none;
  }
}
