* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  background: #111;
  line-height: 1.7;
  font-size: 17px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #CE6A85;
}

header {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}

header .site-name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

header .site-name a {
  text-decoration: none;
}

nav {
  font-size: 0.95rem;
}

nav a {
  margin-left: 1.5rem;
  color: #7f8080;
  text-decoration: none;
}

nav a:hover {
  color: #CE6A85;
}

nav a.active {
  color: #CE6A85;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

main {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  flex: 1;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

p {
  margin-bottom: 1rem;
}

hr {
  border: none;
  border-top: 1px solid #333;
  margin: 2.5rem 0;
}

.intro {
  font-size: 1.15rem;
  color: #FAA275;
  margin-bottom: 2.5rem;
  text-align: center;
}

.hero {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 2rem;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.page-card {
  border: 1px solid #333;
  padding: 1.5rem;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s;
}

.page-card:hover {
  border-color: #985277;
}

.page-card h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.page-card p {
  color: #7f8080;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.content p,
.content ul {
  max-width: 600px;
}

.content .gallery {
  max-width: none;
}

.content ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

.content li {
  margin-bottom: 0.3rem;
}

.half-width {
  width: 50%;
  height: auto;
  display: block;
  margin-bottom: 0.75rem;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
  margin-bottom: 2rem;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 0.75rem;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gallery {
  columns: 2;
  column-gap: 0.75rem;
  margin-top: 0.75rem;
  margin-bottom: 2rem;
}

.gallery img {
  width: 100%;
  display: block;
  margin-bottom: 0.75rem;
}

.contact-list {
  list-style: none;
  margin-left: 0;
  margin-top: 1rem;
}

.contact-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #222;
}

.contact-list li:last-child {
  border-bottom: none;
}

footer {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #636464;
}

footer a {
  color: #636464;
  margin-right: 1.25rem;
}

footer a:hover {
  color: #FF8C61;
}

.footer-links {
  margin-bottom: 0.75rem;
}

@media (max-width: 560px) {
  header {
    flex-direction: column;
    gap: 0.25rem;
  }

  nav a {
    margin-left: 0;
    margin-right: 1.25rem;
  }

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

  .gallery {
    columns: 1;
  }

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

  h1 {
    font-size: 1.6rem;
  }
}
