:root {
  --frc-forest: #16352c;
  --frc-forest-deep: #0f241e;
  --frc-moss: #4d7a63;
  --frc-honey: #c9923a;
  --frc-honey-deep: #a6762b;
  --frc-ivory: #f3efe6;
  --frc-ivory-deep: #e6dfd0;
  --frc-bark: #2c241c;
  --frc-ink: #1f2a26;
  --frc-muted: #5c6a64;
  --frc-paper: #f7f4ee;
  --frc-white: #fffcf7;
  --frc-line: rgba(22, 53, 44, 0.12);
  --frc-shadow: 0 24px 48px rgba(15, 36, 30, 0.16);
  --frc-display: "Libre Baskerville", Georgia, serif;
  --frc-sans: "Sora", "Segoe UI", sans-serif;
  --frc-top: 38px;
  --frc-header: 78px;
  --frc-offset: calc(var(--frc-top) + var(--frc-header));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--frc-header) + 12px);
}

body {
  margin: 0;
  color: var(--frc-ink);
  background: var(--frc-paper);
  font-family: var(--frc-sans);
  font-size: 16.5px;
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.frc-logo__text {
  font-family: var(--frc-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--frc-forest);
  margin: 0 0 0.55em;
}

p {
  margin: 0 0 1rem;
}

figure {
  margin: 0;
}

.frc-container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: calc(var(--frc-header) + 16px);
}

.frc-skip {
  position: absolute;
  left: 16px;
  top: -44px;
  z-index: 80;
  background: var(--frc-forest);
  color: var(--frc-ivory);
  padding: 8px 12px;
}

.frc-skip:focus {
  top: 12px;
}

.frc-eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--frc-moss);
}

.frc-eyebrow--honey {
  color: var(--frc-honey);
}

.frc-topbar {
  height: var(--frc-top);
  background: var(--frc-forest-deep);
  color: rgba(243, 239, 230, 0.82);
  font-size: 0.78rem;
}

.frc-topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.frc-topbar a:hover {
  color: var(--frc-honey);
}

.frc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--frc-header);
  background: var(--frc-forest);
  color: var(--frc-ivory);
}

.frc-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(15, 36, 30, 0.28);
}

.frc-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.frc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.frc-logo__img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--frc-ivory);
}

.frc-logo__text {
  margin: 0;
  color: var(--frc-ivory);
  font-size: 1.35rem;
}

.frc-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.frc-nav-list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.frc-nav-list a {
  color: rgba(243, 239, 230, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
}

.frc-nav-list a:hover,
.frc-nav-list a.is-active {
  color: var(--frc-ivory);
}

.frc-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.frc-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--frc-ivory);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.frc-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.frc-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.frc-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.frc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.frc-btn--honey {
  background: var(--frc-honey);
  color: var(--frc-forest-deep);
}

.frc-btn--honey:hover {
  background: var(--frc-honey-deep);
}

.frc-btn--ghost {
  background: transparent;
  color: var(--frc-ivory);
  border: 1px solid rgba(243, 239, 230, 0.4);
}

.frc-btn--full {
  width: 100%;
}

.frc-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: calc(100vh - var(--frc-offset));
  background: var(--frc-forest);
  color: var(--frc-ivory);
}

.frc-hero h1 {
  color: var(--frc-ivory);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 11ch;
}

.frc-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(28px, 6vw, 80px);
}

.frc-lead {
  font-size: 1.05rem;
  max-width: 42ch;
  color: rgba(243, 239, 230, 0.86);
}

.frc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 22px;
}

.frc-hero__note {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(243, 239, 230, 0.62);
  max-width: 46ch;
}

.frc-hero__media {
  position: relative;
  overflow: hidden;
}

.frc-hero__media::after {
  content: "";
  position: absolute;
  inset: 28px auto auto 0;
  width: 14px;
  height: 48%;
  background: var(--frc-honey);
}

.frc-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.frc-hours {
  background: var(--frc-ivory);
  border-bottom: 1px solid var(--frc-line);
  padding: 22px 0;
}

.frc-hours__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.frc-hours__label {
  margin: 0 0 4px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--frc-moss);
  font-weight: 600;
}

.frc-hours__value {
  margin: 0;
  font-family: var(--frc-display);
  color: var(--frc-forest);
}

.frc-section {
  padding: 92px 0;
}

.frc-section__intro {
  max-width: 640px;
  margin-bottom: 42px;
}

.frc-section__intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.frc-about {
  background: var(--frc-paper);
}

.frc-about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.frc-about__copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.frc-about__media {
  position: relative;
  padding: 18px 0 0 18px;
}

.frc-about__media::before {
  content: "";
  position: absolute;
  inset: 0 28px 28px 0;
  background: var(--frc-honey);
  z-index: 0;
}

.frc-about__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.frc-about__media figcaption {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--frc-muted);
}

.frc-checklist {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.frc-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.frc-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--frc-honey);
  transform: rotate(45deg);
}

.frc-care {
  background: var(--frc-ivory);
}

.frc-care__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.frc-card {
  background: var(--frc-white);
  overflow: hidden;
  box-shadow: var(--frc-shadow);
}

.frc-card--wide {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
}

.frc-card--wide .frc-card__media img {
  min-height: 280px;
}

.frc-card__media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.frc-card__body {
  padding: 22px 22px 26px;
}

.frc-card__index {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--frc-honey-deep);
  font-weight: 700;
}

.frc-card__link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--frc-moss);
  border-bottom: 1px solid var(--frc-honey);
}

.frc-path {
  background: var(--frc-forest);
  color: var(--frc-ivory);
}

.frc-path h2,
.frc-path h3 {
  color: var(--frc-ivory);
}

.frc-path .frc-eyebrow {
  color: var(--frc-honey);
}

.frc-path__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.frc-path__list li {
  padding: 22px 18px;
  background: rgba(243, 239, 230, 0.06);
  border-top: 3px solid var(--frc-honey);
}

.frc-path__num {
  display: block;
  margin-bottom: 10px;
  font-family: var(--frc-display);
  font-size: 1.4rem;
  color: var(--frc-honey);
}

.frc-faq__layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.frc-faq__item {
  background: var(--frc-white);
  border: 1px solid var(--frc-line);
  margin-bottom: 10px;
  padding: 4px 18px;
}

.frc-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  list-style: none;
}

.frc-faq__item summary::-webkit-details-marker {
  display: none;
}

.frc-faq__item p {
  color: var(--frc-muted);
  padding-bottom: 12px;
}

.frc-contact {
  padding-bottom: 0;
  background: linear-gradient(180deg, var(--frc-paper) 0%, var(--frc-ivory) 100%);
}

.frc-contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.frc-contact__list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.frc-contact__list span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--frc-moss);
  margin-bottom: 4px;
}

.frc-contact__list a:hover {
  color: var(--frc-honey-deep);
}

address,
.frc-contact__list p {
  font-style: normal;
  margin: 0;
}

.frc-form {
  background: var(--frc-white);
  padding: 28px;
  box-shadow: var(--frc-shadow);
  display: grid;
  gap: 14px;
}

.frc-form label {
  display: grid;
  gap: 7px;
  font-weight: 600;
  font-size: 0.9rem;
}

.frc-form__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.frc-form input,
.frc-form textarea,
.frc-form select {
  width: 100%;
  border: 1px solid var(--frc-line);
  border-radius: 4px;
  padding: 11px 12px;
  font: inherit;
  background: var(--frc-paper);
}

.frc-form input:focus,
.frc-form textarea:focus,
.frc-form select:focus {
  outline: 2px solid var(--frc-moss);
  border-color: transparent;
}

.frc-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.frc-form__legal {
  margin: 0;
  font-size: 0.82rem;
  color: var(--frc-muted);
  font-weight: 400;
}

.frc-form__legal a {
  text-decoration: underline;
  color: var(--frc-forest);
}

.frc-form__status {
  min-height: 1.4em;
  margin: 0;
  font-weight: 500;
}

.frc-form__status.is-success {
  color: var(--frc-moss);
}

.frc-form__status.is-error {
  color: #9a3b2a;
}

.frc-map {
  height: 360px;
}

.frc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.frc-footer {
  background: var(--frc-forest-deep);
  color: rgba(243, 239, 230, 0.82);
  padding: 64px 0 0;
}

.frc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}

.frc-footer__heading {
  margin: 0 0 12px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--frc-honey);
  font-weight: 700;
}

.frc-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.frc-footer__links li {
  margin-bottom: 8px;
}

.frc-footer a:hover {
  color: var(--frc-ivory);
}

.frc-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
}

.frc-footer__bar {
  border-top: 1px solid rgba(243, 239, 230, 0.12);
  padding: 16px 0 22px;
  font-size: 0.88rem;
}

.frc-footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.frc-footer__bar p {
  margin: 0;
}

.frc-footer__bar a {
  margin-left: 10px;
  text-decoration: underline;
}

.frc-page {
  padding: 48px 0 88px;
}

.frc-page__inner {
  max-width: 760px;
}

.frc-article__header h1 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.frc-article__body h2 {
  margin: 28px 0 10px;
  font-size: 1.35rem;
}

.frc-404 {
  padding: 40px 0 80px;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .frc-hero,
  .frc-about__grid,
  .frc-care__grid,
  .frc-path__list,
  .frc-faq__layout,
  .frc-contact__grid,
  .frc-hours__row,
  .frc-footer__grid {
    grid-template-columns: 1fr;
  }

  .frc-card--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .frc-hero {
    min-height: 0;
  }

  .frc-hero__media img,
  .frc-about__media img {
    min-height: 280px;
    height: 48vh;
  }

  .frc-hero__copy {
    padding: 48px 24px 40px;
  }
}

@media (max-width: 760px) {
  .frc-topbar {
    display: none;
  }

  .frc-toggle {
    display: block;
  }

  .frc-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--frc-header);
    background: var(--frc-forest-deep);
    padding: 18px 22px 28px;
    flex-direction: column;
    align-items: stretch;
  }

  .frc-nav.is-open {
    display: flex;
  }

  .frc-nav-list {
    flex-direction: column;
    gap: 14px;
  }

  .frc-form__split,
  .frc-footer__bar-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .frc-section {
    padding: 64px 0;
  }
}
