#contact {
  background: var(--beige-50);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 72px;
  align-items: start;
}

.ctc-left > p {
  max-width: 520px;
  margin-top: 18px;
  color: var(--muted);
}

.ctc-mood {
  position: relative;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--beige-200);
  box-shadow: var(--soft-shadow);
}

.ctc-mood img {
  width: 80%;
  height: 50%;
  object-fit: cover;
  object-position: center 58%;
}

.ctc-mood::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(33, 28, 22, 0.58), rgba(33, 28, 22, 0.02) 62%);
}

.ctc-mood-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--beige-50);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.ctc-info {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--beige-100);
}

.ci-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--beige-50);
  color: var(--beige-600);
}

.ci-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

.ci-text strong {
  display: block;
  color: var(--ink);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.ci-text span {
  color: var(--muted);
}

.ctc-form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--beige-100);
  box-shadow: var(--soft-shadow);
}

.ctc-form h2,
.ctc-form h3 {
  font-size: 2.65rem;
}

.ctc-form > p {
  margin-top: 12px;
  color: var(--muted);
}

.consultation-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.hidden-field {
  display: none;
}

.map-section {
  background: var(--white);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: center;
}

.map-copy .s-title {
  font-size: 3.45rem;
}

.map-frame {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--beige-200);
  box-shadow: var(--soft-shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  filter: saturate(0.75) sepia(0.08);
}

.trust-section {
  background: var(--beige-100);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--beige-50);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--soft-shadow);
}

.trust-card span {
  color: var(--beige-600);
  font-size: 0.82rem;
  font-weight: 700;
}

.trust-card h3 {
  margin-top: 28px;
  font-size: 1.75rem;
}

.trust-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

#faq {
  background: var(--beige-100);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 68px;
  align-items: start;
}

.faq-sticky {
  position: sticky;
  top: 110px;
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.faq-q span:first-child {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.2;
}

.faq-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--beige-600);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 260px;
  padding-bottom: 22px;
}

.faq-a p {
  max-width: 780px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .contact-layout,
  .map-layout,
  .faq-layout,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .faq-sticky {
    position: static;
  }
}

@media (max-width: 620px) {
  .ctc-form {
    padding: 26px;
  }

  .map-copy .s-title {
    font-size: 2.35rem;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 340px;
    height: 340px;
  }
}
