.nav1-topbar-contact a {
  color: var(--textColour1);
}

/* ===== SECTION: Contact Hero START ===== */

#contact-hero {
  position: relative;
  min-height: 65svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
  background-color: var(--bgColour1);
}

#contact-hero .container {
  z-index: 1;
}

/* Background Image */
.contact-hero__media {
  position: absolute;
  inset: 0;
}

.contact-hero__media picture,
.contact-hero__image {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-hero__image {
  object-fit: cover;
}

/* Overlay */
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(250, 247, 244, 0.96) 0%,
      rgba(250, 247, 244, 0.88) 48%,
      rgba(250, 247, 244, 0.72) 100%
    ),
    rgba(250, 247, 244, 0.45);
}

/* Content */
.contact-hero__content {
  max-width: 46rem;
  margin: 0 auto;
  display: grid;
  gap: var(--spaceSmmd);
  justify-items: center;
}

/* Heading */
.contact-hero__content h1 {
  font-weight: 500;
  line-height: 1.05;
}

/* Text */
.contact-hero__content > p:last-child {
  max-width: 36rem;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 768px) {
  #contact-hero {
    min-height: 65svh;
  }
}

/* ===== SECTION: Contact Hero END ===== */

/* ===== SECTION: Contact Options START ===== */

#contact-options {
  background-color: var(--bgColour2);
  text-align: center;
}

/* Grid */
.contact-options__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* Item */
.contact-options__item {
  display: grid;
  justify-items: center;
  gap: var(--spaceXs);
}

.contact-options__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--bgColour1);
  margin-bottom: var(--spaceXs);
}

.contact-options__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--mainBrandColour);
}

.contact-options__item h3 {
  font-family: var(--headerFont);
  font-weight: 500;
}

.contact-options__item a,
.contact-options__highlight {
  color: var(--mainBrandColour);
  font-weight: 600;
  text-decoration: none;
}

.contact-options__item a:hover,
.contact-options__item a:focus-visible {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 760px) {
  .contact-options__grid {
    grid-template-columns: 1fr;
    gap: var(--spaceMd);
  }
}

/* ===== SECTION: Contact Options END ===== */

/* ===== SECTION: Contact Form START ===== */

#contact-form {
  background-color: var(--bgColour1);
}

/* Grid */
.contact-form__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 32rem);
  gap: var(--spaceLg);
  align-items: start;
}

/* Content */
.contact-form__content {
  display: grid;
  gap: var(--spaceSmmd);
}

.contact-form__intro {
  max-width: 35rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Info Cards */
.contact-form__card {
  background-color: var(--bgColour3);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.contact-form__card--light {
  background-color: var(--bgColour2);
}

.contact-form__card h3 {
  font-family: var(--headerFont);
  margin-bottom: var(--spaceSmmd);
}

/* Opening Hours */
.contact-form__hours {
  display: grid;
  gap: 0.9rem;
}

.contact-form__hours div {
  display: flex;
  justify-content: space-between;
  gap: var(--spaceSmmd);
}

.contact-form__hours dt,
.contact-form__hours dd {
  font-weight: 300;
}

.contact-form__hours dd {
  margin: 0;
  font-weight: 300;
}

/* Expectations */
.contact-form__expectations {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.contact-form__expectations li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-weight: 300;
}

.contact-form__expectations svg {
  width: 18px;
  height: 18px;
  stroke: var(--mainBrandColour);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Form */
.contact-form__form {
  background-color: var(--bgColour2);
  border-radius: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: grid;
  gap: var(--spaceSm);
}

/* Fields */
.contact-form__field {
  display: grid;
  gap: 0.5rem;
}

.contact-form__field label {
  font-weight: 300;
  font-size: 0.9rem;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(51, 51, 51, 0.14);
  border-radius: 0.6rem;
  padding: 0.9rem 1rem;
  color: var(--textColour1);
  background-color: var(--bgColour2);
}

.contact-form__field textarea {
  resize: vertical;
}

/* Button */
.contact-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.5rem;
  background-color: var(--mainBrandColour);
  color: var(--textColour2);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.contact-form__button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Privacy */
.contact-form__privacy {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(51, 51, 51, 0.55);
}

/* Responsive */
@media (max-width: 950px) {
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__intro {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .contact-form__hours div {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* ===== SECTION: Contact Form END ===== */
