/* ── Mobile section.site-header padding + title colors ── */
@media (max-width: 767px) {
  section.site-header { padding: 3rem 1rem; }
  .site-header__title .t-black  { color: var(--black); }
  .site-header__title .t-orange { color: var(--orange); }
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero-section {
    width: 100%;
    padding: 3em 2vw 2rem;
    margin: 0;
    background: linear-gradient(to bottom, var(--peach) 40%, transparent 40%);
}
.hero-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 80vh;
  min-height: 480px;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
  padding: 0 0 1.4375rem 2.375rem;
}
.hero-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.hero-card__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, #0000008f 100%);
}
.hero-card__text {
  width: 100%;
  max-width: 1366px;
  z-index: 1;
  font-family: 'Capriola', sans-serif;
  font-size: 3.054rem; letter-spacing: -0.03em; line-height: 1.1;
}
.hero-card__text .t-black  { color: var(--black); }
.t-orange { color: var(--orange); }

@media (max-width: 767px) {
  .hero-section {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 2.5rem 1rem 0;
    background: linear-gradient(to bottom, var(--peach) 40%, transparent 40%);
  }
  .hero-card { height: 30rem; min-height: 280px; padding: 0; }
  .hero-card__text { display: none; }
}

/* ══════════════════════════════════
   HOME SECTIONS GRID
══════════════════════════════════ */
.home-sections {
  max-width: 1366px;
  margin: 0 auto;
  padding: 2rem 1.6875rem 0;  /* 71px top, 27px sides */
  display: flex;
  flex-direction: column;
  gap: 4.4375rem;  /* 71px between rows */
}
.home-row {
  display: grid;
  align-items: start;
}
.home-row--2-1 {
  grid-template-columns: 2fr 1fr;
  gap: 1.4375rem;  /* 23px */
  align-items: center;
}
.home-row--1-2 {
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;     /* 24px */
}

/* ── Intro column ── */
.home-intro {
  display: flex;
  flex-direction: column;
  gap: 1.9375rem;  /* 31px between quote and who section */
  width: 100%;
}
.intro-quote {
  font-family: 'Capriola', sans-serif;
  font-size: 2.5rem; line-height: 3rem;
  color: #e78b288f;
}
.intro-quote .t-orange { color: var(--orange); }
.t-white{ color: var(--peach); }
.intro-who {
  display: flex; flex-direction: column;
  gap: 2.5625rem;  /* 41px between desc and buttons */
}
.cta-row { display: flex; gap: 0.5625rem; align-items: center; }
@media (max-width:768px) {
  .intro-quote {
    font-size: 2rem; line-height: 2.5rem;
  }
}

/* ── Approach card: narrow/vertical variant (1/3 col on homepage) ── */
.approach-card--narrow {
  flex-direction: column;
  gap: 4.25rem;
  height: auto;
}
.approach-card--narrow .approach-card__img-wrap {
  width: 100%;
  height: 214px;
  overflow: visible;
  cursor: grab;
  top: -50px;
}
.approach-card--narrow .approach-card__img-wrap:active {
  cursor: grabbing;
}
.approach-card__svg {
  width: 120%;
  margin-left: -10%;
  display: block;
  overflow: visible;
}
@media (min-width: 768px) {
  .approach-card__svg {
    width: 100%;
    margin-left: 0;
  }
}

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-intro {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.faq-intro__title {
  font-family: 'Capriola', sans-serif;
  font-size: 1.75rem; line-height: 2.25rem;
  color: var(--orange);
}
.faq-intro__desc {
  font-weight: 500; font-size: 1.125rem;
  line-height: 1.4375rem; color: var(--gray);
}
.faq-list {
  display: flex; flex-direction: column;
  gap: 0.625rem;
  list-style: none; padding: 0; margin: 0;
}
.faq-item {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  cursor: pointer;
  overflow: hidden;
}
.faq-item__header {
  display: flex;
  gap: 1.0625rem;
  align-items: flex-start;
  padding: 1.125rem 0.9375rem;
}
.faq-item__chevron-wrap {
  width: 1.5rem; height: 1.5rem; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease;
  margin-top: 0.1rem;
}
.faq-item:not(.open) .faq-item__chevron-wrap { transform: rotate(-90deg); }
.faq-item__chevron-wrap svg {
  width: 14px; height: 14px;
  fill: none; stroke: rgba(0,0,0,0.45);
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.faq-item__question {
  font-family: 'Capriola', sans-serif;
  font-size: 1.125rem; color: var(--black);
}
.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.open .faq-item__body { grid-template-rows: 1fr; }
.faq-item__answer {
  overflow: hidden;
  font-weight: 500; font-size: 1.125rem;
  line-height: 1.4375rem; color: var(--gray);
  padding: 0 0.9375rem 0 3.5625rem;
  transition: padding-bottom 0.3s ease;
}
.faq-item.open .faq-item__answer { padding-bottom: 1.125rem; }

/* ══════════════════════════════════
   CONTACT / FOOTER
══════════════════════════════════ */
.contact-footer {
  margin-top: 4.4375rem; position: relative;
  padding: 0 0 3.75rem;
}
.contact-footer::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 377.66px; background: var(--peach); z-index: 0;
}
.cf-inner {
  position: relative; z-index: 1;
  max-width: 1366px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 2.25rem;
  padding: 0 1.6875rem;
}
.cf-title {
  font-family: 'Capriola', sans-serif;
  font-size: 1.75rem; line-height: 2.25rem; color: var(--orange);
}
.cf-form-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 1.875rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1.625rem;
  flex: 1; width: 100%;
}
.cf-email-row { display: flex; align-items: center; gap: 0.75rem; }
.cf-email-row__icon { width: 1.5rem; height: 1.5rem; object-fit: contain; flex-shrink: 0; }
.cf-email-row__label { font-weight: 500; font-size: 0.875rem; color: var(--gray-lt); }
.cf-email-row__value { font-family: 'Capriola', sans-serif; font-size: 1.125rem; color: var(--black); }
.cf-fields { display: flex; gap: 2.625rem; }
.cf-col { display: flex; flex-direction: column; gap: 0.875rem; flex: 1; }
.cf-col--end { align-items: flex-end; }
.form-field { display: flex; flex-direction: column; gap: 0.1875rem; width: 100%; }
.form-field label { font-weight: 500; font-size: 0.875rem; color: var(--black); }
.form-field input,
.form-field textarea {
  background: var(--input); border: none;
  border-radius: 0.75rem; padding: 0 1.1875rem;
  font-family: 'Capriola', sans-serif; font-size: 1.125rem;
  color: var(--black); width: 100%; outline: none;
}
.form-field input { height: 3rem; }
.form-field textarea { height: 8.0625rem; padding-top: 1.1875rem; resize: none; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(0,0,0,0.2); }
.btn-submit {
  background: var(--orange); color: var(--peach);
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 1.125rem; padding: 0.57em 0.95em;
  border-radius: var(--r-btn); border: none;
  opacity: 0.4; cursor: not-allowed;
  transition: opacity .2s ease, filter .15s ease;
}
.btn-submit:not(:disabled) { opacity: 1; cursor: pointer; }
.btn-submit:not(:disabled):hover { filter: brightness(1.12); }
.cf-submit-row { display: flex; align-items: center; gap: 0.75rem; align-self: flex-end; }
.cf-status {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 0.9rem; white-space: nowrap;
  opacity: 0; transition: opacity .3s ease;
}
.cf-status--ok { color: var(--orange); opacity: 1; }
.cf-status--err { color: var(--black); opacity: 1; }
.cf-details__heading {
  font-family: 'Capriola', sans-serif;
  font-size: 1.17rem; color: var(--orange);
  margin: 0 0 0.5rem;
}

.cf-bottom {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.25rem; margin-top: 0.625rem;
}

/* ══════════════════════════════════
   MOBILE
══════════════════════════════════ */
@media (max-width: 767px) {
  .home-sections { padding: 2rem 1rem 0; gap: 2.5rem; }
  .home-row--2-1,
  .home-row--1-2 { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-footer { padding: 0 1rem 3.75rem; margin-top: 2rem; }
  .cf-cards { flex-direction: column; }
  .cf-fields { flex-direction: column; gap: 0.875rem; }
  .cf-inner { padding: 0; }
  .home-intro {width: auto;}
}
