/* ==========================================================================
   Full Circle Vaulting — fullcirclevaulting.com
   Editorial static site · her brand only (BRAND-NOTES.md 2026-07-15)
   apricot #ffab6f · rust #a34120 · pine #31402f · cream #faf6f0 · ink #2c2118
   Fraunces (display serif) + DM Sans (body)
   ========================================================================== */

:root {
  --cream: #faf6f0;
  --cream-deep: #f3ecdf;
  --ink: #2c2118;
  --ink-soft: rgba(44, 33, 24, 0.72);
  --ink-faint: rgba(44, 33, 24, 0.5);
  --pine: #31402f;
  --pine-deep: #263325;
  --apricot: #ffab6f;
  --apricot-deep: #f79a58;
  --rust: #a34120;
  --paper: #fffdf9;
  --line: rgba(44, 33, 24, 0.1);
  --shadow-soft: 0 2px 10px rgba(44, 33, 24, 0.05);
  --shadow-lift: 0 18px 42px rgba(44, 33, 24, 0.14);
  --radius: 20px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pad-x: clamp(20px, 5vw, 48px);
  --measure: 62ch;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--rust); text-decoration-thickness: 1px; text-underline-offset: 3px; }

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

.wrap { max-width: 1120px; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.wrap--narrow { max-width: 860px; }

/* ---------- type ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 18px;
}

.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  max-width: var(--measure);
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 246, 240, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--apricot);
  color: var(--rust);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.1;
}

.brand__place {
  display: block;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.site-nav a:hover { color: var(--ink); }

.site-nav a[aria-current="page"] {
  color: var(--rust);
  border-bottom-color: var(--apricot);
}

.site-nav .nav-cta {
  background: var(--apricot);
  color: var(--ink);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  border-bottom: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.site-nav .nav-cta:hover {
  background: var(--apricot-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(163, 65, 32, 0.22);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 8px; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
    padding: 10px var(--pad-x) 18px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 13px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--line); }
  .site-nav .nav-cta {
    margin-top: 14px;
    text-align: center;
    border-bottom: none;
  }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 30px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  text-align: center;
}

.btn--primary {
  background: var(--apricot);
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--apricot-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(163, 65, 32, 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px rgba(44, 33, 24, 0.28);
}

.btn--ghost:hover {
  box-shadow: inset 0 0 0 1.5px var(--ink);
  transform: translateY(-2px);
}

.btn--on-dark { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.55); }
.btn--on-dark:hover { box-shadow: inset 0 0 0 1.5px #fff; }

/* ---------- hero (home) ---------- */

.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 780px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(28, 22, 16, 0.82) 0%, rgba(28, 22, 16, 0.35) 46%, rgba(28, 22, 16, 0.12) 100%),
    linear-gradient(100deg, rgba(38, 51, 37, 0.55) 0%, rgba(38, 51, 37, 0) 55%);
}

.hero__content {
  width: 100%;
  padding-top: 120px;
  padding-bottom: clamp(48px, 8vh, 84px);
}

.hero .eyebrow { color: var(--apricot); }

.hero h1 {
  color: #fff;
  font-size: clamp(42px, 7.4vw, 84px);
  max-width: 13ch;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--apricot);
}

.hero__sub {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, 0.92);
  max-width: 52ch;
  margin-bottom: 34px;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  list-style: none;
}

.hero__badges li {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 7px 15px;
}

/* ---------- page hero (interior pages) ---------- */

.page-hero {
  padding-top: clamp(56px, 9vh, 96px);
  padding-bottom: clamp(36px, 6vh, 64px);
}

.page-hero h1 {
  font-size: clamp(36px, 5.6vw, 64px);
  max-width: 18ch;
  margin-bottom: 20px;
}

/* ---------- sections ---------- */

.section { padding-top: clamp(56px, 9vh, 104px); padding-bottom: clamp(56px, 9vh, 104px); }
.section--paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--tint { background: var(--cream-deep); }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vh, 56px); }

.section-head h2 { font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 16px; }

.section-head p { color: var(--ink-soft); font-size: clamp(16.5px, 1.8vw, 19px); }

/* ---------- cards ---------- */

.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }

.card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: var(--rust);
  display: block;
  margin-bottom: 14px;
}

.card h3 { font-size: 21px; margin-bottom: 10px; }

.card p { font-size: 15.5px; color: var(--ink-soft); }

.footnote {
  margin-top: 30px;
  font-size: 14px;
  color: var(--ink-faint);
  max-width: var(--measure);
}

/* ---------- photo band ---------- */

.photo-band {
  position: relative;
  min-height: clamp(360px, 55vh, 520px);
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
}

.photo-band__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, rgba(38, 51, 37, 0.78) 0%, rgba(38, 51, 37, 0.38) 60%, rgba(38, 51, 37, 0.2) 100%);
}

.photo-band blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.2;
  max-width: 22ch;
}

.photo-band cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--apricot);
  margin-top: 20px;
}

/* ---------- split (text + photo) ---------- */

.split {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

@media (min-width: 820px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--rev > .split__media { order: -1; }
}

.split__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.split__media--wide img { aspect-ratio: 4 / 3; }

.split__media figcaption {
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 12px;
}

.split h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 18px; }

.split p { color: var(--ink-soft); margin-bottom: 16px; max-width: var(--measure); }

/* ---------- checklist ---------- */

.checklist { list-style: none; margin: 22px 0; }

.checklist li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 13px;
  color: var(--ink-soft);
}

.checklist li strong { color: var(--ink); }

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--apricot);
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.7 5.3a1 1 0 0 1 0 1.4l-4 4a1 1 0 0 1-1.4 0l-2-2a1 1 0 1 1 1.4-1.4l1.3 1.3 3.3-3.3a1 1 0 0 1 1.4 0z"/></svg>') center / contain no-repeat;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.7 5.3a1 1 0 0 1 0 1.4l-4 4a1 1 0 0 1-1.4 0l-2-2a1 1 0 1 1 1.4-1.4l1.3 1.3 3.3-3.3a1 1 0 0 1 1.4 0z"/></svg>') center / contain no-repeat;
  background-color: var(--rust);
}

/* ---------- pricing ---------- */

.plans {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }

.plan--featured {
  background: var(--pine);
  color: #fff;
  border-color: var(--pine);
}

.plan--featured h3, .plan--featured .plan__price { color: #fff; }
.plan--featured .plan__meta, .plan--featured li, .plan--featured .plan__note { color: rgba(255, 255, 255, 0.82); }
.plan--featured .checklist li strong { color: #fff; }
.plan--featured .checklist li::before { background-color: var(--apricot); }

.plan__flag {
  position: absolute;
  top: -14px;
  left: 32px;
  z-index: 6;
  background: var(--apricot);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 14px;
}

.plan h3 { font-size: 24px; margin-bottom: 6px; }

.plan__meta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
}

.plan__price {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}

.plan__price span {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: inherit;
  opacity: 0.65;
}

.plan .checklist { flex-grow: 1; }

.plan__note { font-size: 13.5px; color: var(--ink-faint); margin-bottom: 20px; }

.plan .btn { width: 100%; }

/* ---------- fine print strip ---------- */

.fineprint {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.fineprint__item {
  border-top: 2px solid var(--apricot);
  padding-top: 16px;
}

.fineprint__item h3 { font-size: 17px; margin-bottom: 8px; }
.fineprint__item p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- mission ---------- */

.mission {
  background: var(--pine);
  color: #fff;
}

.mission .eyebrow { color: var(--apricot); }

.mission__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(21px, 2.9vw, 30px);
  line-height: 1.45;
  max-width: 34ch;
}

.mission__text em { font-style: italic; color: var(--apricot); }

.mission p.mission__body {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(19px, 2.3vw, 24px);
  line-height: 1.55;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 26px;
}

.mission a { color: var(--apricot); }

/* ---------- FAQ ---------- */

.faq-list { max-width: 860px; }

.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-list details:hover { box-shadow: var(--shadow-soft); }

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 26px;
  color: var(--rust);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after { transform: rotate(45deg); }

.faq-list .faq-a {
  padding: 0 26px 24px;
  color: var(--ink-soft);
  max-width: 70ch;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--pine-deep);
  color: #fff;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(30px, 4.6vw, 50px);
  max-width: 20ch;
  margin: 0 auto 18px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 54ch;
  margin: 0 auto 32px;
}

.cta-band .btn--primary { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }

.cta-band__sub { font-size: 14px; color: rgba(255, 255, 255, 0.65); margin-top: 18px; }
.cta-band__sub a { color: var(--apricot); }

/* ---------- contact ---------- */

.contact-cards { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.contact-card h3 { font-size: 20px; margin-bottom: 10px; }
.contact-card p { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 8px; }

.contact-card .big-link {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: var(--rust);
  text-decoration: none;
  display: inline-block;
  margin: 6px 0 10px;
}

.contact-card .big-link:hover { text-decoration: underline; text-decoration-thickness: 2px; }

/* ---------- photo grid ---------- */

.photo-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.photo-grid figure { margin: 0; }

.photo-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.photo-grid img:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.photo-grid figcaption { font-size: 13px; color: var(--ink-faint); margin-top: 10px; }

/* ---------- footer ---------- */

.site-footer {
  background: #241b13;
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 40px;
  font-size: 14.5px;
}

.site-footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 40px;
}

.site-footer h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 12px;
}

.site-footer a { color: var(--apricot); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer nav a { color: rgba(255, 255, 255, 0.85); }

.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__legal a { color: rgba(255, 255, 255, 0.55); }
.site-footer__legal a:hover { color: var(--apricot); }

/* ---------- misc ---------- */

.note-strip {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 26px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 860px;
}

.note-strip strong { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none; }
}
