.page-hero {
  background: var(--off-white);
  padding: 160px 64px 80px;
  border-bottom: 1px solid var(--gray2);
}
.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -2px;
}
.page-hero-title .o {
  color: var(--orange);
}

/* CONTACT LAYOUT */
.contact-section {
  padding: 80px 64px 110px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  margin-top: 0;
}

/* INFO SIDE */
.contact-info {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.ci-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cc-card {
  background: var(--off-white);
  border: 1.5px solid var(--gray2);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.cc-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(232, 98, 10, 0.07);
  transform: translateX(4px);
}
.cc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cc-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}
.cc-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
}
.cc-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.cc-link {
  text-decoration: none;
  color: var(--orange);
  font-size: 0.82rem;
  margin-top: 6px;
  display: block;
  font-weight: 600;
}

.hours-card {
  margin-top: 28px;
  background: var(--black);
  border-radius: var(--radius);
  padding: 28px;
}
.hc-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 16px;
}
.hc-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.84rem;
}
.hc-row:last-child {
  border-bottom: none;
}
.hc-day {
  color:var(--off-white);
}
.hc-time {
  color: white;
  font-weight: 500;
}
.hc-badge {
  background: var(--orange);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

/* FORM SIDE */
.contact-form-wrap {
  background: var(--off-white);
  border: 1.5px solid var(--gray2);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.form-title {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  color: var(--black);
  margin-bottom: 8px;
}
.form-title .o {
  color: var(--orange);
}
.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-full {
  grid-column: 1/3;
}

.fgroup {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fgroup label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-body);
}
.fgroup label .req {
  color: var(--orange);
}

.fgroup input,
.fgroup select,
.fgroup textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--gray2);
  border-radius: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  color: var(--black);
  background: white;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 98, 10, 0.08);
}
.fgroup input::placeholder,
.fgroup textarea::placeholder {
  color: var(--text-light);
}
.fgroup textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.fgroup select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A84' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.budget-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bp {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--gray2);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  background: white;
  color: var(--dark4);
}
.bp:hover,
.bp.sel {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.form-submit {
  background: var(--orange);
  color: white;
  border: none;
  cursor: pointer;
  padding: 16px 40px;
  border-radius: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: var(--shadow-orange);
}
.form-submit:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232, 98, 10, 0.35);
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* SUCCESS STATE */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}
.form-success.show {
  display: block;
}
.fs-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}
.fs-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 12px;
}
.fs-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* MAP STRIP */
.map-strip {
  background: var(--gray);
  padding: 0;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--gray2);
  position: relative;
  overflow: hidden;
}
.map-placeholder {
  text-align: center;
}
.map-pin {
  font-size: 3rem;
  margin-bottom: 12px;
}
.map-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
}
.map-sub {
  font-size: 0.84rem;
  color: var(--off-white);
  margin-top: 4px;
}
.map-btn {
  display: inline-block;
  margin-top: 20px;
  background: var(--black);
  color: white;
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}
.map-btn:hover {
  background: var(--orange);
}

/* FAQ */
.faq-section {
  padding: 120px 64px;
  background: white;
}
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 64px;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: white;
  border: 1px solid var(--gray2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover {
  border-color: var(--orange);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transform: translateY(-2px);
}
.faq-q {
  padding: 24px 32px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.faq-q-text {
  flex: 1;
}
.faq-item.active .faq-q {
  color: var(--orange);
  background: var(--off-white);
}
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: background 0.3s, color 0.3s;
}
.faq-icon i {
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.faq-item.active .faq-icon {
  background: var(--orange);
  color: #fff;
}
.faq-item.active .faq-icon i {
  transform: rotate(180deg);
}
.faq-q:hover .faq-icon {
  transform: scale(1.1);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--off-white);
}
.faq-item.active .faq-a {
  max-height: 800px; /* large enough for content */
}
.faq-a-inner {
  padding: 0 32px 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .faq-grid {
    grid-template-columns: 1fr;
    max-width: 800px;
  }
}

@media (max-width: 1100px) {
  .page-hero,
  .contact-section,
  .faq-section {
    padding-left: 32px;
    padding-right: 32px;
  }
  .page-hero {
    padding-top: 140px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-info {
    position: static;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .page-hero,
  .contact-section,
  .faq-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-hero {
    padding-top: 120px;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-full {
    grid-column: 1;
  }
}
