html,
body {
  height: 100%;
  margin: 0;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;

  font-family: "Montserrat", sans-serif;
  background: #e2ddd8;
  color: #333;
  text-align: center;
  align-items: center;
}
header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  background: #e2ddd8;
  color: #343c3f;
  padding: 1rem 0;
}

.social-link {
  transition: transform 0.2s ease-out;
  font-weight: 500;
}

.social-link:hover,
.phone-container:hover {
  transform: scale(1.05);
}

.logo-container {
  grid-column: 2;
}

.logo {
  width: clamp(140px, 20vw, 180px);
  height: auto;
  padding: 0.2rem;
}
header h1 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 3px;
}
header p {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: #fff;
  background-color: #a07f56;
  width: 100vw;
  padding: 0.4rem 0.25rem;
  box-sizing: border-box;
}

.phone-container a,
.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #2b3336;
  text-decoration: none;
}

.phone-container {
  transition: transform 0.2s ease-out;
  grid-column: 3; /* right side */
  justify-self: center;
}

main {
  margin-top: 0;
  flex: 1;
}
.choices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem auto;
  max-width: 1000px;
  gap: 2rem;
}
.choice {
  flex: 1 1 400px;
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  background: #343c3f;
  max-width: 90%;
}
.choice-heading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.choice:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.choice img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.choice h2 {
  font-family: "Montserrat", sans-serif;
  margin: 1rem 0;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: #fff;
}
.studio-intro {
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  background: #a07f56;
  color: #fff;
  font-weight: 800;
  padding: 0 2rem;
  margin: 0 auto;
}
.studio-intro img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
}
.studio-intro p {
  font-family: "Cormorant Garamond", serif;
  margin-top: 1rem;
  font-size: clamp(1rem, 2vw, 1.4rem);
  /* color: #555; */
}

.blurb {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: left;
  background-color: #e2ddd8;

  margin: 0 auto;
}
.blurb-container {
  /* width: 90%; */
  max-width: 52%;
  /* font-family: "Cormorant Garamond", serif; */
  font-weight: 500;
  color: #a07f56;
  font-size: clamp(1rem, 2vw, 1.4rem);
}
footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #2b3336;
  color: #fff;
  padding: 2rem 0;
  margin-top: 2rem;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.address {
  font-size: 16px;
}
footer a {
  color: #fff;
  text-decoration: none;
}

.footer-lable {
  color: #a07f56;
  font-size: 16px;
}

@media (max-width: 767px) {
  .footer-contact {
    width: 60%;
    margin: 0 auto;
  }
  .phone-number {
    display: none;
  }
}

@media (min-width: 767px) {
  .phone-container {
    /* justify-self: start; */
  }
  .social-links {
    justify-self: end;
  }
}
