.bk-hero {
  background: var(--olive-mid);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  position: relative;
  border-bottom: 3px solid #c9a84c;
}

.bk-hero-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1rem;
}

.bk-hero h1 {
  font-size: 32px;
  font-weight: 500;
  color: #f5f0e8;
  margin: 0 0 0.75rem;
  letter-spacing: 1px;
}

.bk-hero p {
  color: #b8c9a8;
  font-size: 14px;
  max-width: 420px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.bk-hero-pills {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.bk-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 168, 76, 0.15);
  border: 0.5px solid rgba(201, 168, 76, 0.4);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: #c9a84c;
}

.bk-pill i {
  font-size: 14px;
}

.bk-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2rem 0;
  max-width: 680px;
  margin: 0 auto;
}

.bk-divider-line {
  flex: 1;
  height: 0.5px;
  background: #c9a84c;
  opacity: 0.4;
}

.contact-section p {
  text-align: center;
  color: #888;
  font-family: var(--font-body);
  font-size: 14px;
}

#contactForm {
  max-width: 760px;
  margin: 0 auto;
  margin-bottom: 100px;
  padding: 2.5rem;
  background: var(--cream-white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-family: var(--font-body);
  border: 1px solid gray;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

#contactForm:focus-within {
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(13, 46, 11, 0.1);
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  font-size: var(--r-sm);
  color: var(--olive);
  letter-spacing: 0.02em;
  transition: color 0.25s var(--ease);
}

input,
textarea {
  padding: 0.8rem 1.1rem;
  border-radius: 9px;
  background: #ffffff;
  border: 1px solid gray;
  font-size: var(--r-sm);
  color: var(--ink);
  outline: none;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

input:focus,
textarea:focus,
select:focus {
  border: 1px solid var(--olive-light);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25);
}

.form-group:focus-within label {
  color: var(--olive-light);
}

button[type="submit"] {
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--gold);
  color: #1b2416;
  font-weight: 700;
  font-size: var(--r-md);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

#contactForm button[type="submit"]:disabled {
  background: #cccccc;
  color: #777777;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

#form-message {
  font-weight: 600;
  color: #33692d;
  text-align: center;
  min-height: 1.2em;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

input[type="date"],
select#form-time {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  height: 48px;
  cursor: pointer;
}

select#form-time {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

select#form-time:invalid,
select#form-time option[value=""] {
  color: #888888;
}

select#form-time option {
  color: #333333;
  background-color: #ffffff;
  padding: 10px;
}

input[type="date"].invalid,
select#form-time.invalid {
  border-color: #b32424 !important;
  background-color: #fff8f8;
}

input[type="date"].invalid:focus,
select#form-time.invalid:focus {
  box-shadow: 0 0 0 3px rgba(179, 36, 36, 0.15) !important;
}

.contact-section .container {
  padding: 6rem 2rem;
}

.contact-section>.container>h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--olive);
  text-align: left;
  margin-bottom: 3rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 4rem;
  align-items: start;
}

.contact-details h3 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.contact-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.52rem 1rem;
  border-radius: 999px;
  background: rgba(42, 58, 30, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.20);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--olive-mid);
  letter-spacing: 0.03em;
  margin-bottom: 1.8rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-list li a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.c-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.20);
  font-size: 0.92rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(42, 58, 30, 0.07);
}

.contact-review-links {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.contact-review-links img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.14);
  box-shadow: 0 8px 36px rgba(42, 58, 30, 0.12);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 400px;
}

@media (max-width: 968px) {
  .contact-grid-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  #contactForm {
    margin-top: 1rem;
    max-width: 100vw;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-right p {
    max-width: 100%;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-map iframe {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  #contactForm {
    padding: 1.75rem 1.25rem;
  }

  .info-block {
    padding: 1.5rem;
  }
}

@media (hover:hover) and (pointer:fine) {
  .contact-list li a:hover {
    color: var(--olive-mid);
    transform: scale(1.01);
  }

  .contact-review-links img:hover {
    transform: scale(1.10);
  }

  button[type="submit"]:hover {
    box-shadow: 0 18px 38px rgba(212, 175, 55, 0.35);
    background: #f0dc6d;
  }

  input:hover,
  textarea:hover,
  select:hover {
    border: 1px solid var(--olive-light);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25);
  }
}

.contact-list li a:active {
  color: var(--olive-mid);
  transform: scale(1.01);
}

.contact-review-links img:active {
  transform: scale(1.10);
}

button[type="submit"]:active {
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}