:root {
  --fr-ink: #141421;
  --fr-ink-2: #303244;
  --fr-muted: #747584;
  --fr-bg: #fbf6ea;
  --fr-paper: #fffdf8;
  --fr-ivory: #fff1d9;
  --fr-wine: #8e2748;
  --fr-plum: #2b1634;
  --fr-gold: #c78028;
  --fr-gold-soft: #ffd989;
  --fr-blue: #eaf1ff;
  --fr-line: rgba(20, 20, 33, 0.13);
  --fr-line-strong: rgba(20, 20, 33, 0.24);
  --fr-shadow: 0 32px 90px rgba(43, 22, 52, 0.18);
  --fr-header: 78px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(115deg, rgba(255, 231, 186, 0.46) 0 18%, transparent 18% 100%),
    linear-gradient(245deg, rgba(142, 39, 72, 0.08) 0 24%, transparent 24% 100%),
    var(--fr-bg);
  color: var(--fr-ink);
  font-size: 16px;
  line-height: 1.55;
}

body.fr-nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

code {
  border: 1px solid var(--fr-line);
  border-radius: 4px;
  background: #fff5e4;
  color: var(--fr-plum);
  padding: 0.1em 0.35em;
}

.fr-icon,
.iconify {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  vertical-align: -0.2em;
}

.fr-icon {
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

.fr-icon svg {
  width: 20px;
  height: 20px;
}

.fr-skip {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 120;
  transform: translateY(-150%);
  border: 1px solid var(--fr-wine);
  border-radius: 6px;
  background: var(--fr-paper);
  color: var(--fr-ink);
  padding: 10px 14px;
  transition: transform 160ms ease;
}

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

.fr-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 110;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fr-plum), var(--fr-wine), var(--fr-gold));
}

.fr-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--fr-header);
  padding: 12px clamp(16px, 4vw, 56px);
  color: var(--fr-ink);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.fr-header.is-scrolled,
.fr-header.fr-policy-header {
  border-bottom: 1px solid var(--fr-line);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 42px rgba(43, 22, 52, 0.12);
  backdrop-filter: blur(18px);
}

.fr-brand,
.fr-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.fr-brand img,
.fr-footer-brand img {
  flex: 0 0 auto;
}

.fr-brand span {
  display: grid;
  line-height: 1.05;
}

.fr-brand strong,
.fr-footer-brand span {
  font-size: 0.96rem;
  font-weight: 950;
}

.fr-brand small {
  margin-top: 3px;
  color: var(--fr-muted);
  font-size: 0.78rem;
}

.fr-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fr-nav a {
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--fr-ink-2);
  font-size: 0.9rem;
  font-weight: 850;
  padding: 10px 12px;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.fr-nav a:hover,
.fr-nav a:focus-visible {
  border-color: var(--fr-line);
  background: rgba(142, 39, 72, 0.1);
  color: var(--fr-plum);
  outline: none;
}

.fr-nav-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--fr-line-strong);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--fr-ink);
}

.fr-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-top: var(--fr-header);
  background: #fff0d7;
  isolation: isolate;
}

.fr-hero::before,
.fr-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.fr-hero::before {
  inset: 0 auto 0 0;
  width: min(760px, 58vw);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 224, 0.84)),
    linear-gradient(115deg, rgba(142, 39, 72, 0.14) 0 24%, transparent 24% 100%);
  clip-path: polygon(0 0, 88% 0, 100% 34%, 76% 100%, 0 100%);
}

.fr-hero::after {
  right: 6vw;
  bottom: 9svh;
  width: min(430px, 34vw);
  height: min(210px, 18vw);
  border: 1px solid rgba(255, 253, 248, 0.72);
  background:
    linear-gradient(115deg, rgba(255, 253, 248, 0.5), rgba(255, 217, 137, 0.18)),
    rgba(43, 22, 52, 0.16);
  clip-path: polygon(10% 0, 100% 0, 88% 100%, 0 100%);
  filter: blur(0.1px);
  animation: fr-panel-float 9s ease-in-out infinite;
}

.fr-hero-media,
.fr-hero-media::after {
  position: absolute;
  inset: 0;
}

.fr-hero-media {
  z-index: 0;
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 47% 100%, 40% 56%);
}

.fr-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.fr-hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 246, 234, 0.9) 0%, rgba(255, 246, 234, 0.62) 34%, rgba(255, 246, 234, 0.06) 70%, rgba(255, 246, 234, 0) 100%),
    linear-gradient(180deg, rgba(255, 246, 234, 0.06), rgba(255, 246, 234, 0.38));
}

.fr-hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: calc(100svh - var(--fr-header));
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 116px) 0 42px;
}

.fr-hero-copy {
  width: min(790px, 100%);
}

.fr-kicker {
  margin: 0 0 13px;
  color: var(--fr-gold);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 10ch;
  font-size: 6.35rem;
  font-weight: 950;
  letter-spacing: 0;
}

h2 {
  font-size: 3.35rem;
  font-weight: 930;
}

h3 {
  font-size: 1.13rem;
  font-weight: 900;
}

.fr-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--fr-ink-2);
  font-size: 1.24rem;
}

.fr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.fr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.fr-button:hover,
.fr-button:focus-visible,
.fr-policy-card:hover,
.fr-policy-card:focus-visible,
.fr-footer a:hover,
.fr-footer a:focus-visible,
.fr-footer button:hover,
.fr-footer button:focus-visible {
  transform: translateY(-4px);
  outline: none;
}

.fr-button-primary {
  background: linear-gradient(135deg, var(--fr-plum), var(--fr-wine) 58%, #a84b38);
  color: #ffffff;
  box-shadow: 0 20px 42px rgba(142, 39, 72, 0.32);
}

.fr-button-secondary {
  border: 1px solid rgba(23, 33, 26, 0.22);
  background: rgba(255, 253, 248, 0.76);
  color: var(--fr-ink);
  backdrop-filter: blur(10px);
}

.fr-credential-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(950px, 100%);
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.68);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 241, 217, 0.78)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--fr-shadow);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 94% 100%, 0 100%);
  backdrop-filter: blur(14px);
}

.fr-credential-row article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 132px;
  border-right: 1px solid var(--fr-line);
  padding: 18px;
}

.fr-credential-row article:last-child {
  border-right: 0;
}

.fr-credential-row .fr-icon,
.fr-credential-row .iconify {
  color: var(--fr-gold);
}

.fr-credential-row small {
  color: var(--fr-muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fr-credential-row strong {
  color: var(--fr-ink);
  font-size: 1rem;
  line-height: 1.16;
}

.fr-hero-note {
  max-width: 760px;
  margin: 18px 0 0;
  border-left: 5px solid var(--fr-gold);
  color: var(--fr-ink-2);
  padding-left: 14px;
  font-size: 0.93rem;
}

.fr-ribbon {
  position: relative;
  z-index: 8;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  border-block: 1px solid var(--fr-line);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(14px);
}

.fr-ribbon-track {
  display: flex;
  width: max-content;
  animation: fr-marquee 32s linear infinite;
}

.fr-ribbon-track span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  color: var(--fr-ink-2);
  font-size: 0.83rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.fr-ribbon-track span::after {
  content: "";
  width: 1px;
  height: 18px;
  margin: 0 22px;
  background: rgba(199, 128, 40, 0.72);
}

@keyframes fr-panel-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) skewX(-4deg);
  }

  50% {
    transform: translate3d(-16px, 9px, 0) skewX(-4deg);
  }
}

@keyframes fr-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.fr-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.fr-section,
.fr-trust {
  scroll-margin-top: calc(var(--fr-header) + 18px);
}

.fr-section {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 10vw, 132px) 0;
}

.fr-section-head {
  max-width: 800px;
  margin-bottom: 44px;
}

.fr-section-head p:not(.fr-kicker),
.fr-facility-copy > p {
  color: var(--fr-muted);
  font-size: 1.05rem;
}

.fr-trust {
  position: relative;
  z-index: 5;
  margin-top: 18px;
  padding: 32px 0 44px;
  background: transparent;
}

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

.fr-trust-card,
.fr-license-main,
.fr-fact,
.fr-entity,
.fr-photo-card,
.fr-mini,
.fr-editor-card,
.fr-flow-card,
.fr-iowa-panel,
.fr-responsible-main,
.fr-warning,
.fr-policy-card,
.fr-question,
.fr-gallery-panel {
  border: 1px solid var(--fr-line);
  border-radius: 8px;
  background: var(--fr-paper);
  box-shadow: 0 22px 68px rgba(43, 22, 52, 0.12);
}

.fr-trust-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 168px;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 217, 137, 0.22), transparent 45%),
    var(--fr-paper);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 92% 100%, 0 100%);
}

.fr-trust-card::after,
.fr-fact::after,
.fr-entity::after,
.fr-flow-card::after,
.fr-policy-card::after,
.fr-question::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px auto;
  width: 58px;
  height: 10px;
  background: linear-gradient(90deg, var(--fr-gold), transparent);
  opacity: 0.55;
}

.fr-trust-card .fr-icon,
.fr-fact .fr-icon,
.fr-entity .fr-icon,
.fr-entity .iconify,
.fr-mini .fr-icon,
.fr-editor-card .fr-icon,
.fr-flow-card .fr-icon,
.fr-responsible-main .fr-icon,
.fr-policy-card .fr-icon {
  color: var(--fr-wine);
}

.fr-trust-card small,
.fr-fact small,
.fr-entity small,
.fr-editor-card small,
.fr-license-main small {
  color: var(--fr-muted);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fr-trust-card strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.fr-license {
  background:
    linear-gradient(116deg, rgba(142, 39, 72, 0.06) 0 22%, transparent 22% 100%),
    linear-gradient(180deg, #fff8ed 0%, #ffffff 100%);
}

.fr-license-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr);
  gap: 20px;
}

.fr-license-main {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 350px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(142, 39, 72, 0.14), transparent 48%),
    linear-gradient(315deg, rgba(255, 217, 137, 0.26), transparent 45%),
    var(--fr-paper);
  clip-path: polygon(0 0, calc(100% - 44px) 0, 100% 44px, 88% 100%, 0 100%);
}

.fr-license-main > strong {
  color: var(--fr-plum);
  font-size: 2.35rem;
  line-height: 1.02;
}

.fr-license-main p {
  margin: 0;
  color: var(--fr-muted);
}

.fr-license-main a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--fr-plum);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fr-license-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fr-fact {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 188px;
  overflow: hidden;
  padding: 24px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}

.fr-fact strong {
  line-height: 1.18;
}

.fr-fact p {
  margin: 0;
  color: var(--fr-muted);
}

.fr-note {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  border: 1px solid rgba(199, 128, 40, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(255, 217, 137, 0.36) 0 34%, transparent 34% 100%),
    #fff9eb;
  color: var(--fr-ink-2);
  padding: 16px;
}

.fr-note .fr-icon {
  color: var(--fr-gold);
}

.fr-note p {
  margin: 0;
}

.fr-operator {
  background:
    linear-gradient(64deg, #ffffff 0 64%, #fff0d7 64% 100%);
}

.fr-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.fr-entity-stack {
  display: grid;
  gap: 12px;
}

.fr-entity {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px 14px;
  align-items: start;
  overflow: hidden;
  padding: 22px;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

.fr-entity:nth-child(even) {
  transform: translateX(-18px);
  clip-path: polygon(4% 0, 100% 0, 100% 100%, 0 100%);
}

.fr-entity small,
.fr-entity strong {
  grid-column: 2;
}

.fr-entity strong {
  font-size: 1.08rem;
}

.fr-facility {
  background:
    linear-gradient(90deg, rgba(142, 39, 72, 0.08), transparent 52%),
    linear-gradient(115deg, transparent 0 76%, rgba(255, 217, 137, 0.32) 76% 100%),
    #fff9ef;
}

.fr-facility-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.fr-photo-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  margin: 0;
  box-shadow: var(--fr-shadow);
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.fr-photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fr-photo-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  width: min(340px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.84);
  padding: 16px;
  backdrop-filter: blur(12px);
}

.fr-photo-card figcaption .fr-icon {
  color: var(--fr-wine);
}

.fr-photo-card figcaption small {
  color: var(--fr-muted);
  font-weight: 800;
}

.fr-facility-copy > p {
  margin-top: 18px;
}

.fr-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.fr-mini {
  min-height: 168px;
  padding: 24px;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
}

.fr-mini strong {
  display: block;
  margin-top: 18px;
}

.fr-mini p {
  margin: 6px 0 0;
  color: var(--fr-muted);
}

.fr-visuals {
  background:
    linear-gradient(130deg, rgba(142, 39, 72, 0.07) 0 20%, transparent 20% 100%),
    var(--fr-paper);
}

.fr-gallery {
  background:
    linear-gradient(70deg, #ffffff 0 56%, #fff1d9 56% 100%);
}

.fr-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
  gap: 18px;
}

.fr-gallery-panel {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  margin: 0;
  clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 42px, 92% 100%, 0 100%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.fr-gallery-wide {
  grid-row: span 2;
  min-height: 654px;
}

.fr-gallery-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.fr-gallery-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20, 20, 33, 0.62));
}

.fr-gallery-panel:hover img {
  transform: scale(1.05);
}

.fr-gallery-panel figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  color: var(--fr-ink);
  padding: 14px;
  backdrop-filter: blur(14px);
}

.fr-gallery-panel figcaption .fr-icon,
.fr-gallery-panel figcaption .iconify {
  color: var(--fr-wine);
}

.fr-gallery-panel figcaption span:last-child {
  display: grid;
  min-width: 0;
}

.fr-gallery-panel figcaption strong {
  line-height: 1.12;
}

.fr-gallery-panel figcaption small {
  color: var(--fr-muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.fr-visual-grid {
  display: grid;
  grid-template-columns: 1.32fr 0.68fr;
  grid-template-rows: repeat(2, 330px);
  gap: 18px;
}

.fr-visual-large {
  position: relative;
  grid-row: span 2;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--fr-ivory);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 90% 100%, 0 100%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.fr-visual-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fr-visual-large figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--fr-ink);
  padding: 14px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.fr-editor-card {
  position: relative;
  display: grid;
  align-content: end;
  gap: 10px;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(142, 39, 72, 0.12), transparent 46%),
    linear-gradient(315deg, rgba(255, 217, 137, 0.2), transparent 44%),
    var(--fr-paper);
  clip-path: polygon(0 0, calc(100% - 38px) 0, 100% 38px, 90% 100%, 0 100%);
}

.fr-editor-card p {
  margin: 0;
  color: var(--fr-muted);
}

.fr-compliance {
  background:
    linear-gradient(112deg, #fff8ed 0 38%, #ffffff 38% 100%);
}

.fr-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fr-flow-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 28px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 84% 100%, 0 100%);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.fr-flow-card:nth-child(even) {
  transform: translateY(28px);
}

.fr-flow-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(43, 22, 52, 0.18);
}

.fr-flow-card > span {
  display: block;
  color: rgba(142, 39, 72, 0.16);
  font-size: 3.5rem;
  font-weight: 950;
  line-height: 1;
}

.fr-flow-card .fr-icon {
  margin: 22px 0 16px;
}

.fr-flow-card p {
  margin: 12px 0 0;
  color: var(--fr-muted);
}

.fr-iowa {
  background:
    linear-gradient(135deg, rgba(234, 241, 255, 0.9), transparent 42%),
    linear-gradient(245deg, rgba(255, 217, 137, 0.2), transparent 34%),
    var(--fr-bg);
}

.fr-iowa-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.fr-iowa-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  padding: 0;
  background: var(--fr-line);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
}

.fr-iowa-panel div {
  background: var(--fr-paper);
  padding: 22px;
}

.fr-iowa-panel small {
  display: block;
  color: var(--fr-muted);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.fr-iowa-panel strong {
  display: block;
  margin-top: 7px;
}

.fr-responsible {
  background:
    linear-gradient(68deg, #ffffff 0 58%, #fff6e8 58% 100%);
}

.fr-responsible-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
}

.fr-responsible-main {
  min-height: 300px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(199, 128, 40, 0.16), transparent 46%),
    var(--fr-paper);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.fr-responsible-main h2 {
  margin-top: 18px;
}

.fr-responsible-main p {
  color: var(--fr-muted);
}

.fr-responsible-main a {
  display: inline-flex;
  margin-top: 6px;
  color: var(--fr-plum);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fr-warning-stack {
  display: grid;
  gap: 16px;
}

.fr-warning {
  padding: 24px;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

.fr-warning:nth-child(even) {
  transform: translateX(-20px);
}

.fr-warning span {
  display: block;
  margin-top: 6px;
  color: var(--fr-muted);
}

.fr-policies {
  background:
    linear-gradient(120deg, #fff8ed 0 46%, #ffffff 46% 100%);
}

.fr-policy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.fr-policy-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fr-policy-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 196px;
  overflow: hidden;
  padding: 26px;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.fr-policy-card:hover,
.fr-policy-card:focus-visible {
  border-color: rgba(142, 39, 72, 0.34);
  background: #fff7e9;
}

.fr-policy-card small {
  color: var(--fr-muted);
}

.fr-faq {
  background:
    linear-gradient(116deg, rgba(142, 39, 72, 0.06) 0 24%, transparent 24% 100%),
    var(--fr-paper);
}

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

.fr-question {
  position: relative;
  overflow: hidden;
  padding: 26px;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

.fr-question p {
  margin: 10px 0 0;
  color: var(--fr-muted);
}

.fr-footer {
  border-top: 1px solid var(--fr-line);
  background:
    linear-gradient(120deg, #141421 0 55%, #2b1634 55% 100%);
  color: #ffffff;
  padding: 38px clamp(16px, 4vw, 56px);
}

.fr-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(190px, 0.6fr) minmax(220px, 0.7fr);
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.fr-footer p {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.fr-footer nav,
.fr-footer-small {
  display: grid;
  gap: 10px;
  align-content: start;
}

.fr-footer a,
.fr-footer button {
  width: fit-content;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
  text-align: left;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.fr-footer a:hover,
.fr-footer a:focus-visible,
.fr-footer button:hover,
.fr-footer button:focus-visible {
  color: #ffffff;
}

.fr-footer-small strong {
  color: #ffffff;
  font-size: 0.9rem;
}

.fr-policy-main {
  min-height: 70vh;
  padding-top: var(--fr-header);
  background:
    linear-gradient(135deg, rgba(142, 39, 72, 0.09), transparent 35rem),
    var(--fr-bg);
}

.fr-policy-hero {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 28px;
}

.fr-policy-hero h1 {
  max-width: none;
  font-size: 4.1rem;
}

.fr-policy-hero p:not(.fr-kicker) {
  margin: 16px 0 0;
  color: var(--fr-muted);
}

.fr-policy-content {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto 76px;
  border: 1px solid var(--fr-line);
  border-radius: 8px;
  background: var(--fr-paper);
  padding: 34px;
  box-shadow: var(--fr-shadow);
}

.fr-policy-content h2 {
  margin-top: 30px;
  font-size: 1.55rem;
}

.fr-policy-content h2:first-child {
  margin-top: 0;
}

.fr-policy-content p,
.fr-policy-content li {
  color: var(--fr-muted);
}

.fr-policy-content a {
  color: var(--fr-plum);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fr-cookie {
  position: fixed;
  inset: auto 16px 16px auto;
  z-index: 130;
  display: none;
  width: min(440px, calc(100% - 32px));
  pointer-events: none;
}

.fr-cookie.is-visible {
  display: block;
}

.fr-cookie-panel {
  border: 1px solid var(--fr-line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(43, 22, 52, 0.24);
  padding: 16px;
  pointer-events: auto;
  backdrop-filter: blur(18px);
}

.fr-cookie-top {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.fr-cookie-symbol {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(142, 39, 72, 0.24);
  border-radius: 8px;
  background: rgba(142, 39, 72, 0.1);
  color: var(--fr-wine);
}

.fr-cookie h2 {
  font-size: 1.45rem;
}

.fr-cookie p {
  margin: 7px 0 0;
  color: var(--fr-muted);
  font-size: 0.88rem;
}

.fr-cookie-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--fr-plum);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fr-cookie-options {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.fr-cookie:not(.is-expanded) .fr-cookie-options,
.fr-cookie:not(.is-expanded) [data-fr-cookie-save] {
  display: none;
}

.fr-cookie.is-expanded [data-fr-cookie-customize] {
  display: none;
}

.fr-cookie-option {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  border: 1px solid var(--fr-line);
  border-radius: 8px;
  background: #f7f9f4;
  padding: 10px;
}

.fr-cookie-option input {
  margin-top: 3px;
  accent-color: var(--fr-wine);
}

.fr-cookie-option strong {
  display: block;
  font-size: 0.88rem;
}

.fr-cookie-option small {
  display: block;
  color: var(--fr-muted);
  font-size: 0.78rem;
}

.fr-cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.fr-cookie-actions button {
  min-height: 40px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  padding: 9px 12px;
}

.fr-cookie-actions [data-fr-cookie-reject],
.fr-cookie-actions [data-fr-cookie-customize],
.fr-cookie-actions [data-fr-cookie-save] {
  border: 1px solid var(--fr-line-strong);
  background: var(--fr-paper);
  color: var(--fr-ink);
}

.fr-cookie-actions [data-fr-cookie-accept] {
  grid-column: 1 / -1;
  border: 1px solid var(--fr-wine);
  background: var(--fr-wine);
  color: #ffffff;
}

.js .fr-reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .fr-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .fr-trust-grid,
  .fr-license-layout,
  .fr-split,
  .fr-facility-grid,
  .fr-iowa-grid,
  .fr-responsible-grid,
  .fr-policy-grid {
    grid-template-columns: 1fr;
  }

  .fr-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fr-visual-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .fr-gallery-grid {
    grid-template-columns: 1fr;
  }

  .fr-gallery-wide,
  .fr-gallery-panel {
    min-height: 380px;
  }

  .fr-visual-large,
  .fr-editor-card {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  :root {
    --fr-header: 68px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2,
  .fr-policy-hero h1 {
    font-size: 2.05rem;
  }

  .fr-header {
    padding-inline: 14px;
  }

  .fr-brand img {
    width: 44px;
    height: 44px;
  }

  .fr-brand strong {
    font-size: 0.86rem;
  }

  .fr-brand small {
    font-size: 0.7rem;
  }

  .fr-nav-button {
    display: grid;
  }

  .fr-nav {
    position: fixed;
    inset: var(--fr-header) 10px auto;
    display: grid;
    gap: 8px;
    transform: translateY(-12px);
    border: 1px solid var(--fr-line);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.96);
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--fr-shadow);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .fr-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .fr-nav a {
    padding: 13px 12px;
  }

  .fr-hero {
    min-height: 94svh;
  }

  .fr-hero::before {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 74%, 76% 100%, 0 100%);
  }

  .fr-hero::after {
    display: none;
  }

  .fr-hero-media {
    clip-path: none;
  }

  .fr-hero-media img {
    object-position: 65% center;
  }

  .fr-hero-media::after {
    background:
      linear-gradient(180deg, rgba(255, 246, 234, 0.96) 0%, rgba(255, 246, 234, 0.82) 48%, rgba(255, 246, 234, 0.52) 100%);
  }

  .fr-hero-shell {
    min-height: calc(94svh - var(--fr-header));
    padding: 34px 0 22px;
  }

  .fr-lede {
    font-size: 1rem;
  }

  .fr-actions {
    margin-top: 22px;
  }

  .fr-button {
    width: 100%;
  }

  .fr-credential-row,
  .fr-license-facts,
  .fr-trust-grid,
  .fr-mini-grid,
  .fr-flow,
  .fr-policy-cards,
  .fr-faq-grid,
  .fr-footer-grid {
    grid-template-columns: 1fr;
  }

  .fr-credential-row article {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--fr-line);
  }

  .fr-credential-row article:last-child {
    border-bottom: 0;
  }

  .fr-ribbon {
    display: none;
  }

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

  .fr-photo-card {
    min-height: 430px;
  }

  .fr-gallery-wide,
  .fr-gallery-panel {
    min-height: 330px;
  }

  .fr-flow-card {
    min-height: auto;
  }

  .fr-flow-card:nth-child(even),
  .fr-entity:nth-child(even),
  .fr-warning:nth-child(even) {
    transform: none;
  }

  .fr-photo-card,
  .fr-gallery-panel,
  .fr-visual-large,
  .fr-license-main {
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  }

  .fr-policy-content {
    padding: 22px;
  }

  .fr-cookie {
    inset: auto 10px 10px;
    width: calc(100% - 20px);
  }

  .fr-cookie-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.65rem;
  }

  h2,
  .fr-policy-hero h1 {
    font-size: 1.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
