body {
  background: #F4F1EB;
  margin: 0;
  color: #2A2420;
  font-family: 'Inter', sans-serif;
}

header {
  text-align: center;
  padding: 30px 20px;
}

nav a {
  display: block;
  margin: 10px 0;
  text-decoration: none;
  color: #2A2420;
  font-size: 15px;
  letter-spacing: 1px;
}

nav a:hover {
  opacity: 0.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.text {
  flex: 1;
}

.image {
  flex: 1;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 20px;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
}

p {
  font-size: 17px;
  line-height: 1.8;
}

figure {
  margin: 0;
}

figcaption {
  font-size: 13px;
  color: #5a4e43;
  margin-top: 8px;
  text-align: center;
  width: 100%;
}

figcaption a {
  color: #5b3d2a;
}

.button {
  display: inline-block;
  margin-top: 30px;
  border: 1px solid #412d1f;
  padding: 12px 22px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  color: #5b3d2a;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}

.button:hover {
  background: #5b3d2a;
  color: #d5cfc1;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  border: 1px solid #ddd;
  padding: 12px;
  font-size: 16px;
}

th {
  background: #EAE4DA;
}

.contact-link {
  margin: 20px 0;
  font-size: 18px;
}

.contact-link a {
  color: #5b3d2a;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 30px;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 4px;
}

.next-page {
  width: 100%;
  text-align: center;
  padding: 20px 0 40px;
}

footer {
  text-align: center;
  padding: 30px;
  font-size: 14px;
}

footer button {
  display: block;
  margin: 10px auto 0;
  background: none;
  border: 1px solid #412d1f;
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #5b3d2a;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
}

footer button:hover {
  background: #5b3d2a;
  color: #d5cfc1;
}

@media (min-width: 768px) {

  header {
    padding: 40px 20px;
  }

  nav a {
    display: inline;
    margin: 0 18px;
  }

  .container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    text-align: left;
    padding: 60px 20px;
    gap: 60px;
  }

  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 54px;
  }

  h3 {
    font-size: 28px;
  }

  p {
    font-size: 18px;
  }

  .text,
  .image {
    flex: 1 1 40%;
  }

  .experience-page article {
    flex-basis: 100%;
  }

  .home-page {
    align-items: flex-start;
  }

  .home-page .image img {
    height: 350px;
  }

  .home-page h2,
  .background-page h2 {
    margin-top: 0;
  }

  .map iframe {
    height: 350px;
  }

  .two-column {
    grid-template-columns: 1fr 1fr;
  }

  .one-column {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .one-column .image img {
    height: auto;
  }

  .contact-page {
    flex-direction: column;
    text-align: center;
  }

  .contact-page .text {
    max-width: 900px;
    margin: auto;
  }

}
