@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;1,400&family=Inter:wght@300;400;500;600&display=swap");
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --content-width: 65rem;
  --text-width: 38rem;
  --color-bg: #F4F1EC;
  --color-text: #1C1C1C;
  --color-muted: #8C7B6B;
  --color-accent: #3D6B8E;
  --color-signal: #C4531A;
  --color-border: rgba(28, 28, 28, 0.12);
}

html {
  font-family: "Lora", Georgia, serif;
  font-size: 1.0625rem;
  line-height: 1.8;
  background-color: #F4F1EC;
  color: #1C1C1C;
  -webkit-font-smoothing: antialiased;
}

li {
  list-style: none;
}

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

strong,
b {
  font-weight: 500;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  color: #1C1C1C;
}

.page {
  padding: 5vh 5vw 10vh;
}

.page > * {
  max-width: var(--content-width);
  margin: 0 auto;
}

.header {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header .logo {
  display: block;
  margin-bottom: 1.5rem;
  padding: 0.375rem 0;
}

.header a {
  font-family: "Inter", system-ui, sans-serif;
  position: relative;
  text-transform: uppercase;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  padding: 0.375rem 0;
  font-weight: 500;
  color: #8C7B6B;
  transition: color 0.2s ease;
}

.header a:hover {
  color: #1C1C1C;
}

.menu a {
  margin: 0 0.75rem;
}

.menu a[aria-current] {
  color: #1C1C1C;
  border-bottom: 1.5px solid #1C1C1C;
}

@media screen and (min-width: 640px) {
  .header .logo {
    margin-bottom: 0;
  }
  .header {
    flex-direction: row;
    justify-content: space-between;
  }
  .menu {
    margin-right: -0.75rem;
  }
}
main {
  min-height: calc(100vh - 10rem);
}

main h1 {
  padding: 1.5em 0 0.5em;
}

main ul,
main ol {
  padding-left: 0;
}

.footer {
  padding: 1.5rem 5vw 10vh;
  text-align: center;
  max-width: var(--content-width);
  margin: 0 auto;
  line-height: 1.8;
}

.footer a {
  font-family: "Inter", system-ui, sans-serif;
  display: inline-block;
  font-size: 0.8125rem;
  color: #8C7B6B;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #1C1C1C;
}

.footer > a {
  margin-bottom: 1.5rem;
  border-top: 1.5px solid #1C1C1C;
  color: #1C1C1C;
  width: 16.5rem;
  padding-top: 0.375rem;
}

.text {
  max-width: var(--text-width);
  margin: 0 auto;
  line-height: 1.8;
}

.text p,
.text figure,
.text ul,
.text ol {
  margin-bottom: 0.75em;
}

.text h2 {
  font-family: "Lora", Georgia, serif;
  font-size: 1.375rem;
  font-weight: 400;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

@media screen and (min-width: 640px) {
  .text h2 {
    text-align: initial;
  }
}
.text > *:first-child {
  margin-top: 0;
}

.text a {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #3D6B8E;
  border-bottom: 1.5px solid #3D6B8E;
  display: inline;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.text a:hover {
  opacity: 0.7;
}

.text figure {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.text img {
  width: 100%;
}

.text ul,
.blogitem ul {
  padding-left: 1.5rem;
}
.text ul li,
.blogitem ul li {
  list-style-type: disc;
}

.tags {
  font-family: "Inter", system-ui, sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #8C7B6B;
}

.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.social a {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border: 1.5px solid #3D6B8E;
  background: #3D6B8E;
  color: #F4F1EC;
  width: 7.5rem;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social a:hover {
  background: rgb(48.7399014778, 85.4945812808, 113.4600985222);
  border-color: rgb(48.7399014778, 85.4945812808, 113.4600985222);
  color: #F4F1EC;
}

.intro {
  background-image: linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)), url("../images/intro-background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 1.5rem;
  position: relative;
  height: 300px;
  padding: 7vh 0;
  text-align: center;
}

.intro h1 {
  font-family: "Lora", Georgia, serif;
  color: #F4F1EC;
  padding: 30px 0 0;
  position: relative;
  margin-bottom: 0;
  font-weight: 400;
  font-size: calc(1vw + 2rem);
  z-index: 1;
}

.intro .button {
  font-family: "Inter", system-ui, sans-serif;
  background: rgba(244, 241, 236, 0.12);
  border: 1.5px solid rgba(244, 241, 236, 0.85);
  color: #F4F1EC;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.75rem;
  padding: 0.625rem 1.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.intro .button:hover {
  background: #3D6B8E;
  color: #F4F1EC;
  border-color: #3D6B8E;
}

.blogitem {
  max-width: var(--text-width);
  margin: 0 auto;
}
.blogitem-header {
  text-align: center;
}
.blogitem-date {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8125rem;
  color: #8C7B6B;
  margin-bottom: 0.375rem;
  display: block;
}

.blogitem h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.blogitem time {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  color: #8C7B6B;
}

.blog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 1.5rem;
  grid-auto-rows: 1fr;
}

.blogitem a {
  display: block;
  padding: 1rem;
  line-height: 1.35;
}

.blogitem h2 {
  font-size: 1rem;
}

.notice,
.warning {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  background: rgba(196, 83, 26, 0.07);
  border-left: 2.5px solid #C4531A;
  padding: 0.375rem 0.75rem;
  border-radius: 0 4px 4px 0;
  color: #C4531A;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.layout {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 3rem;
}

@media screen and (min-width: 45rem) {
  .layout {
    grid-template-columns: 1fr 2fr;
  }
}
.layout aside section {
  margin-bottom: 3rem;
}

.layout aside h2 {
  margin-bottom: 0.75rem;
}

.album-cover {
  position: relative;
  line-height: 0;
  margin-bottom: 6rem;
  background: #000;
  padding-bottom: 75%;
}

.album-cover figcaption {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  color: #fff;
  line-height: 1;
  padding: 1.5rem;
}

.album-cover img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.album-cover h1 {
  font-size: 3rem;
}

.album-text {
  max-width: 40rem;
  margin: 0 auto 6rem;
  text-align: center;
}

.album-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin: 0 auto;
  grid-gap: 1rem;
  max-width: calc(var(--content-width) - 15rem);
  justify-content: center;
}

.album-gallery[data-even] {
  grid-template-columns: repeat(4, 1fr);
}

.album-gallery[data-count="1"] {
  grid-template-columns: 1fr;
}

.album-gallery[data-count="2"] {
  grid-template-columns: 1fr 1fr;
}

.blog {
  display: grid;
  list-style: none;
  grid-gap: 1rem;
  line-height: 0;
}
.blog li {
  overflow: hidden;
  background: #000;
}
.blog figure {
  margin: 0;
  position: relative;
  padding-bottom: 125%;
}
.blog figcaption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  line-height: 1.5em;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.125em;
}
.blog img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.blog img:hover {
  opacity: 0.2;
}
@media screen and (min-width: 30em) {
  .blog {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 60em) {
  .blog {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog[data-even] {
    grid-template-columns: repeat(4, 1fr);
  }
}

.blogitem {
  max-width: 35rem;
  margin: 0 auto;
}
.blogitem ul {
  /* Mimic UIkit's .uk-list-disc styles here as no class use in text */
  padding-left: 30px; /* Adjust according to UIkit's actual styles */
}
.blogitem ul li {
  list-style-type: disc; /* Assuming this is what .uk-list-disc does */
}
.blogitem-header {
  text-align: center;
}
.blogitem-date {
  margin-bottom: 0.5rem;
  display: block;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  grid-gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 3rem 0;
}

.gallery figure a {
  border: 0;
}

.gallery figure {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 45rem) {
  .gallery {
    margin-left: -3rem;
    margin-right: -3rem;
  }
}
.text {
  max-width: 35rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  list-style: none;
  grid-gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-flow: dense;
  margin-top: 3rem;
}

.grid li {
  position: relative;
  --cols: 1;
  --rows: 1;
  overflow: hidden;
  background: #1C1C1C;
  line-height: 0;
  font-size: 0;
}

.grid li:first-child {
  --cols: 2;
  --rows: 2;
}

.grid li:nth-child(4) a {
  padding-bottom: 100%;
}

.grid li:nth-child(5) {
  --cols: 2;
}

.grid li:nth-child(6) {
  --cols: 3;
  --rows: 2;
}

.grid li:nth-child(7) {
  --cols: 2;
}

.grid a {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  line-height: 0;
  font-size: 0;
}

.grid figure {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  line-height: 0;
  font-size: 0;
}

.grid img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.grid li:hover img {
  transform: scale(1.04);
}

.grid figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(28, 28, 28, 0.82);
  color: #F4F1EC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0.875rem;
  line-height: 1.2;
  font-size: 0.6875rem;
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.grid li:hover figcaption {
  background: rgba(61, 107, 142, 0.88);
}

.grid .pursuit-name {
  display: block;
  line-height: 1.2;
  font-size: 0.6875rem;
}

.grid .pursuit-cta {
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: rgba(244, 241, 236, 0.6);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.grid li:hover .pursuit-cta {
  color: #F4F1EC;
}

@media screen and (min-width: 45em) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid li {
    grid-column-start: span var(--cols);
    grid-row-start: span var(--rows);
  }
  .grid a {
    padding-bottom: 52.65%;
  }
  .grid li:first-child a {
    padding-bottom: 0;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .grid li:nth-child(4) a {
    padding-bottom: 100%;
    height: 100%;
  }
}
.pursuit-hero {
  position: relative;
  line-height: 0;
  margin-bottom: 6rem;
  background: #000;
  padding-bottom: 75%;
}

.pursuit-hero figcaption {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  color: #fff;
  line-height: 1;
  padding: 1.5rem;
}

.pursuit-hero img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pursuit-hero h1 {
  font-size: 3rem;
}

.pursuit-text {
  max-width: 40rem;
  margin: 0 auto 6rem;
  text-align: center;
}

.pursuit-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin: 0 auto;
  grid-gap: 1rem;
  max-width: calc(var(--content-width) - 15rem);
  justify-content: center;
}

.pursuit-gallery[data-even] {
  grid-template-columns: repeat(4, 1fr);
}

.pursuit-gallery[data-count="1"] {
  grid-template-columns: 1fr;
}

.pursuit-gallery[data-count="2"] {
  grid-template-columns: 1fr 1fr;
}

.pursuits {
  display: grid;
  list-style: none;
  grid-gap: 1rem;
  line-height: 0;
}

@media screen and (min-width: 30em) {
  .pursuits {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 60em) {
  .pursuits {
    grid-template-columns: repeat(3, 1fr);
  }
  .pursuits[data-even] {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pursuits li {
  overflow: hidden;
  background: #1C1C1C;
}

.pursuits figure {
  margin: 0;
  position: relative;
  padding-bottom: 125%;
}

.pursuits figcaption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #F4F1EC;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  line-height: 1.5em;
  padding: 1rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: background 0.3s ease;
}

.pursuits li:hover figcaption {
  background: rgba(0, 0, 0, 0.2);
}

.pursuits img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.pursuits li:hover img {
  transform: scale(1.03);
}