:root {
  --jf-rose: #c98f9f;
  --jf-rose-deep: #86505f;
  --jf-rose-soft: #f3dde3;
  --jf-cream: #fffaf7;
  --jf-sand: #eee4dd;
  --jf-ink: #211b1d;
  --jf-muted: #71666a;
  --jf-green: #66705a;
  --jf-radius-lg: 36px;
  --jf-radius-md: 24px;
  --jf-shadow: 0 22px 70px rgba(54, 30, 38, 0.09);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body.jf-page {
  margin: 0;
  overflow-x: clip;
  color: var(--jf-ink);
  background: var(--jf-cream);
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
}

body.jf-page * {
  box-sizing: border-box;
}

body.jf-page img {
  display: block;
  max-width: 100%;
}

body.jf-page a {
  color: inherit;
  text-decoration: none;
}

.jf-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--jf-ink);
  transform: translateY(-150%);
}

.jf-skip-link:focus {
  transform: translateY(0);
}

.jf-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 22px;
  background: rgba(255, 250, 247, 0.9);
  border-bottom: 1px solid rgba(33, 27, 29, 0.08);
  backdrop-filter: blur(18px);
}

.jf-header-inner {
  width: min(1380px, 100%);
  min-height: 66px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.jf-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.jf-brand img {
  width: 42px;
  height: 34px;
  object-fit: contain;
}

.jf-main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.jf-main-nav a,
.jf-search-trigger,
.jf-menu-trigger {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--jf-ink);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 650;
  cursor: pointer;
}

.jf-main-nav a {
  padding: 11px 15px;
  transition: background 180ms ease, color 180ms ease;
}

.jf-main-nav a:hover,
.jf-main-nav a[aria-current="page"] {
  color: #fff;
  background: var(--jf-ink);
}

.jf-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jf-search-trigger,
.jf-menu-trigger {
  min-width: 46px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(33, 27, 29, 0.14);
}

.jf-menu-trigger {
  display: none;
  width: auto;
  padding: 0 17px;
}

.jf-search-trigger:hover,
.jf-menu-trigger:hover {
  color: #fff;
  background: var(--jf-rose-deep);
  border-color: var(--jf-rose-deep);
}

.jf-mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 20px;
  color: #fff;
  background: var(--jf-ink);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
}

.jf-mobile-panel.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.jf-mobile-panel__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jf-mobile-panel__close {
  min-width: 48px;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 1.45rem;
}

.jf-mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.jf-mobile-nav a {
  padding: 9px 0;
  font-size: clamp(2.25rem, 11vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.jf-mobile-panel__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  color: rgba(255,255,255,.72);
  font-size: .93rem;
}

.jf-search-panel {
  position: fixed;
  inset: 0;
  z-index: 2100;
  padding: 28px;
  display: grid;
  align-content: center;
  background: rgba(255, 250, 247, .98);
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.jf-search-panel.is-open {
  visibility: visible;
  opacity: 1;
}

.jf-search-panel__inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.jf-search-panel__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 54px;
}

.jf-search-panel__close {
  min-width: 48px;
  min-height: 48px;
  border: 1px solid rgba(33,27,29,.18);
  border-radius: 50%;
  background: transparent;
  font-size: 1.4rem;
}

.jf-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--jf-ink);
}

.jf-search-form input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--jf-ink);
  font: inherit;
  font-size: clamp(1.5rem, 5vw, 4rem);
  letter-spacing: -.04em;
}

.jf-search-form button {
  align-self: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--jf-rose-deep);
  font: inherit;
  font-weight: 700;
}

.jf-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.jf-search-suggestions a {
  padding: 9px 13px;
  border: 1px solid rgba(33,27,29,.14);
  border-radius: 999px;
  font-size: .92rem;
}

.jf-page-shell {
  width: min(1540px, calc(100% - 24px));
  margin: 12px auto 0;
}

.jf-hero {
  position: relative;
  min-height: min(820px, calc(100svh - 102px));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: var(--jf-radius-lg);
  background: var(--jf-rose-soft);
}

.jf-hero--split {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
}

.jf-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 6vw, 88px);
}

.jf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.jf-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.jf-hero h1 {
  max-width: 990px;
  margin: 0;
  font-size: clamp(4rem, 9vw, 9.2rem);
  font-weight: 600;
  letter-spacing: -.075em;
  line-height: .86;
}

.jf-hero--legal h1,
.jf-hero--contact h1 {
  font-size: clamp(3.5rem, 8vw, 8rem);
}

.jf-hero__lead {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--jf-muted);
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  line-height: 1.48;
}

.jf-hero__media {
  position: relative;
  height: 100%;
  min-height: 680px;
  overflow: hidden;
}

.jf-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--jf-rose-soft), transparent 35%);
  pointer-events: none;
}

.jf-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.jf-hero__actions,
.jf-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.jf-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid var(--jf-ink);
  border-radius: 999px;
  color: #fff !important;
  background: var(--jf-ink);
  font-weight: 720;
  transition: transform 180ms ease, background 180ms ease;
}

.jf-btn:hover {
  transform: translateY(-2px);
  background: var(--jf-rose-deep);
  border-color: var(--jf-rose-deep);
}

.jf-btn--light {
  color: var(--jf-ink) !important;
  background: transparent;
}

.jf-btn--light:hover {
  color: #fff !important;
}

.jf-section {
  padding: clamp(84px, 10vw, 150px) clamp(18px, 4.8vw, 72px);
}

.jf-section--compact {
  padding-top: clamp(62px, 7vw, 100px);
  padding-bottom: clamp(62px, 7vw, 100px);
}

.jf-section--dark {
  color: #fff;
  background: var(--jf-ink);
  border-radius: var(--jf-radius-lg);
}

.jf-section--rose {
  background: var(--jf-rose-soft);
  border-radius: var(--jf-radius-lg);
}

.jf-cta-section {
  padding-top: clamp(52px, 5.5vw, 78px);
  padding-bottom: clamp(52px, 5.5vw, 78px);
}

.jf-cta-section .jf-section-heading {
  margin-bottom: 0;
  align-items: center;
}

.jf-cta-section .jf-section-heading h2 {
  font-size: clamp(2.35rem, 4.7vw, 5rem);
}

.jf-cta-section .jf-cta-actions {
  margin-top: 24px;
}

.jf-section-heading {
  display: grid;
  grid-template-columns: minmax(220px, .62fr) minmax(0, 1.38fr);
  gap: 36px;
  align-items: start;
  margin-bottom: clamp(44px, 7vw, 92px);
}

.jf-section-heading h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.6rem, 6.3vw, 6.6rem);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .94;
}

.jf-section-heading p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--jf-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.jf-section--dark .jf-section-heading p {
  color: rgba(255,255,255,.66);
}

.jf-about-story {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
}

.jf-about-story__media {
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--jf-radius-lg);
}

.jf-about-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.jf-about-story__copy h2 {
  margin: 0 0 28px;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  line-height: .96;
  letter-spacing: -.06em;
}

.jf-about-story__copy p,
.jf-legal-copy p,
.jf-legal-copy li {
  color: var(--jf-muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.jf-stat-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.jf-stat {
  padding: 22px;
  border-top: 1px solid rgba(33,27,29,.2);
}

.jf-stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.jf-stat span {
  display: block;
  margin-top: 8px;
  color: var(--jf-muted);
  font-size: .9rem;
}

.jf-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.jf-info-card {
  min-height: 290px;
  padding: clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(33,27,29,.1);
  border-radius: var(--jf-radius-md);
  background: #fff;
  box-shadow: var(--jf-shadow);
}

.jf-info-card__number {
  color: var(--jf-rose-deep);
  font-weight: 750;
}

.jf-info-card h3 {
  margin: 42px 0 12px;
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.jf-info-card p {
  margin: 0;
  color: var(--jf-muted);
  line-height: 1.65;
}

.jf-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.jf-category-nav a {
  padding: 11px 16px;
  border: 1px solid rgba(33,27,29,.18);
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 650;
}

.jf-category-nav a:hover {
  color: #fff;
  background: var(--jf-rose-deep);
  border-color: var(--jf-rose-deep);
}

.jf-service-category {
  position: relative;
  padding: clamp(78px, 9vw, 132px) clamp(18px, 4.8vw, 72px);
  scroll-margin-top: 92px;
}

.jf-service-category + .jf-service-category {
  border-top: 1px solid rgba(33,27,29,.12);
}

.jf-service-category__head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 460px);
  gap: 36px;
  align-items: end;
  margin-bottom: 50px;
}

.jf-service-category__head h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.2rem);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.07em;
}

.jf-service-category__head p {
  margin: 0;
  color: var(--jf-muted);
  line-height: 1.65;
}

.jf-services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.jf-service-card {
  grid-column: span 2;
  min-height: 560px;
  display: grid;
  grid-template-rows: 250px 1fr;
  overflow: hidden;
  border-radius: var(--jf-radius-md);
  background: #fff;
  box-shadow: var(--jf-shadow);
  scroll-margin-top: 108px;
}

.jf-service-card:nth-child(4),
.jf-service-card:nth-child(5) {
  grid-column: span 3;
}

.jf-service-card__media {
  overflow: hidden;
  background: var(--jf-sand);
}

.jf-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.7,.2,1);
}

.jf-service-card:hover .jf-service-card__media img {
  transform: scale(1.035);
}

.jf-service-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.jf-service-card__category {
  color: var(--jf-rose-deep);
  font-size: .78rem;
  font-weight: 780;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.jf-service-card h3 {
  margin: 14px 0 12px;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.jf-service-card p {
  margin: 0 0 22px;
  color: var(--jf-muted);
  line-height: 1.62;
}

.jf-service-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 720;
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.jf-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.jf-contact-card {
  min-height: 260px;
  padding: clamp(25px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--jf-radius-md);
  background: #fff;
  box-shadow: var(--jf-shadow);
}

.jf-contact-card--wide {
  grid-column: 1 / -1;
  min-height: 340px;
  color: #fff;
  background: var(--jf-rose-deep);
}

.jf-contact-card__label {
  font-size: .8rem;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.jf-contact-card h2,
.jf-contact-card h3 {
  margin: 34px 0 12px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.jf-contact-card p {
  max-width: 650px;
  margin: 0;
  color: var(--jf-muted);
  line-height: 1.65;
}

.jf-contact-card--wide p {
  color: rgba(255,255,255,.76);
}

.jf-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.jf-social-list a {
  padding: 11px 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 650;
}

.jf-legal-wrap {
  width: min(980px, 100%);
  margin: 0 auto;
}

.jf-legal-copy {
  counter-reset: legal-section;
}

.jf-legal-copy section {
  padding: 42px 0;
  border-top: 1px solid rgba(33,27,29,.14);
}

.jf-legal-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -.035em;
}

.jf-legal-copy ul {
  padding-left: 22px;
}

.jf-legal-copy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.jf-article-hero {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 6vw, 92px);
  border-radius: var(--jf-radius-lg);
  background: var(--jf-rose-soft);
}

.jf-article-hero__inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.jf-article-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(3.2rem, 7.6vw, 7.8rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.jf-article-hero p {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--jf-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.6;
}

.jf-article {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(66px, 9vw, 126px) clamp(18px, 4vw, 48px);
}

.jf-article__image {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  margin-bottom: clamp(48px, 7vw, 82px);
  overflow: hidden;
  border-radius: var(--jf-radius-lg);
  background: var(--jf-sand);
}

.jf-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jf-article__copy {
  width: min(820px, 100%);
  margin: 0 auto;
}

.jf-article__copy h2 {
  margin: 58px 0 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.jf-article__copy h3 {
  margin: 38px 0 14px;
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  letter-spacing: -0.035em;
}

.jf-article__copy p,
.jf-article__copy li {
  color: var(--jf-muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.jf-article__copy ul {
  padding-left: 22px;
}

.jf-article__note {
  margin: 38px 0;
  padding: 24px 26px;
  border-left: 3px solid var(--jf-rose-deep);
  border-radius: 0 18px 18px 0;
  background: var(--jf-rose-soft);
}

.jf-update-note {
  padding: 20px 24px;
  margin-bottom: 40px;
  border-radius: 18px;
  background: var(--jf-rose-soft);
  color: var(--jf-muted);
}

.jf-404 {
  min-height: calc(100svh - 96px);
  display: grid;
  place-items: center;
  padding: 36px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,143,159,.32), transparent 35%),
    var(--jf-cream);
}

.jf-404__inner {
  max-width: 920px;
}

.jf-404__code {
  display: block;
  color: var(--jf-rose);
  font-size: clamp(8rem, 30vw, 22rem);
  font-weight: 700;
  letter-spacing: -.1em;
  line-height: .65;
}

.jf-404 h1 {
  margin: 50px 0 14px;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  letter-spacing: -.065em;
  line-height: .95;
}

.jf-404 p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--jf-muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.jf-404 .jf-hero__actions {
  justify-content: center;
}

.jf-site-footer {
  width: min(1540px, calc(100% - 24px));
  margin: 12px auto;
  padding: clamp(38px, 6vw, 76px);
  color: #fff;
  background: var(--jf-ink);
  border-radius: var(--jf-radius-lg);
}

.jf-footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.2fr) repeat(2, minmax(160px, .7fr)) minmax(230px, 1fr);
  gap: 38px;
}

.jf-footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.66);
  line-height: 1.65;
}

.jf-footer-title {
  margin: 0 0 18px;
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.jf-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jf-footer-links a:hover {
  color: var(--jf-rose-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.jf-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 62px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.55);
  font-size: .88rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(.2,.7,.2,1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .jf-main-nav { display: none; }
  .jf-header-inner { grid-template-columns: auto 1fr auto; }
  .jf-menu-trigger { display: inline-flex; }
  .jf-hero--split { grid-template-columns: 1fr 44%; }
  .jf-section-heading { grid-template-columns: 1fr; }
  .jf-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jf-service-card,
  .jf-service-card:nth-child(4),
  .jf-service-card:nth-child(5) { grid-column: auto; }
  .jf-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jf-footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 767.98px) {
  html { scroll-padding-top: 82px; }
  .jf-site-header { padding: 9px 12px; }
  .jf-header-inner { min-height: 58px; gap: 10px; }
  .jf-brand { font-size: 1rem; gap: 8px; }
  .jf-brand img { width: 36px; height: 29px; }
  .jf-search-trigger { min-width: 44px; min-height: 44px; }
  .jf-menu-trigger { min-height: 44px; padding: 0 14px; font-size: .8rem; }
  .jf-page-shell { width: calc(100% - 12px); margin-top: 6px; }
  .jf-hero { min-height: auto; border-radius: 24px; }
  .jf-hero--split { grid-template-columns: 1fr; }
  .jf-hero__content { padding: 42px 22px 34px; }
  .jf-hero h1 { font-size: clamp(3.25rem, 17vw, 5.6rem); line-height: .9; }
  .jf-hero--legal h1,
  .jf-hero--contact h1 { font-size: clamp(3.1rem, 15vw, 5.2rem); }
  .jf-hero__lead { margin-top: 22px; font-size: 1rem; }
  .jf-hero__media { min-height: 440px; order: -1; }
  .jf-hero__media::after { background: linear-gradient(0deg, var(--jf-rose-soft), transparent 40%); }
  .jf-hero__media img { object-position: center 18%; }
  .jf-hero__actions, .jf-cta-actions { margin-top: 24px; }
  .jf-btn { width: 100%; }
  .jf-section { padding: 78px 18px; }
  .jf-section--dark,
  .jf-section--rose { border-radius: 24px; }
  .jf-cta-section { padding-top: 48px; padding-bottom: 48px; }
  .jf-cta-section .jf-section-heading { gap: 14px; }
  .jf-cta-section .jf-section-heading h2 { font-size: clamp(2.4rem, 12vw, 4rem); }
  .jf-section-heading { gap: 10px; margin-bottom: 38px; }
  .jf-section-heading h2 { font-size: clamp(2.8rem, 14vw, 5rem); }
  .jf-about-story { grid-template-columns: 1fr; }
  .jf-about-story__media { min-height: 470px; border-radius: 24px; }
  .jf-about-story__copy h2 { font-size: clamp(2.75rem, 13vw, 4.9rem); }
  .jf-stat-line { grid-template-columns: 1fr; }
  .jf-card-grid,
  .jf-services-grid,
  .jf-contact-grid { grid-template-columns: 1fr; }
  .jf-info-card { min-height: 240px; }
  .jf-service-category { padding: 76px 18px; }
  .jf-service-category__head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 34px; }
  .jf-service-category__head h2 { font-size: clamp(3rem, 15vw, 5.5rem); }
  .jf-service-card { min-height: auto; grid-template-rows: 230px auto; scroll-margin-top: 88px; }
  .jf-service-card__body { min-height: 320px; padding: 24px; }
  .jf-contact-card, .jf-contact-card--wide { min-height: 250px; grid-column: auto; }
  .jf-search-panel { padding: 18px; }
  .jf-search-panel__top { margin-bottom: 38px; }
  .jf-search-form { grid-template-columns: 1fr; }
  .jf-search-form button { width: 100%; }
  .jf-site-footer { width: calc(100% - 12px); margin: 6px auto; padding: 44px 24px; border-radius: 24px; }
  .jf-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .jf-footer-bottom { flex-direction: column; margin-top: 40px; }
  .jf-404 { padding: 22px; }
  .jf-404__code { font-size: clamp(8rem, 43vw, 13rem); }
  .jf-article-hero { padding: 54px 22px; border-radius: 24px; }
  .jf-article-hero h1 { font-size: clamp(3rem, 14.5vw, 5.2rem); }
  .jf-article { padding: 64px 14px 78px; }
  .jf-article__image { aspect-ratio: 4 / 3; border-radius: 24px; }
  .jf-article__copy p,
  .jf-article__copy li { font-size: 1rem; }
}

/* --------------------------------------------------------------------------
   Padronização final das páginas internas com a Home Janete Felix
   A Home continua isolada em janete-home.css; estas regras afetam somente
   páginas com body.jf-page.
   -------------------------------------------------------------------------- */

body.jf-page {
  --jf-rose: #c98f9f;
  --jf-rose-deep: #a65369;
  --jf-rose-soft: #eadde1;
  --jf-cream: #fffdfc;
  --jf-sand: #f7f1ec;
  --jf-ink: #292124;
  --jf-burgundy: #633142;
  --jf-muted: #7b6269;
  --jf-radius-lg: 28px;
  --jf-radius-md: 22px;
  --jf-shadow: 0 18px 55px rgba(99, 49, 66, 0.08);
  background:
    radial-gradient(circle at 86% 8%, rgba(221, 182, 193, 0.18), transparent 28rem),
    var(--jf-cream);
}

/*
 * O rodapé da Home fica fixo atrás do conteúdo para ser revelado apenas no
 * final da rolagem. Nas páginas internas, o <main> não tinha uma camada opaca
 * em toda a largura; por isso o rodapé vazava pelas margens e por trás do CTA.
 * Esta camada pertence somente às páginas .jf-page e não altera a Home.
 */
body.jf-page #smooth-content > main {
  background: var(--jf-cream);
}

body.jf-page :where(h1, h2, h3, h4, h5, h6, p, a, button, input, span, li) {
  font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
}

.jf-site-header {
  padding: 16px 24px;
  background: rgba(255, 253, 252, 0.88);
  border-color: rgba(99, 49, 66, 0.1);
  box-shadow: 0 0 0 rgba(99, 49, 66, 0);
  backdrop-filter: blur(18px) saturate(1.15);
  transition: padding 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.jf-site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(255, 253, 252, 0.96);
  box-shadow: 0 12px 35px rgba(99, 49, 66, 0.09);
}

.jf-header-inner {
  width: min(1320px, 100%);
  min-height: 58px;
  gap: 24px;
}

.jf-brand {
  gap: 8px;
  color: var(--jf-ink);
  font-size: 1.35rem;
  font-weight: 700;
}

.jf-brand img {
  width: 50px;
  height: 34px;
  object-fit: contain;
}

.jf-main-nav {
  gap: 4px;
}

.jf-main-nav > a,
.jf-nav-services > a {
  position: relative;
  padding: 12px 13px;
  border-radius: 0;
  color: var(--jf-ink);
  background: transparent !important;
  font-size: 0.96rem;
  font-weight: 600;
}

.jf-main-nav > a::after,
.jf-nav-services > a::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 7px;
  left: 13px;
  height: 1px;
  background: var(--jf-rose-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms cubic-bezier(.2, .7, .2, 1);
}

.jf-main-nav > a:hover,
.jf-main-nav > a[aria-current="page"],
.jf-nav-services > a:hover,
.jf-nav-services > a[aria-current="page"] {
  color: var(--jf-burgundy);
}

.jf-main-nav > a:hover::after,
.jf-main-nav > a[aria-current="page"]::after,
.jf-nav-services > a:hover::after,
.jf-nav-services > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.jf-nav-services {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.jf-submenu-toggle {
  width: 28px;
  height: 36px;
  margin-left: -9px;
  display: inline-grid;
  place-items: center;
  border: 0;
  color: var(--jf-burgundy);
  background: transparent;
  cursor: pointer;
}

.jf-submenu-toggle::before {
  content: "⌄";
  display: block;
  font-size: 1rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.jf-nav-services.is-open .jf-submenu-toggle::before {
  transform: rotate(180deg);
}

.jf-service-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 20;
  width: min(700px, 78vw);
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px 18px;
  border: 1px solid rgba(99, 49, 66, 0.1);
  border-radius: 22px;
  background: rgba(255, 253, 252, 0.98);
  box-shadow: 0 24px 70px rgba(67, 37, 47, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(.2,.7,.2,1), visibility 220ms ease;
}

.jf-service-submenu a {
  padding: 9px 10px;
  border-radius: 11px;
  color: var(--jf-muted);
  font-size: 0.86rem;
  line-height: 1.2;
  transition: color 180ms ease, background 180ms ease;
}

.jf-service-submenu a:hover,
.jf-service-submenu a:focus-visible {
  color: var(--jf-burgundy);
  background: var(--jf-sand);
}

.jf-nav-services:hover .jf-service-submenu,
.jf-nav-services:focus-within .jf-service-submenu,
.jf-nav-services.is-open .jf-service-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.jf-search-trigger,
.jf-menu-trigger {
  min-width: 42px;
  min-height: 42px;
  border-color: rgba(99, 49, 66, 0.14);
  color: var(--jf-ink);
  background: transparent;
}

.jf-search-trigger:hover,
.jf-menu-trigger:hover {
  color: var(--jf-burgundy);
  background: var(--jf-sand);
  border-color: var(--jf-sand);
}

.jf-mobile-panel {
  overflow-y: auto;
  background:
    radial-gradient(circle at 86% 12%, rgba(201, 143, 159, 0.24), transparent 22rem),
    var(--jf-burgundy);
}

.jf-mobile-nav {
  padding: 38px 0;
  justify-content: flex-start;
}

.jf-mobile-nav > a {
  font-weight: 560;
}

.jf-mobile-services {
  margin: 8px 0 20px;
  padding: 14px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.jf-mobile-services summary {
  padding: 8px 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.jf-mobile-services__grid {
  padding-bottom: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 14px;
}

.jf-mobile-services__grid a {
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.25;
}

.jf-search-panel {
  background: rgba(255, 253, 252, 0.98);
}

.jf-search-form {
  border-color: var(--jf-burgundy);
}

.jf-search-form button {
  background: var(--jf-burgundy);
}

.jf-search-suggestions a:hover {
  color: #fff;
  background: var(--jf-rose-deep);
  border-color: var(--jf-rose-deep);
}

.jf-page-shell {
  width: min(1540px, calc(100% - 24px));
  margin-top: 12px;
}

.jf-hero {
  min-height: clamp(540px, 72svh, 720px);
  border-radius: var(--jf-radius-lg);
  background:
    linear-gradient(125deg, rgba(234, 221, 225, 0.96), rgba(247, 241, 236, 0.92)),
    var(--jf-sand);
}

.jf-hero--legal {
  min-height: clamp(400px, 52svh, 540px);
}

.jf-hero__content {
  padding: clamp(44px, 6vw, 82px);
}

.jf-hero h1 {
  font-size: clamp(3.8rem, 7.6vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.068em;
  line-height: 0.89;
}

.jf-hero--legal h1,
.jf-hero--contact h1 {
  max-width: 1120px;
  font-size: clamp(3.6rem, 7vw, 7.2rem);
}

.jf-hero__lead {
  color: var(--jf-muted);
}

.jf-hero__media {
  min-height: 540px;
}

.jf-hero__media::after {
  background: linear-gradient(90deg, var(--jf-rose-soft), transparent 34%);
}

.jf-btn {
  min-height: 54px;
  padding: 13px 24px;
  border-color: var(--jf-burgundy);
  color: #fffdfc !important;
  background: var(--jf-burgundy);
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: 0 9px 22px rgba(99, 49, 66, 0.11);
  transition: transform 200ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.jf-btn:hover {
  color: #fff !important;
  background: var(--jf-rose-deep);
  border-color: var(--jf-rose-deep);
}

.jf-btn--light {
  color: var(--jf-burgundy) !important;
  background: transparent;
  box-shadow: none;
}

.jf-btn--light:hover {
  color: #fff !important;
}

.jf-section {
  padding: clamp(76px, 8vw, 124px) clamp(20px, 4.8vw, 72px);
}

.jf-section--compact {
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(56px, 6vw, 88px);
}

.jf-section--rose {
  background: var(--jf-sand);
}

.jf-section--dark {
  color: #fffdfc;
  background:
    radial-gradient(circle at 82% 20%, rgba(201, 143, 159, 0.18), transparent 22rem),
    var(--jf-burgundy);
}

.jf-section-heading {
  margin-bottom: clamp(38px, 5vw, 68px);
}

.jf-section-heading h2 {
  font-size: clamp(2.7rem, 5.7vw, 6rem);
}

.jf-about-story__media {
  min-height: clamp(520px, 66vw, 660px);
  border-radius: var(--jf-radius-lg);
}

.jf-info-card,
.jf-service-card,
.jf-contact-card {
  border: 1px solid rgba(99, 49, 66, 0.08);
  background: rgba(255, 253, 252, 0.96);
  box-shadow: var(--jf-shadow);
}

.jf-info-card {
  min-height: 260px;
}

.jf-service-card {
  min-height: 530px;
  grid-template-rows: 240px 1fr;
}

.jf-service-card__media {
  background: var(--jf-sand);
}

.jf-service-card__category,
.jf-info-card__number {
  color: var(--jf-rose-deep);
}

.jf-service-card__cta {
  color: var(--jf-burgundy);
}

.jf-contact-card--wide {
  min-height: 300px;
  border: 0;
  color: #fffdfc;
  background: var(--jf-burgundy);
}

.jf-contact-card--wide .jf-btn {
  border-color: #fffdfc;
  color: var(--jf-burgundy) !important;
  background: #fffdfc;
}

.jf-contact-card--wide .jf-btn:hover {
  border-color: var(--jf-rose-soft);
  background: var(--jf-rose-soft);
}

.jf-legal-wrap {
  width: min(900px, 100%);
}

.jf-legal-copy section {
  padding: 36px 0;
  border-color: rgba(99, 49, 66, 0.14);
}

.jf-update-note,
.jf-article__note {
  background: var(--jf-sand);
}

.jf-article-hero {
  padding: clamp(56px, 7vw, 96px) clamp(24px, 6vw, 90px);
  background:
    linear-gradient(125deg, rgba(234, 221, 225, 0.96), rgba(247, 241, 236, 0.92)),
    var(--jf-sand);
}

.jf-article-hero h1 {
  font-size: clamp(3.2rem, 6.8vw, 7rem);
}

.jf-article {
  padding-top: clamp(58px, 7vw, 98px);
  padding-bottom: clamp(66px, 8vw, 112px);
}

.jf-article__image {
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* CTA Atendimento: horizontal, compacto e dimensionado pelo conteúdo. */
.jf-cta-section {
  min-height: 0;
  margin-top: 12px;
  padding: clamp(38px, 4vw, 58px) clamp(28px, 4.8vw, 72px);
}

.jf-cta-section .jf-section-heading {
  grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1.7fr);
  gap: clamp(24px, 3.2vw, 50px);
  align-items: center;
  margin: 0;
}

.jf-cta-section .jf-section-heading > div {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(230px, 0.85fr) auto;
  gap: clamp(22px, 3vw, 46px);
  align-items: center;
}

.jf-cta-section .jf-section-heading h2 {
  margin: 0;
  font-size: clamp(2.15rem, 3.3vw, 3.65rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.jf-cta-section .jf-section-heading p {
  margin: 0;
  color: rgba(255, 253, 252, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* Contraste uniforme no CTA rosé/vinho de Atendimento. */
.jf-cta-section,
.jf-cta-section .jf-eyebrow,
.jf-cta-section .jf-section-heading h2,
.jf-cta-section .jf-section-heading p {
  color: #fffdfc !important;
}

.jf-cta-section .jf-cta-actions {
  margin: 0;
}

.jf-cta-section .jf-btn {
  min-width: max-content;
  border-color: #fffdfc;
  color: var(--jf-burgundy) !important;
  background: #fffdfc;
  box-shadow: none;
}

.jf-cta-section .jf-btn:hover {
  border-color: var(--jf-rose-soft);
  color: var(--jf-burgundy) !important;
  background: var(--jf-rose-soft);
}

.jf-site-footer {
  margin-top: 12px;
  color: #fffdfc;
  background:
    radial-gradient(circle at 83% 16%, rgba(201, 143, 159, 0.18), transparent 24rem),
    var(--jf-burgundy);
}

.jf-footer-grid {
  grid-template-columns: minmax(250px, 1.2fr) repeat(2, minmax(150px, 0.65fr)) minmax(270px, 1fr);
}

.jf-footer-brand p,
.jf-footer-bottom {
  color: rgba(255, 253, 252, 0.64);
}

.jf-footer-title {
  color: rgba(255, 253, 252, 0.54);
}

.jf-footer-links {
  color: rgba(255, 253, 252, 0.94);
}

.jf-footer-links a:hover {
  color: #fffdfc;
}

.jf-footer-social {
  margin-top: 26px;
}

.jf-footer-social__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jf-footer-social__links a {
  padding: 7px 10px;
  border: 1px solid rgba(255, 253, 252, 0.24);
  border-radius: 999px;
  color: rgba(255, 253, 252, 0.82);
  font-size: 0.78rem;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.jf-footer-social__links a:hover {
  color: var(--jf-burgundy);
  background: #fffdfc;
  border-color: #fffdfc;
}

.jf-404 {
  min-height: min(760px, calc(100svh - 110px));
  width: 100%;
  margin: 0;
  border: 12px solid var(--jf-cream);
  border-radius: calc(var(--jf-radius-lg) + 12px);
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 143, 159, 0.34), transparent 34%),
    linear-gradient(135deg, var(--jf-sand), var(--jf-rose-soft));
}

.jf-404__code {
  color: var(--jf-rose-deep);
}

[data-reveal] {
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 760ms cubic-bezier(.2,.7,.2,1);
}

@media (max-width: 1220px) {
  .jf-cta-section .jf-section-heading > div {
    grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.85fr);
  }

  .jf-cta-section .jf-cta-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1100px) {
  .jf-nav-services { display: none; }
  .jf-service-submenu { display: none; }
  .jf-hero { min-height: 620px; }
  .jf-cta-section .jf-section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 767.98px) {
  body.jf-page {
    background: var(--jf-cream);
  }

  .jf-site-header,
  .jf-site-header.is-scrolled {
    padding: 9px 12px;
  }

  .jf-header-inner {
    min-height: 56px;
  }

  .jf-brand {
    font-size: 1.02rem;
  }

  .jf-brand img {
    width: 42px;
    height: 30px;
  }

  .jf-header-actions {
    gap: 6px;
  }

  .jf-search-trigger,
  .jf-menu-trigger {
    min-height: 42px;
  }

  .jf-menu-trigger {
    padding: 0 13px;
  }

  .jf-mobile-panel {
    padding: max(18px, env(safe-area-inset-top)) 18px max(22px, env(safe-area-inset-bottom));
  }

  .jf-mobile-nav > a {
    padding: 7px 0;
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .jf-page-shell {
    width: calc(100% - 12px);
    margin-top: 6px;
  }

  .jf-hero,
  .jf-hero--legal,
  .jf-hero--contact {
    min-height: auto;
    border-radius: 24px;
  }

  .jf-hero__content {
    padding: 40px 20px 34px;
  }

  .jf-hero h1,
  .jf-hero--legal h1,
  .jf-hero--contact h1 {
    font-size: clamp(3rem, 15.2vw, 5rem);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .jf-hero__media {
    min-height: 410px;
  }

  .jf-section {
    padding: 66px 18px;
  }

  .jf-section-heading h2 {
    font-size: clamp(2.6rem, 13.2vw, 4.55rem);
  }

  .jf-about-story__media {
    min-height: 430px;
  }

  .jf-info-card {
    min-height: 220px;
  }

  .jf-service-category {
    padding: 66px 18px;
  }

  .jf-service-card {
    min-height: 0;
    grid-template-rows: 220px auto;
  }

  .jf-service-card__body {
    min-height: 280px;
  }

  .jf-contact-card,
  .jf-contact-card--wide {
    min-height: 230px;
  }

  .jf-article-hero {
    padding: 50px 20px;
  }

  .jf-article-hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.75rem);
    overflow-wrap: anywhere;
  }

  .jf-article {
    padding-top: 54px;
    padding-bottom: 68px;
  }

  .jf-cta-section {
    margin-top: 6px;
    padding: 34px 22px;
  }

  .jf-cta-section .jf-section-heading {
    gap: 14px;
  }

  .jf-cta-section .jf-section-heading > div {
    display: block;
  }

  .jf-cta-section .jf-section-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }

  .jf-cta-section .jf-section-heading p {
    margin-bottom: 20px;
    font-size: 0.96rem;
  }

  .jf-cta-section .jf-btn {
    min-width: 0;
    width: 100%;
  }

  .jf-site-footer {
    margin-top: 6px;
    padding: 42px 22px;
  }

  .jf-footer-grid {
    gap: 30px;
  }

  .jf-footer-bottom {
    margin-top: 34px;
  }

  .jf-404 {
    min-height: calc(100svh - 88px);
    margin: 0;
    border-width: 6px;
    padding: 24px 18px;
    border-radius: 30px;
  }

  .jf-404 h1 {
    margin-top: 38px;
  }
}
