/* Service page (Feasibility & Development Management).
   The hero/tab-bar/accordion/card/CTA rules below are lifted verbatim from
   capabilities.html, contact.html and partner-landowners.html so this page is
   visually identical to the rest of the site. The .svc-* rules at the bottom
   are the only additions this page needs. */

html { scroll-behavior: smooth; }

/* ---- Short banner hero (from capabilities.html) ---- */
.hero-fullbleed.hero-about {
  height: 40vh;
  min-height: 320px;
}
.hero-fullbleed.hero-about .scroll-hint { display: none; }
/* The site default scrim was tuned for the dark Perth-at-night hero. This page's
   hero is a bright daylight render, so the title needs more weight behind it. */
.hero-fullbleed.hero-about .hero-scrim {
  background:
    linear-gradient(180deg, rgba(11,42,30,0.40) 0%, rgba(11,42,30,0.22) 38%, rgba(11,42,30,0.72) 100%);
}

/* ---- Sticky section tabs ---- */
.tab-bar { border-bottom: 1px solid #c1c8c2; }
.tab-bar__scroll {
  display: flex;
  gap: 48px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 32px var(--gutter);
}
.tab-bar__scroll::-webkit-scrollbar { display: none; }
.tab-link {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(14, 14, 12, 0.6);
  white-space: nowrap;
  padding-bottom: 6px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.tab-link:hover { color: var(--ink); }
.tab-link.is-active {
  color: var(--ink);
  font-weight: 600;
  border-bottom-color: var(--ink);
}
.anchor-target { scroll-margin-top: 180px; }

/* ---- Accordion (used for the FAQ list) ---- */
.cap-acc { border-top: 1px solid #c1c8c2; }
.cap-acc:last-of-type { border-bottom: 1px solid #c1c8c2; }
.cap-acc__summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: baseline;
  gap: 24px;
  transition: color 0.3s var(--ease-out);
}
.cap-acc__summary::-webkit-details-marker { display: none; }
.cap-acc__summary:hover .cap-acc__name { color: var(--forest-deep); }
.cap-acc__num {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  flex-shrink: 0;
  min-width: 32px;
}
.cap-acc__name {
  font-family: var(--sans-forma);
  font-size: 24px;
  line-height: 1.15;
  color: var(--forest);
  font-weight: 500;
  flex: 1;
  transition: color 0.3s var(--ease-out);
}
.cap-acc__icon {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--forest);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
  align-self: center;
}
.cap-acc[open] .cap-acc__icon { transform: rotate(45deg); }
.cap-acc__body {
  margin: 0;
  overflow: hidden;
  padding: 0;
  transition:
    height 0.5s var(--ease-out),
    opacity 0.45s var(--ease-out);
}
.cap-acc__body-inner {
  display: block;
  font-size: 18px;
  line-height: 1.6;
  color: #414944;
  max-width: 70ch;
  padding: 0 0 32px 56px;
}
@media (max-width: 767px) {
  .cap-acc__body-inner { padding-left: 0; }
  .cap-acc__name { font-size: 24px; }
}

/* ---- Bordered content card ---- */
.proc-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid #c1c8c2;
  background: transparent;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
.proc-card:hover { border-color: var(--ink); }
.proc-card__num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.proc-card__name {
  font-family: var(--sans-forma);
  font-size: 26px;
  line-height: 1.2;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 16px;
}
.proc-card__body {
  font-size: 15px;
  line-height: 1.55;
  color: #414944;
}

/* ---- Enquiry form ---- */
.inq-field { margin-bottom: 32px; }
.inq-field__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 8px;
}
.inq-form .inq-input,
.inq-form .inq-select,
.inq-form .inq-textarea {
  width: 100%;
  background: var(--bone);
  border: 0;
  border-bottom: 1px solid var(--ink-mute);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
  resize: none;
}
.inq-form .inq-textarea { min-height: 140px; }
.inq-form .inq-input:focus,
.inq-form .inq-select:focus,
.inq-form .inq-textarea:focus { border-bottom-color: var(--forest); }
.inq-form .inq-input::placeholder,
.inq-form .inq-textarea::placeholder { color: var(--ink-mute); }
.inq-submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--forest);
  color: var(--bone);
  border: 0;
  padding: 18px 32px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.inq-submit:hover { background: var(--forest-deep); }
.inq-submit:active { transform: scale(0.98); }
.inq-submit:disabled { opacity: 0.7; cursor: default; }
.inq-submit svg { transition: transform 0.3s var(--ease-out); }
.inq-submit:hover svg { transform: translateX(4px); }

/* ---- Closing CTA band ---- */
.jv-cta {
  background: var(--forest);
  color: var(--bone);
  padding: clamp(64px, 9vw, 120px) clamp(32px, 6vw, 96px);
  text-align: center;
}
.jv-cta__heading {
  font-family: var(--sans-forma);
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.15;
  font-weight: 500;
  color: var(--bone);
  margin: 0 auto 24px;
  max-width: 22ch;
}
.jv-cta__heading .italic { font-family: var(--serif); font-style: italic; font-weight: 500; }
.jv-cta__body {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(241, 242, 234, 0.85);
  margin: 0 auto 48px;
  max-width: 60ch;
}
.jv-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--bone);
  color: var(--forest);
  border: 0;
  padding: 22px 36px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.jv-cta__btn:hover { background: #fff; }
.jv-cta__btn svg { transition: transform 0.3s var(--ease-out); }
.jv-cta__btn:hover svg { transform: translateX(4px); }

/* ================= additions specific to this page ================= */

/* Hero CTA pair */
.svc-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

/* Primary / secondary buttons. The outline variant follows the same convention as the
   header "Menu" button: transparent with a forest hairline, filling in on hover. Both
   variants carry the border so the pair sits at exactly the same height. */
.svc-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--forest);
  color: var(--bone);
  border: 1.5px solid var(--forest);
  padding: 20px 34px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
}
.svc-btn:hover { background: var(--forest-deep); border-color: var(--forest-deep); }
.svc-btn svg { flex-shrink: 0; transition: transform 0.3s var(--ease-out); }
.svc-btn:hover svg { transform: translateX(4px); }

.svc-btn--outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.svc-btn--outline:hover {
  background: var(--forest);
  color: var(--bone);
  border-color: var(--forest);
}
/* The 34px side padding plus the gap and arrow costs ~105px of chrome, which is a third of
   a 375px screen. Tighten it so the labels stay on one line rather than wrapping and
   leaving the arrow floating beside two lines of text. */
@media (max-width: 520px) {
  .svc-btn { padding: 18px 24px; }
  .svc-actions { gap: 14px; }
}

/* Inline "go deeper" text link, used instead of duplicating other pages */
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid rgba(16, 58, 41, 0.3);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.svc-link:hover { gap: 16px; border-bottom-color: var(--forest); }
.svc-link svg { flex-shrink: 0; }

/* A row of related links (e.g. landowner / investor pathways) */
.svc-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 48px;
}

/* Bulleted list */
.svc-list {
  list-style: none;
  margin-top: 32px;
  max-width: 60ch;
}
.svc-list li {
  position: relative;
  padding-left: 28px;
  font-size: 18px;
  line-height: 1.6;
  color: #414944;
}
.svc-list li + li { margin-top: 12px; }
.svc-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--forest);
  border-radius: 50%;
}

/* Emphasised pull statement */
.svc-quote {
  margin-top: 48px;
  padding: 32px clamp(24px, 3vw, 40px);
  border-left: 3px solid var(--forest);
  background: #f3f4f0;
  font-family: var(--sans-forma);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  font-weight: 500;
  color: var(--forest);
  max-width: 60ch;
}

/* Form success panel */
.svc-result {
  display: none;
  margin-top: 32px;
  max-width: 768px;
  padding: 40px clamp(24px, 4vw, 48px);
  background: #c0edd4;
  border-left: 4px solid var(--forest);
}
.svc-result.show { display: block; animation: svcUp 0.5s var(--ease-out); }
@keyframes svcUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.svc-result__title {
  font-family: var(--sans-forma);
  font-size: 24px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 12px;
}
.svc-result__body {
  font-size: 17px;
  line-height: 1.6;
  color: #1f3d30;
  max-width: 56ch;
}

/* ---- Label / value rows (N° 05, project controls) ----
   Adapted from the project pages' .case-facts panel. Reads as the register or
   schedule it is describing rather than as a set of cards. */
.svc-rows {
  margin-top: 48px;
  border-top: 1px solid var(--ink-mute);
}
.svc-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 40px;
  padding: 28px 0;
  border-bottom: 1px solid #e2e3e0;
}
.svc-row__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.svc-row__name {
  font-family: var(--sans-forma);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--forest);
}
.svc-row__body {
  font-size: 17px;
  line-height: 1.6;
  color: #414944;
}
@media (min-width: 900px) {
  /* numeral | name | description */
  .svc-row { grid-template-columns: 60px minmax(220px, 300px) 1fr; align-items: baseline; }
}

/* Two-up field grid inside the enquiry form */
.svc-form { max-width: 768px; }
/* Footnote under the submit button. No max-width: it sits inside the bordered form
   box, so it should share the same measure as the fields and button above it. */
.svc-note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin-top: 24px;
}
