* { box-sizing: border-box; }

@font-face {
  font-family: 'Barlow';
  src: url('assets/Barlow-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Barlow';
  src: url('assets/Barlow-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

html, body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Barlow', Arial, sans-serif;
  color: #000000;
  background: #ffffff;
}

.page {
  width: 100vw;
  height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 250px minmax(0, 1fr);
  background: #ffffff;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  height: 100%;
}

.tile {
  margin: 0;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strip-top { position: relative; }

.strip-top .headline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 12px 0;
  background: rgba(255,255,255,0.82);
  /*letter-spacing: 0.0em;*/
  font-size: 30px;
  font-weight: 700;
  color: #766961;
  text-align: center;
  white-space: nowrap;
}

.band {
  position: relative;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 26px 40px 32px;
}

.band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  justify-items: center;
}

.cta {
  --1: #403b35;
  --2: #766961;
  --3: #a69589;
  --4: #b9a699;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.cta .dot {
  transition: background-color 0.25s ease;
}

.cta:hover .dot-1 { background: #292521; }
.cta:hover .dot-2 { background: #574d46; }
.cta:hover .label-3 { color: #85756a; }
.cta:hover .label-4 { color: #948478; }

.dot {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: inline-block;
}

.dot-1 { background: var(--1); }
.dot-2 { background: var(--2); }
.dot-3 { background: var(--3); }
.dot-4 { background: var(--4); }

.label {
  display: block;
  margin-top: 14px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.label-1 { color: var(--1); }
.label-2 { color: var(--2); }
.label-3 { color: var(--3); }
.label-4 { color: var(--4); }

.band-text {
  max-width: 33vw;
  margin-left: auto;
  font-size: 15px;
  line-height: 1.55;
  color: #000000;
}

@media (max-width: 1360px) {
  .page { width: 100vw; }
}


.strip .tile { position: relative; }
.strip .tile:nth-child(1)::after,
.strip .tile:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border-right: 2px dashed rgba(255,255,255,0.50);
  pointer-events: none;
}

.extra-section {
  min-height: 100vh;
  padding: 60px 10%;
  display: flex;
  align-items: center;
  background: #f7f7f7;
}

.extra-section:nth-of-type(even) {
  background: #e8e8e8;
}


.back-link {
  display: inline-block;
  margin-top: 40px;
  font-size: 18px;
  color: #766961;
  text-decoration: none;
}

.back-link:visited {
  color: #766961;
}

.back-link:hover {
  color: #292521;
}
