/*-- -------------------------- -->
<---     Welcome statement      -->
<--- -------------------------- -*/
#welcome {
  background-color: var(--surface-2);
  text-align: center;
}
#welcome .welcome-inner {
  max-width: 56ch;
  margin: 0 auto;
}
#welcome h2 {
  font-size: clamp(1.75rem, 1.3rem + 2.2vw, 2.85rem);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
#welcome p {
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: var(--ink-soft);
}

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
#services {
  background-color: var(--bg);
}
#services .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
#services .service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 2.75rem);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
#services .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -34px rgba(20, 40, 50, 0.4);
  border-color: transparent;
}
#services .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.5rem;
  background: var(--surface-2);
  border-radius: 50%;
  color: var(--primary);
}
#services .service-icon svg {
  width: 1.85rem;
  height: 1.85rem;
}
#services .service-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.85rem;
}
#services .service-card p {
  margin-bottom: 1.5rem;
}
#services .service-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
#services .service-tags li {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--surface-2);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}
#services {
  /* Format strip */
}
#services .services-formats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--surface-2);
  border-radius: var(--radius);
  text-align: center;
}
#services .format-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
#services .format-item span {
  font-size: 0.95rem;
  color: var(--body);
}

@media only screen and (min-width: 48rem) {
  #services .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  #services .services-formats {
    grid-template-columns: repeat(3, 1fr);
  }
  #services .format-item:not(:last-child) {
    border-right: 1px solid var(--line);
  }
}
/*-- -------------------------- -->
<---           About            -->
<--- -------------------------- -*/
#about {
  background-color: var(--surface-2);
}
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
#about .about-figure {
  position: relative;
}
#about .about-picture {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
  max-width: 30rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 70px -40px rgba(20, 40, 50, 0.4);
}
#about .about-picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about .about-badge {
  position: absolute;
  right: clamp(-0.5rem, 2vw, 1.5rem);
  bottom: 1.5rem;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.5rem;
  box-shadow: 0 20px 40px -22px rgba(20, 40, 50, 0.45);
  text-align: left;
}
#about .about-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.15;
  white-space: nowrap;
}
#about .about-badge span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.3;
}
#about .about-content h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1.25rem;
  max-width: 16ch;
}
#about .about-content p {
  margin-bottom: 1.1rem;
}
#about .about-quote {
  margin: 1.75rem 0;
  padding: 1.25rem 0 1.25rem 1.5rem;
  border-left: 3px solid var(--primary);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  line-height: 1.45;
  color: var(--ink);
}

@media only screen and (min-width: 64rem) {
  #about .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}
/*-- -------------------------- -->
<---      Approach (dark)       -->
<--- -------------------------- -*/
#approach {
  background-color: var(--footer-bg);
  color: rgba(253, 249, 245, 0.82);
}
#approach .jl-eyebrow {
  color: var(--accent);
}
#approach .approach-head {
  max-width: 60ch;
  margin: 0 auto 3.5rem;
  text-align: center;
}
#approach .approach-head h2 {
  font-size: var(--fs-h2);
  color: #fdf9f5;
  margin: 0 auto 1rem;
  max-width: 20ch;
}
#approach .approach-head h2 em {
  color: var(--accent);
}
#approach .approach-head p {
  color: rgba(253, 249, 245, 0.72);
  margin: 0 auto;
  max-width: 52ch;
}
#approach .approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
#approach .approach-item {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(253, 249, 245, 0.18);
}
#approach .approach-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
#approach .approach-item h3 {
  font-size: 1.35rem;
  color: #fdf9f5;
  margin-bottom: 0.6rem;
}
#approach .approach-item p {
  color: rgba(253, 249, 245, 0.72);
  font-size: 1rem;
}
#approach .approach-cta {
  margin-top: clamp(2.75rem, 5vw, 4rem);
  text-align: center;
}

@media only screen and (min-width: 48rem) {
  #approach .approach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
  }
}
@media only screen and (min-width: 64rem) {
  #approach .approach-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/*-- -------------------------- -->
<---      What I help with      -->
<--- -------------------------- -*/
#help {
  background-color: var(--bg);
  text-align: center;
}
#help .help-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 56rem;
  margin: 0 auto;
}
#help .help-tags li {
  list-style: none;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
#help .help-tags li:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
#help .help-note {
  margin: 2.75rem auto 0;
  max-width: 50ch;
  font-size: 0.98rem;
  color: var(--body);
}

/*-- -------------------------- -->
<---     The space / location   -->
<--- -------------------------- -*/
#space {
  background-color: var(--surface-2);
}
#space .space-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
#space .space-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
#space .space-images .space-pic {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 26px 50px -34px rgba(20, 40, 50, 0.4);
}
#space .space-images .space-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#space .space-images .space-pic-tall {
  grid-row: span 2;
  aspect-ratio: 3/5;
}
#space .space-images .space-pic-wide {
  aspect-ratio: 4/3;
}
#space .space-content h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1.25rem;
  max-width: 16ch;
}
#space .space-content p {
  margin-bottom: 1.1rem;
}
#space .space-points {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin: 1.75rem 0;
}
#space .space-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink-soft);
}
#space .space-points svg {
  flex: none;
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.15rem;
  color: var(--primary);
}

@media only screen and (min-width: 64rem) {
  #space .space-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}
/*-- -------------------------- -->
<---            FAQs            -->
<--- -------------------------- -*/
#faqs {
  background-color: var(--bg);
}
#faqs .faq-list {
  max-width: 48rem;
  margin: 0 auto;
}
#faqs .faq-item {
  border-bottom: 1px solid var(--line);
}
#faqs .faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 400;
  color: var(--ink);
}
#faqs .faq-item summary::-webkit-details-marker {
  display: none;
}
#faqs .faq-item summary .faq-icon {
  flex: none;
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
}
#faqs .faq-item summary .faq-icon::before, #faqs .faq-item summary .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--primary);
  transition: transform 0.3s ease;
}
#faqs .faq-item summary .faq-icon::before {
  width: 1.4rem;
  height: 2px;
  transform: translate(-50%, -50%);
}
#faqs .faq-item summary .faq-icon::after {
  width: 2px;
  height: 1.4rem;
  transform: translate(-50%, -50%);
}
#faqs .faq-item[open] summary .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}
#faqs .faq-answer {
  padding: 0 0 1.5rem;
  max-width: 60ch;
}
#faqs .faq-answer p {
  margin-bottom: 0.85rem;
}
#faqs .faq-answer p:last-child {
  margin-bottom: 0;
}

/*-- -------------------------- -->
<---           Contact          -->
<--- -------------------------- -*/
#contact {
  background-color: var(--surface-2);
}
#contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px -50px rgba(20, 40, 50, 0.5);
}
#contact .contact-intro {
  padding: clamp(2rem, 5vw, 3.5rem);
}
#contact .contact-intro h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1.1rem;
  max-width: 14ch;
}
#contact .contact-intro p {
  margin-bottom: 1.5rem;
  max-width: 42ch;
}
#contact .contact-details {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
#contact .contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
#contact .contact-details svg {
  flex: none;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.15rem;
  color: var(--primary);
}
#contact .contact-details .label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}
#contact .contact-details a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
#contact .contact-details a:hover {
  color: var(--primary);
}
#contact {
  /* Form panel */
}
#contact .contact-form-panel {
  background: var(--footer-bg);
  padding: clamp(2rem, 5vw, 3.5rem);
  color: #fdf9f5;
}
#contact .contact-form-panel h3 {
  color: #fdf9f5;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
#contact .jl-form {
  display: grid;
  gap: 1.1rem;
}
#contact .jl-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(253, 249, 245, 0.85);
  margin-bottom: 0.4rem;
}
#contact .jl-form input,
#contact .jl-form select,
#contact .jl-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(253, 249, 245, 0.22);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
#contact .jl-form input::-moz-placeholder, #contact .jl-form select::-moz-placeholder, #contact .jl-form textarea::-moz-placeholder {
  color: rgba(253, 249, 245, 0.45);
}
#contact .jl-form input::placeholder,
#contact .jl-form select::placeholder,
#contact .jl-form textarea::placeholder {
  color: rgba(253, 249, 245, 0.45);
}
#contact .jl-form input:focus,
#contact .jl-form select:focus,
#contact .jl-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.1);
}
#contact {
  /* Explicit height so the inputs and the select match in every browser.
     Safari sizes <select> from its own font metrics otherwise. */
}
#contact .jl-form input,
#contact .jl-form select {
  height: 3.375rem;
}
#contact {
  /* Reset the native select so its height matches the inputs, with a custom arrow */
}
#contact .jl-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23cdd8dd' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}
#contact .jl-form select option {
  color: #1a3d4d;
}
#contact .jl-form textarea {
  min-height: 8rem;
  resize: vertical;
}
#contact .jl-form .cs-button-solid {
  width: 100%;
  margin-top: 0.5rem;
}
#contact .jl-form-note {
  font-size: 0.82rem;
  color: rgba(253, 249, 245, 0.6);
  line-height: 1.5;
}
#contact {
  /* visually-hidden honeypot field */
}
#contact .jl-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media only screen and (min-width: 64rem) {
  #contact .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}
/*# sourceMappingURL=local.css.map */