@charset "UTF-8";
/* ===========================================================================
   SELF-HOSTED BRAND FONTS  (Open Sky · Instrument Serif + Inter)
   Latin-subset woff2 served from /assets/fonts (no third-party request).
   Inter is a variable face (300–700); Instrument Serif is single-weight
   (400) with a true italic. The two faces are preloaded in base.html.
   =========================================================================== */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/instrument-serif-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/instrument-serif-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* ===========================================================================
   ███  BRAND DESIGN TOKENS  ███
   ───────────────────────────────────────────────────────────────────────────
   This is the ONLY place colours + fonts are defined. To switch to a
   different design direction, replace the values below and swap the Google
   Fonts <link> in src/_includes/layouts/base.html.

   CURRENT DIRECTION:  "Open Sky" (Option 4)
   Heading font: Instrument Serif   ·   Body font: Inter
   Sage leads, coral warms the accents, teal ink anchors the type.
   =========================================================================== */
:root {
  /* — Palette — */
  --bg: #fbf1ed; /* Soft peach — page background */
  --surface: #ffffff; /* Cards / panels */
  --surface-2: #f4e1d8; /* Warm blush — alternating sections */
  --ink: #1a3d4d; /* Teal ink — headings */
  --ink-soft: #3c5a62; /* Muted teal — sub-headings */
  --body: #6f7b7e; /* Cool grey — body copy */
  --primary: #3f6e70; /* Sage deep — primary accent (eyebrows, icons, links) */
  --primary-ink: #2d5658; /* Deep sage — hover / pressed */
  --accent: #e89a92; /* Coral — warm accent + call-to-action buttons */
  --accent-ink: #d97f76; /* Deep coral — button hover */
  --peach: #f4e1d8; /* Warm blush — soft accent / selection */
  --sage: #5a8b8d; /* Sage — decorative glow / corner accent */
  --line: rgba(26, 61, 77, 0.12); /* Hairline borders */
  --footer-bg: #16323c; /* Deep teal — footer + dark bands */
  /* — Fonts — */
  --font-heading: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  /* ───── The tokens below derive from the palette; no need to edit by hand ───── */
  /* Legacy CodeStitch aliases (kept so shared kit styles keep working) */
  --primaryLight: var(--peach);
  --secondary: var(--sage);
  --headerColor: var(--ink);
  --bodyTextColor: var(--body);
  --bodyTextColorWhite: #fdf6f1;
  --headerFont: var(--font-heading);
  --bodyFont: var(--font-body);
  /* Type scale (fluid) */
  --fs-eyebrow: clamp(0.75rem, 0.9vw, 0.8125rem);
  --fs-body: clamp(1rem, 0.97rem + 0.18vw, 1.125rem);
  --fs-lead: clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.7vw, 1.625rem);
  --fs-h2: clamp(1.9rem, 1.5rem + 1.9vw, 3rem);
  --fs-h1: clamp(2.6rem, 1.9rem + 3.4vw, 4.6rem);
  /* Rhythm */
  --section-padding: clamp(4rem, 9vw, 7.5rem) clamp(1rem, 4vw, 2rem);
  --content-width: 75rem; /* 1200px */
  --radius: 18px;
  --radius-sm: 12px;
  --nav-height: 5.5rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  background-color: var(--bg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

/*-- -------------------------- -->
<---        Typography          -->
<--- -------------------------- -*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 em,
h2 em,
h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

a {
  color: inherit;
}

p {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--body);
}

::-moz-selection {
  background: var(--peach);
  color: var(--ink);
}

::selection {
  background: var(--peach);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/*-- -------------------------- -->
<---     Shared building blocks  -->
<--- -------------------------- -*/
.jl-section {
  padding: var(--section-padding);
}

.jl-container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
}

/* Eyebrow / topper */
.jl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.jl-eyebrow::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: currentColor;
}

.jl-eyebrow.is-centered {
  justify-content: center;
}

.jl-title {
  font-size: var(--fs-h2);
  max-width: 18ch;
}

.jl-lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
}

/* Section header helper */
.jl-section-head {
  max-width: 62ch;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.jl-section-head .jl-eyebrow {
  justify-content: center;
}

.jl-section-head .jl-title {
  margin: 0 auto 1rem;
  max-width: 22ch;
}

.jl-section-head p {
  margin: 0 auto;
  max-width: 54ch;
}

/*-- -------------------------- -->
<---          Buttons           -->
<--- -------------------------- -*/
.cs-button-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--accent);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  padding: 1.0625rem 2rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 24px -12px rgba(217, 127, 118, 0.85);
}

.cs-button-solid:hover {
  background-color: var(--accent-ink);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(217, 127, 118, 0.8);
  color: var(--ink);
}

.jl-button-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1.0625rem 1.75rem;
  border: 1px solid rgba(26, 61, 77, 0.25);
  border-radius: 999px;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.jl-button-ghost:hover {
  border-color: var(--ink);
  background: rgba(26, 61, 77, 0.04);
  transform: translateY(-2px);
}

/* Quiet underlined text link */
.jl-button-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--primary);
  transition: gap 0.2s ease, color 0.2s ease;
}

.jl-button-text:hover {
  color: var(--primary);
  gap: 0.7rem;
}

/*-- -------------------------- -->
<---         Utilities          -->
<--- -------------------------- -*/
.skip {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1111111;
  opacity: 0;
}

.cs-hide-on-desktop {
  display: block;
}

.cs-hide-on-mobile {
  display: none;
}

@media only screen and (min-width: 64rem) {
  .cs-hide-on-desktop {
    display: none;
  }
  .cs-hide-on-mobile {
    display: block;
  }
}
/*-- -------------------------- -->
<---         Navigation         -->
<--- -------------------------- -*/
/* Mobile first (< 1024px) */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }
  #cs-navigation {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    padding: 0.75rem clamp(1rem, 4vw, 1.5rem);
    background-color: rgba(251, 241, 237, 0.92);
    backdrop-filter: saturate(150%) blur(12px);
    -webkit-backdrop-filter: saturate(150%) blur(12px);
    border-bottom: 1px solid var(--line);
  }
  #cs-navigation .cs-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #cs-navigation .cs-logo {
    display: flex;
    align-items: center;
    height: 3rem;
    z-index: 10;
  }
  #cs-navigation .cs-logo img {
    height: 100%;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #cs-navigation .cs-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-left: auto;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  #cs-navigation .cs-box {
    position: relative;
    width: 1.75rem;
    height: 1rem;
  }
  #cs-navigation .cs-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--ink);
    border-radius: 2px;
    transition: transform 0.4s, top 0.3s, opacity 0.3s;
  }
  #cs-navigation .cs-line1 {
    top: 0;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateY(-50%);
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
  }
  #cs-navigation .cs-toggle.cs-active .cs-line1 {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  #cs-navigation .cs-toggle.cs-active .cs-line2 {
    opacity: 0;
  }
  #cs-navigation .cs-toggle.cs-active .cs-line3 {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  #cs-navigation .cs-ul-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    padding-top: var(--nav-height);
    background-color: var(--bg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  #cs-navigation .cs-ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: calc(100vh - var(--nav-height));
    padding: 2rem;
    list-style: none;
  }
  #cs-navigation .cs-li-link {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 7.5vw, 2.5rem);
    font-weight: 400;
    color: var(--ink);
    text-decoration: none;
    padding: 0.5rem 1rem;
  }
  #cs-navigation .cs-nav-button {
    display: none;
  }
  #cs-navigation .cs-mobile-cta {
    margin-top: 1.25rem;
  }
}
/* Desktop (>= 1024px) */
@media only screen and (min-width: 64rem) {
  #cs-navigation {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: var(--nav-height);
    padding: 0 clamp(1.5rem, 4vw, 2.5rem);
    background-color: rgba(251, 241, 237, 0.85);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s ease;
  }
  #cs-navigation .cs-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
  }
  #cs-navigation .cs-logo {
    display: flex;
    align-items: center;
    height: 3.25rem;
    margin-right: auto;
  }
  #cs-navigation .cs-logo img {
    height: 100%;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-ul {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 2.6vw, 2.5rem);
    list-style: none;
  }
  #cs-navigation .cs-li-link {
    position: relative;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: color 0.25s ease;
  }
  #cs-navigation .cs-li-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--ink);
  }
  #cs-navigation .cs-li-link:hover::after {
    width: 100%;
  }
}
/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
#cs-footer {
  background-color: var(--footer-bg);
  color: rgba(253, 249, 245, 0.78);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2rem) 0;
}
#cs-footer .cs-container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
#cs-footer .cs-logo-group {
  max-width: 34rem;
}
#cs-footer .cs-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
}
#cs-footer .cs-footer-mark {
  width: 3rem;
  height: auto;
}
#cs-footer .cs-footer-name {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
  color: #fdf6f1;
}
#cs-footer .cs-footer-name span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--peach);
  margin-top: 0.45rem;
}
#cs-footer .cs-text {
  color: rgba(253, 249, 245, 0.72);
  margin-bottom: 1.75rem;
  max-width: 42ch;
}
#cs-footer .cs-bacp {
  width: 11.5rem;
  height: auto;
  padding: 0.6rem 0.85rem;
  background: #fff;
  border-radius: 10px;
}
#cs-footer .cs-header {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 1.25rem;
}
#cs-footer .cs-nav,
#cs-footer .cs-contact {
  list-style: none;
}
#cs-footer .cs-nav-li {
  margin-bottom: 0.75rem;
}
#cs-footer .cs-nav-link,
#cs-footer .cs-contact-link {
  color: rgba(253, 249, 245, 0.78);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.25s ease;
}
#cs-footer .cs-nav-link:hover,
#cs-footer .cs-contact-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
#cs-footer .cs-contact-li {
  margin-bottom: 1rem;
}
#cs-footer .cs-address {
  font-style: normal;
}
#cs-footer .cs-credit {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(253, 249, 245, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(253, 249, 245, 0.6);
}
#cs-footer {
  /* Designer credit — bespoke colour for this link only */
}
#cs-footer .cs-credit-link {
  color: #f6861e;
  text-decoration: none;
}
#cs-footer .cs-credit-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media only screen and (min-width: 48rem) {
  #cs-footer .cs-container {
    grid-template-columns: 1.6fr 1fr 1.1fr;
    gap: 3rem;
  }
}
/*-- -------------------------- -->
<---   Persistent mobile CTA    -->
<--- -------------------------- -*/
.jl-sticky-cta {
  display: none; /* desktop: never shown (the nav button is persistent there) */
}

/* Mobile only */
@media only screen and (max-width: 63.9375rem) {
  .jl-sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9000;
    padding: 0.7rem clamp(1rem, 4vw, 1.5rem);
    padding-bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px));
    background: rgba(251, 241, 237, 0.92);
    backdrop-filter: saturate(150%) blur(12px);
    -webkit-backdrop-filter: saturate(150%) blur(12px);
    border-top: 1px solid var(--line);
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .jl-sticky-cta .cs-button-solid {
    width: 100%;
  }
  .jl-sticky-cta.is-hidden {
    transform: translateY(130%);
    opacity: 0;
    pointer-events: none;
  }
}
/*# sourceMappingURL=root.css.map */