/* =================================================================
   Willow — contact page

   Shared by contact.html and nl/contact.html. Lifted out of their inline
   <style> blocks so both languages load one cacheable file and
   cannot drift apart again.
   ================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  margin-top: 64px;
  align-items: start;
}

/* The HubSpot Meetings scheduler — the whole form, shown on load */
.booking-step {
  display: none;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 40px;
}
.booking-step.show { display: block; }
.booking-step h3 { font-size: 28px; letter-spacing: -0.014em; }
.booking-step h3:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
.booking-step > p { font-size: 15px; color: var(--ink-2); margin-top: 10px; max-width: 52ch; line-height: 1.55; }
/* The embed injects an iframe here and drives its height over postMessage,
   so leave the height alone and only reserve space while it loads. */
.booking-step .meetings-iframe-container { margin-top: 28px; min-height: 560px; }
.booking-step.embed-failed .meetings-iframe-container { display: none; }
.booking-step .meetings-iframe-container iframe { width: 100%; border: 0; }
.booking-legal {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 62ch;
}
.booking-legal a { color: var(--ink-2); border-bottom: 1px solid var(--rule); }
.booking-legal a:hover { color: var(--blue); border-bottom-color: var(--blue); }

.booking-fallback {
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--punch-orange);
  border-radius: var(--r-pill);
  background: var(--paper);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.booking-fallback a { color: var(--blue); border-bottom: 1px solid var(--blue); }

/* Right column */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 120px;
}
body.has-announce .contact-side { top: 152px; }

.what-happens {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: 32px;
}
.what-happens h3 { font-size: 22px; letter-spacing: -0.014em; }
.what-happens ol { list-style: none; padding: 0; margin: 24px 0 0; counter-reset: step; display: flex; flex-direction: column; gap: 18px; }
.what-happens ol li {
  padding-left: 36px;
  position: relative;
  font-size: 14px;
  color: rgba(244,239,231,0.8);
  line-height: 1.5;
  counter-increment: step;
}
.what-happens ol li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.what-happens ol li b { color: var(--cream); font-weight: 500; display: block; margin-bottom: 4px; }

/* Office card */
.office-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.office-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--ink-4) 1px, transparent 0);
  background-size: 18px 18px;
  opacity: 0.4;
}
.office-card > * { position: relative; z-index: 2; }
.office-card .city { font-family: var(--mono); font-size: 12px; color: var(--blue); letter-spacing: 0.04em; }
.office-card .addr { font-size: 19px; line-height: 1.4; letter-spacing: -0.01em; margin-top: 12px; max-width: 16ch; }
.office-card .pin {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-side { position: static; }
  .form-row.two { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
}
.home-faq { padding: 96px 0; background: var(--cream); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.hf-list { display: flex; flex-direction: column; gap: 12px; max-width: 920px; }
.hf-item { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden; transition: border-color 0.15s; }
.hf-item:hover { border-color: var(--ink-4); }
.hf-item.open { border-color: var(--ink); }
.hf-q { margin: 0; font-size: inherit; font-weight: inherit; letter-spacing: 0; line-height: 1; }
.hf-q button {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 24px; text-align: left; cursor: pointer;
  font-size: 18px; font-weight: 600; letter-spacing: -0.012em; color: var(--ink); line-height: 1.3;
}
.hf-ind {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--cream-2); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; transition: transform 0.2s, background 0.2s, color 0.2s;
}
.hf-item.open .hf-ind { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.hf-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.hf-item.open .hf-a { max-height: 420px; }
.hf-a p { padding: 0 24px 24px; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; max-width: 64ch; }
.hf-a p + p { padding-top: 12px; }
