/* ==========================================================================
   CONTACTO page styles
   ========================================================================== */

/* ---------- Hero ---------- */
.contact-hero {
  position: relative;
  padding: 192px 0 128px;
  background: #fff;
}

.contact-hero .container {
  display: flex;
  gap: 64px;
}

.contact-hero__text {
  flex: 0 0 544px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-hero__tag {
  display: inline-block;
  background: rgba(254, 80, 0, .1);
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 1.2px;
  padding: 4px 12px;
  margin-bottom: 23px;
}

.contact-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.28px;
  color: var(--ink);
  margin-bottom: 23px;
}

.contact-hero__title-accent {
  color: var(--orange);
}

.contact-hero__lead {
  font-size: 18px;
  line-height: 1.6;
  color: #5c4037;
  margin-bottom: 40px;
}

.contact-hero__actions {
  display: flex;
  gap: 16px;
}

.contact-hero__actions .btn-primary {
  padding: 17px 32px;
  font-size: 16px;
}

.contact-hero__actions .btn-outline {
  padding: 16px 32px;
  border-color: var(--ink);
}

.contact-hero__img {
  flex: 0 0 544px;
  position: relative;
}

.contact-hero__img-wrap {
  border-left: 4px solid var(--orange);
  background: var(--gray-100);
  overflow: hidden;
}

.contact-hero__img-wrap img {
  width: 100%;
  height: 544px;
  object-fit: cover;
  opacity: .9;
}

.contact-hero__badge {
  position: absolute;
  bottom: 0;
  left: -32px;
  background: var(--orange);
  padding: 32px;
  color: #fff;
}

.contact-hero__badge h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}

.contact-hero__badge p {
  font-size: 12px;
  color: #fff;
  opacity: .9;
}

/* ---------- Channels Grid ---------- */
.channels {
  padding: 80px 0;
}

.channels__grid {
  display: grid;
  grid-template-columns: repeat(4, 270px);
  justify-content: space-between;
}

.channel-card {
  border: 1px solid #e2e2e2;
  padding: 32px 32px 49px;
}

.channel-card__icon {
  width: 48px;
  height: 48px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.channel-card__icon svg {
  color: var(--orange);
}

.channel-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1c1c;
  margin-bottom: 8px;
}

.channel-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #5c4037;
  margin-bottom: 24px;
}

.channel-card__link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .7px;
  color: var(--orange);
}

/* ---------- Contact Form Section ---------- */
.contact-form-section {
  padding: 48px 0;
}

.contact-form-section .container {
  display: flex;
  gap: 64px;
}

.contact-form__info {
  flex: 0 0 443px;
}

.contact-form__info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1c1c;
  margin-bottom: 23px;
}

.contact-form__info>p {
  font-size: 18px;
  line-height: 1.6;
  color: #5c4037;
  margin-bottom: 32px;
}

.contact-form__checks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form__check {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: #1a1c1c;
}

.contact-form__check svg {
  flex: none;
  color: #a83200;
}

.contact-form__card {
  flex: 1;
  background: #fff;
  border: 1px solid #e2e2e2;
  box-shadow: 0 1px 1.75px rgba(0, 0, 0, .05);
  padding: 48px 48px 64px;
}

.contact-form__card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 31px;
}

.contact-form__card .form-group {
  margin-bottom: 0;
}

.contact-form__card .form-group--full {
  margin-bottom: 31px;
}

.contact-form__card label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .7px;
  color: #1a1c1c;
  margin-bottom: 8px;
}

.contact-form__card input,
.contact-form__card select,
.contact-form__card textarea {
  width: 100%;
  background: #f9f9f9;
  border: 1px solid #e2e2e2;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 14px 16px;
}

.contact-form__card select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='%231a1c1c'%3E%3Cpath d='M6 7.4L0 1.4 1.4 0 6 4.6 10.6 0 12 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form__card textarea {
  height: 120px;
  resize: vertical;
}

.contact-form__card input::placeholder,
.contact-form__card textarea::placeholder {
  color: #6b7280;
}

.contact-form__card .btn-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  padding: 21px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.contact-form__card .btn-submit:hover {
  background: var(--orange-dark);
}

/* ---------- Location Section ---------- */
.location {
  background: #f9f9f9;
  padding: 48px 0;
}

.location .container {
  display: flex;
  gap: 64px;
}

.location__info {
  flex: 0 0 544px;
}

.location__info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1c1c;
  margin-bottom: 23px;
}

.location__address {
  font-size: 18px;
  line-height: 1.6;
  color: #1a1c1c;
  margin-bottom: 16px;
}

.location__desc {
  font-size: 16px;
  line-height: 1.5;
  color: #5c4037;
  margin-bottom: 40px;
}

.location__parking {
  background: #fff;
  border-left: 4px solid var(--orange);
  padding: 32px;
  display: flex;
  gap: 16px;
  box-shadow: 0 1px 1.75px rgba(0, 0, 0, .05);
  margin-bottom: 40px;
}

.location__parking svg {
  flex: none;
  color: var(--orange);
}

.location__parking h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .7px;
  color: #1a1c1c;
  margin-bottom: 8px;
}

.location__parking p {
  font-size: 16px;
  line-height: 1.5;
  color: #5c4037;
}

.location__hours {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location__hour-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e2e2;
}

.location__hour-row dt {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .7px;
  color: #1a1c1c;
}

.location__hour-row dd {
  font-size: 16px;
  color: #5c4037;
}

.location__hour-row dd.closed {
  color: var(--orange);
}

.location__map {
  flex: 0 0 544px;
  height: 500px;
  overflow: hidden;
  background: #eee;
}

.location__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0);
}

/* ---------- FAQ Section ---------- */
.contact-faq {
  padding: 80px 0;
}

.contact-faq__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1c1c;
  text-align: center;
  margin-bottom: 48px;
}

.contact-faq__list {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-faq-item {
  border: 1px solid #e2e2e2;
}

.contact-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .7px;
  color: #1a1c1c;
}

.contact-faq-item summary::-webkit-details-marker {
  display: none;
}

.contact-faq-item summary::marker {
  content: '';
}

.contact-faq-item summary svg {
  flex: none;
  color: var(--orange);
}

.contact-faq-item[open] summary svg {
  transform: rotate(180deg);
}

.contact-faq-item__link {
  color: var(--orange);
}

/* ---------- Final CTA ---------- */
.contact-final-cta {
  background: #2f3131;
  padding: 96px 0;
  text-align: center;
}

.contact-final-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.28px;
  color: #fff;
  margin-bottom: 31px;
}

.contact-final-cta p {
  font-size: 18px;
  line-height: 1.6;
  color: #c8c6c3;
  max-width: 672px;
  margin: 0 auto 48px;
}