@font-face {
  font-family: "Figtree";
  src: url("fonts/Figtree[wght].ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("fonts/Figtree-Italic[wght].ttf") format("truetype");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Libre Baskerville";
  src: url("fonts/LibreBaskerville-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Libre Baskerville";
  src: url("fonts/LibreBaskerville-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --teal-900: #00282c;
  --teal-800: #003a40;
  --teal-700: #0d4a50;
  --teal-600: #1f5f66;
  --teal-300: #8fb3b6;
  --teal-100: #d6e4e5;
  --teal-50: #edf3f3;
  --ink-900: #101820;
  --ink-700: #2b343c;
  --ink-500: #51606a;
  --clay-600: #a8512f;
  --clay-500: #c66e4e;
  --clay-100: #f8ece6;
  --gold-600: #b98c20;
  --gold-500: #ddad33;
  --white: #fff;
  --neutral-100: #eef0f2;
  --neutral-200: #e3e6e9;
  --neutral-300: #d2d7dc;
  --text: #28333a;
  --muted: #51606a;
  --subtle: #79828a;
  --on-dark: #eaf2f1;
  --on-dark-muted: #9dbcbc;
  --line: #e3e6e9;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --shadow-sm: 0 2px 6px rgba(16, 24, 32, 0.08);
  --shadow-md: 0 10px 28px rgba(16, 24, 32, 0.11);
  --shadow-lg: 0 24px 60px rgba(16, 24, 32, 0.16);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(198, 110, 78, 0.5);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay-600);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.on-dark {
  color: var(--on-dark-muted);
}

.serif {
  font-family: var(--serif);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 720;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--teal-800);
  color: var(--white);
}

.button-clay {
  background: var(--clay-500);
  color: var(--white);
}

.button-outline {
  border: 1px solid var(--neutral-300);
  background: transparent;
  color: var(--ink-900);
}

.button-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 5px solid var(--clay-500);
  background: rgba(0, 58, 64, 0.97);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.16);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 26px;
}

.wordmark {
  flex: none;
  color: var(--white);
  font-size: 1.35rem;
  letter-spacing: -0.045em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark strong {
  font-weight: 760;
}

.wordmark-dot {
  color: var(--clay-500);
  font-weight: 760;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.925rem;
  font-weight: 540;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--clay-500);
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown[data-open]::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  content: "";
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.925rem;
  font-weight: 540;
  letter-spacing: -0.01em;
}

.nav-dropdown-toggle:hover,
.nav-dropdown[data-open] .nav-dropdown-toggle {
  border-bottom-color: var(--clay-500);
  color: var(--white);
}

.nav-caret {
  font-size: 0.7rem;
  line-height: 1;
  transition: transform 160ms cubic-bezier(0.2, 0, 0, 1);
}

.nav-dropdown[data-open] .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  min-width: 232px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: var(--teal-900);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translate(-50%, -6px);
  transition: opacity 160ms cubic-bezier(0.2, 0, 0, 1), transform 160ms cubic-bezier(0.2, 0, 0, 1);
  visibility: hidden;
}

.nav-dropdown[data-open] .nav-dropdown-menu {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

.site-nav .nav-dropdown-menu a {
  padding: 10px 12px;
  border-bottom: 0;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  white-space: nowrap;
}

.site-nav .nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.header-actions {
  display: flex;
  flex: none;
  align-items: center;
  gap: 10px;
}

.header-actions .button {
  min-height: 38px;
  padding-inline: 18px;
  font-size: 0.86rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
}

/* Hero */
.hero {
  padding-block: 104px 88px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
}

.hero h1 {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--ink-900);
  font-size: clamp(3.2rem, 6vw, 4.25rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.hero h1 em {
  color: var(--clay-500);
  font-family: var(--serif);
  font-weight: 400;
}

.hero-lede {
  max-width: 500px;
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.access-note {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--subtle);
  font-size: 0.86rem;
  line-height: 1.55;
}

.hero-art {
  position: relative;
  min-height: 460px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.72;
}

.hero-glow.clay {
  top: 3%;
  left: 0;
  width: 260px;
  height: 280px;
  background: radial-gradient(circle, #ebc9bc, transparent 70%);
}

.hero-glow.teal {
  right: 0;
  bottom: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--teal-100), transparent 70%);
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo.one {
  top: 0;
  left: 8%;
  z-index: 1;
  width: 200px;
  height: 240px;
  transform: rotate(-5deg);
}

.hero-photo.two {
  top: 150px;
  right: 0;
  z-index: 2;
  width: 190px;
  height: 230px;
  transform: rotate(4deg);
}

.hero-photo.three {
  bottom: 0;
  left: 27%;
  z-index: 3;
  width: 170px;
  height: 200px;
  transform: rotate(-2deg);
}

/* Statement */
.statement {
  position: relative;
  overflow: hidden;
  padding: 136px 24px;
  background: var(--ink-900);
  color: var(--white);
  text-align: center;
}

.statement::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(16, 24, 32, 0.58), rgba(16, 24, 32, 0.9)),
    url("assets/neighborhood.jpg") center/cover;
  content: "";
}

.statement-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.statement h2 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.statement p {
  margin: 0;
  color: var(--on-dark-muted);
  font-size: 1.1rem;
  line-height: 1.62;
}

/* Featured */
.featured-section {
  overflow: hidden;
  padding: 98px 0 88px;
  background: var(--ink-900);
  color: var(--white);
}

.featured-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  margin-bottom: 46px;
}

.featured-heading h2,
.section-heading h2,
.brand-heading h2,
.tutorial-heading h2,
.team-heading h2,
.news-page-heading h2 {
  margin: 0 0 8px;
  color: inherit;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 520;
  letter-spacing: -0.025em;
}

.featured-heading h2 em {
  color: var(--clay-500);
  font-family: var(--serif);
  font-weight: 400;
}

.featured-scroller {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 18px max(24px, calc((100vw - var(--container)) / 2)) 32px;
  scrollbar-width: none;
}

.featured-scroller::-webkit-scrollbar {
  display: none;
}

.featured-card {
  position: relative;
  flex: 0 0 260px;
  height: 330px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--neutral-100);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.48);
  color: var(--white);
  scroll-snap-align: none;
  text-decoration: none;
  transition: transform 200ms ease;
}

.featured-card:hover {
  transform: translateY(-7px) rotate(0deg) !important;
}

.featured-card img {
  width: 100%;
  height: 100%;
  background: var(--white);
  object-fit: contain;
}

.featured-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 48%, rgba(0, 0, 0, 0.85));
  content: "";
}

.featured-card-title {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  font-size: 1.03rem;
  font-weight: 650;
}

.scroll-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.15rem;
}

/* News teaser */
.news-teaser {
  padding: 64px 0 70px;
  background: var(--teal-50);
}

.teaser-heading,
.section-heading,
.brand-heading,
.tutorial-heading,
.team-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.teaser-heading h2 {
  margin: 0 0 7px;
  color: var(--ink-900);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.teaser-heading p,
.section-heading p,
.brand-heading p,
.tutorial-heading p,
.team-heading p {
  margin: 0;
  color: var(--muted);
}

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

.teaser-card {
  display: flex;
  min-height: 178px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--ink-900);
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.teaser-card.dark {
  border-color: transparent;
  background: var(--teal-800);
  color: var(--white);
}

.teaser-card .tag,
.news-card .tag {
  color: var(--clay-600);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.teaser-card.dark .tag {
  color: var(--teal-300);
}

.teaser-card strong {
  display: block;
  margin: 15px 0 8px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.teaser-card span:last-child {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.teaser-card.dark span:last-child {
  color: var(--on-dark-muted);
}

/* Template sections */
.template-section {
  padding: 92px 0;
  scroll-margin-top: 74px;
}

.template-section.dark {
  position: relative;
  overflow: hidden;
  background: var(--teal-800);
  color: var(--white);
}

.template-section.dark::before {
  position: absolute;
  top: -280px;
  right: -230px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: var(--clay-500);
  content: "";
  opacity: 0.08;
}

.template-section.dark .container {
  position: relative;
  z-index: 1;
}

.template-section.dark .section-heading p {
  color: var(--on-dark-muted);
}

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

.template-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--ink-900);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.template-card:not(.is-coming-soon):hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.template-card-image {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--neutral-100);
}

.template-card-image img {
  width: 100%;
  height: 100%;
  background: var(--white);
  object-fit: contain;
}

.template-card-body {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 18px;
}

.template-card-title {
  font-size: 0.98rem;
  font-weight: 680;
  line-height: 1.25;
}

.template-card-arrow {
  color: var(--clay-500);
  font-size: 1.2rem;
}

.template-card.is-coming-soon {
  cursor: default;
}

.coming-soon-label {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.78);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Brand Kit */
.brand-kit {
  padding: 90px 0;
  background: var(--neutral-100);
  scroll-margin-top: 74px;
}

.brand-heading-copy {
  max-width: 680px;
}

.brand-heading-copy .guide-link {
  display: inline-block;
  margin-top: 14px;
  border-bottom: 1px solid currentColor;
  color: var(--teal-700);
  font-size: 0.93rem;
  font-weight: 680;
  text-decoration: none;
}

.brand-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 52px;
}

.resource-card {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.resource-card.dark {
  background: var(--teal-800);
  color: var(--white);
}

.resource-card.light {
  border: 1px solid var(--line);
  border-top: 5px solid var(--clay-500);
  background: var(--white);
  color: var(--ink-900);
}

.resource-card small {
  color: var(--clay-600);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-card.dark small {
  color: var(--teal-300);
}

.resource-card h3 {
  margin: 18px 0 10px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.resource-card p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.resource-card.dark p {
  color: var(--on-dark-muted);
}

.resource-card strong {
  margin-top: auto;
  padding-top: 24px;
  color: var(--teal-700);
  font-size: 0.92rem;
}

.resource-card.dark strong {
  color: var(--white);
}

.brand-system-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 60px;
  align-items: stretch;
}

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

.color-swatch {
  text-align: center;
}

.color-dot {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0 auto 13px;
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.color-swatch strong {
  display: block;
  color: var(--ink-900);
  font-size: 0.86rem;
}

.color-swatch code {
  color: var(--subtle);
  font-size: 0.74rem;
}

.type-samples {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.type-sample {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--neutral-300);
}

.type-sample:last-child {
  border-bottom: 0;
}

.type-sample .letters {
  color: var(--ink-900);
  font-size: clamp(5rem, 10vw, 8rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.type-sample .label {
  margin-top: 16px;
  color: var(--subtle);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Tutorials */
.tutorials {
  padding: 72px 0 64px;
  scroll-margin-top: 74px;
}

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

.tutorial-folder {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.tutorial-folder h3 {
  margin: 0 0 18px;
  color: var(--ink-900);
  font-size: 1.05rem;
}

.tutorial-folder h3 a {
  text-decoration: none;
}

.tutorial-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tutorial-list a {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--text);
  font-size: 0.86rem;
  text-decoration: none;
}

.play-icon {
  flex: none;
  color: var(--teal-600);
  font-size: 0.72rem;
  transform: translateY(3px);
}

/* Marketing Team */
.marketing-team {
  padding: 64px 0 88px;
  scroll-margin-top: 74px;
}

.team-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.12fr 0.88fr;
  border-radius: var(--radius-lg);
  background: var(--teal-800);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  min-height: 475px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  color: var(--white);
}

.team-info h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.team-role {
  margin: 0 0 25px;
  color: var(--on-dark-muted);
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}

.team-contact a {
  color: var(--on-dark);
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.schedule-grid a {
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--teal-800);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.request-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--teal-600);
  color: var(--white);
  font-weight: 680;
  text-decoration: none;
}

/* Footer */
.site-footer {
  overflow: hidden;
  padding: 72px 0 30px;
  border-top: 7px solid var(--clay-500);
  background: var(--ink-900);
  color: var(--on-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  padding-bottom: 48px;
}

.footer-lede {
  max-width: 560px;
}

.footer-lede h2 {
  margin: 30px 0 14px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.12;
}

.footer-lede p {
  margin: 0 0 24px;
  color: var(--on-dark-muted);
}

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

.footer-links h3 {
  margin: 0 0 17px;
  color: var(--on-dark-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.footer-links a {
  color: var(--on-dark);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--on-dark-muted);
  font-size: 0.8rem;
}

/* News page */
.news-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 90px;
  background: var(--ink-900);
  color: var(--white);
}

.news-hero::before,
.news-hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.news-hero::before {
  top: -310px;
  right: -150px;
  width: 560px;
  height: 560px;
  background: var(--clay-500);
  opacity: 0.17;
}

.news-hero::after {
  bottom: -260px;
  left: -120px;
  width: 370px;
  height: 370px;
  background: var(--gold-500);
  opacity: 0.12;
}

.news-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 830px;
}

.news-hero h1 {
  margin: 15px 0 17px;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.news-hero p {
  max-width: 690px;
  margin: 0;
  color: #c9d7d8;
  font-size: 1.13rem;
}

.news-main {
  padding: 0;
}

.featured-news {
  display: grid;
  margin-top: 72px;
  min-height: 390px;
  overflow: hidden;
  grid-template-columns: 1.12fr 0.88fr;
  border-radius: var(--radius-lg);
  background: var(--teal-800);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.featured-news-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
}

.featured-news-copy h2 {
  margin: 15px 0 13px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
}

.featured-news-copy p {
  max-width: 600px;
  margin: 0 0 26px;
  color: var(--on-dark-muted);
}

.featured-news-art {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f7f4ed, #d9e6e6);
}

.featured-guide {
  width: 54%;
  aspect-ratio: 0.773;
  overflow: hidden;
  border: 8px solid var(--white);
  background: var(--white);
  box-shadow: 0 28px 58px rgba(16, 24, 32, 0.25);
  transform: rotate(3deg);
}

.featured-guide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.featured-cards {
  position: relative;
  width: 80%;
  max-width: 430px;
  aspect-ratio: 1.75;
}

.featured-cards a {
  position: absolute;
  inset: 0;
  display: block;
}

.featured-cards img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 28px 58px rgba(16, 24, 32, 0.28);
}

.featured-cards .fc-b {
  transform: rotate(-7deg) translate(-7%, -14%);
}

.featured-cards .fc-f {
  transform: rotate(4deg) translate(7%, 12%);
}

.news-page-heading {
  margin: 66px 0 26px;
  color: var(--ink-900);
}

.news-page-heading p {
  margin: 0;
  color: var(--muted);
}

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

.news-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 5px 18px rgba(16, 24, 32, 0.05);
  color: var(--text);
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.news-card h3 {
  margin: 18px 0 10px;
  color: var(--ink-900);
  font-size: 1.25rem;
  line-height: 1.28;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.news-card .read-more {
  margin-top: auto;
  padding-top: 24px;
  color: var(--teal-700);
  font-size: 0.88rem;
  font-weight: 760;
}

.share-tip {
  margin-top: 40px;
  padding: 88px 0;
  background: var(--teal-50);
}

.share-tip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-left: 30px;
  border-left: 7px solid var(--clay-500);
}

.share-tip h2 {
  margin: 0 0 7px;
  color: var(--ink-900);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.share-tip p {
  margin: 0;
  color: var(--muted);
}

.store-band {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background: var(--teal-800);
  color: var(--white);
}

.store-band::before {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--clay-500);
  opacity: 0.1;
  content: "";
}

.store-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.store-band-copy {
  max-width: 620px;
}

.store-band h2 {
  margin: 6px 0 12px;
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.store-band h2 .serif {
  color: var(--clay-500);
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
}

.store-band p {
  margin: 0;
  color: var(--on-dark-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.86rem;
  }

  .header-actions .button:first-child {
    display: none;
  }

  .hero .container {
    gap: 28px;
  }

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

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 73px 0 auto;
    display: none;
    max-height: calc(100vh - 73px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    padding: 22px 24px 30px;
    background: var(--teal-900);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1rem;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1rem;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 4px 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .nav-dropdown[data-open] .nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .site-nav .nav-dropdown-menu a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    font-size: 0.95rem;
  }

  .hero .container,
  .brand-system-grid,
  .team-card,
  .featured-news,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-block: 76px 64px;
  }

  .hero-art {
    width: min(500px, 100%);
    margin-inline: auto;
  }

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

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

  .team-photo {
    min-height: 380px;
  }

  .featured-news-art {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .hero-art {
    min-height: 390px;
  }

  .hero-photo.one {
    left: 2%;
    width: 175px;
    height: 215px;
  }

  .hero-photo.two {
    top: 120px;
    width: 160px;
    height: 205px;
  }

  .hero-photo.three {
    left: 29%;
    width: 145px;
    height: 175px;
  }

  .statement {
    padding-block: 100px;
  }

  .featured-heading,
  .teaser-heading,
  .section-heading,
  .brand-heading,
  .tutorial-heading,
  .team-heading,
  .share-tip-inner,
  .store-band-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .template-section {
    padding-block: 72px;
  }

  .template-grid,
  .teaser-grid,
  .tutorial-grid,
  .brand-resource-grid,
  .news-grid,
  .schedule-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .template-card-image {
    height: 235px;
  }

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

  .team-info,
  .featured-news-copy {
    padding: 32px 26px;
  }

  .featured-news-art {
    min-height: 360px;
  }

  .share-tip-inner {
    padding-left: 22px;
  }
}

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

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


/* ---------- business cards page ---------- */
.bc-hero {
  padding: 128px 0 88px;
  background: var(--teal-800);
  color: var(--on-dark);
}

.bc-hero-inner {
  max-width: 760px;
}

.bc-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: var(--white);
}

.bc-hero-inner > p {
  margin: 0 0 16px;
  max-width: 620px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--on-dark-muted);
}

.bc-hero-note {
  padding-top: 4px;
  font-size: 15px !important;
  color: var(--teal-300) !important;
}

.bc-hero .hero-actions {
  margin-top: 32px;
}

.bc-section {
  padding: 96px 0;
}

.bc-backs {
  background: var(--teal-50);
}

.bc-section-heading {
  max-width: 640px;
  margin-bottom: 56px;
}

.bc-section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--teal-800);
}

.bc-section-heading p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

.bc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 56px 48px;
}

.bc-grid-backs {
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
}

.bc-tile {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bc-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.bc-backs .bc-stage {
  border-color: rgba(0, 58, 64, 0.12);
}

.bc-meta h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--teal-800);
}

.bc-meta p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.bc-choose {
  align-self: flex-start;
  margin-top: 16px;
  cursor: pointer;
}

.bc-tile.is-selected .bc-stage {
  border-color: var(--clay-500);
  box-shadow: 0 0 0 4px rgba(198, 110, 78, 0.14);
}

.bc-tile.is-selected .bc-choose {
  border-color: var(--teal-800);
  background: var(--teal-800);
  color: var(--white);
}

/* card artwork */
.bc-frame {
  container-type: inline-size;
  width: 100%;
}

.bc-frame-h { max-width: 620px; }
.bc-frame-v { max-width: 380px; }

.bc-shot {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.bc-backs .bc-shot { border-color: rgba(0, 58, 64, 0.14); }

.bc-grid-vert {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.bc-rules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.bc-rule {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.bc-rule h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--teal-800);
}

.bc-rule p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.bc-order {
  padding: 88px 0;
  background: var(--teal-800);
  color: var(--on-dark);
}

.bc-order-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.bc-order-heading > div { max-width: 720px; }

.bc-order-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 56px);
}

.bc-order-heading p:last-child {
  max-width: 680px;
}

.bc-order-builder {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: start;
  gap: 36px;
}

.bc-order-form,
.bc-proof-panel {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.bc-order-form { overflow: hidden; }

.bc-form-section {
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.bc-form-section:last-child { border-bottom: 0; }

.bc-form-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 18px;
  margin-bottom: 18px;
}

.bc-form-kicker {
  color: var(--teal-800);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bc-standard-note {
  color: var(--subtle);
  font-size: 0.8rem;
  font-weight: 600;
}

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

.bc-field {
  display: grid;
  gap: 7px;
  color: var(--teal-800);
  font-size: 0.86rem;
  font-weight: 700;
}

.bc-field-wide { grid-column: 1 / -1; }

.bc-field input,
.bc-field select,
.bc-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  color: var(--ink-900);
  border: 1px solid var(--neutral-300);
  border-radius: 9px;
  background: var(--white);
  font: 500 1rem/1.35 var(--sans);
}

.bc-field textarea {
  min-height: 92px;
  resize: vertical;
}

.bc-field input[type="file"] {
  padding: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.bc-field input:focus,
.bc-field select:focus,
.bc-field textarea:focus {
  outline: 3px solid rgba(198, 110, 78, 0.18);
  border-color: var(--clay-500);
}

.bc-field small {
  color: var(--subtle);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.45;
}

.bc-choice-row {
  display: grid;
  gap: 22px;
}

.bc-choice-row fieldset,
.bc-choice-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.bc-choice-row legend {
  margin-bottom: 9px;
  color: var(--teal-800);
  font-size: 0.86rem;
  font-weight: 750;
}

.bc-choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.bc-choice {
  position: relative;
  cursor: pointer;
}

.bc-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.bc-choice > span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  color: var(--teal-800);
  border: 1px solid var(--neutral-300);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.87rem;
  font-weight: 700;
}

.bc-choice > span small {
  color: var(--subtle);
  font-size: 0.68rem;
  font-weight: 600;
}

.bc-choice input:checked + span {
  color: var(--white);
  border-color: var(--teal-800);
  background: var(--teal-800);
}

.bc-choice input:checked + span small { color: var(--teal-100); }

.bc-choice input:focus-visible + span {
  outline: 3px solid rgba(198, 110, 78, 0.35);
  outline-offset: 3px;
}

.bc-other-quantity { margin-top: 12px; }
.bc-other-quantity input { max-width: 180px; }

.bc-approval {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 11px;
  margin: 18px 0;
  color: var(--text);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

.bc-approval input {
  width: 19px;
  height: 19px;
  margin-top: 1px;
  accent-color: var(--clay-500);
}

.bc-submit {
  width: 100%;
  min-height: 52px;
  cursor: pointer;
  font-size: 0.95rem;
}

.bc-submit:disabled { cursor: wait; opacity: 0.64; }

.bc-form-status {
  min-height: 1.4em;
  margin: 12px 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.84rem !important;
}

.bc-form-status.is-error { color: #9b2c2c !important; }
.bc-form-status.is-success { color: #15603e !important; }

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

.bc-proof-panel {
  position: sticky;
  top: 108px;
  padding: 24px;
}

.bc-proof-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.bc-proof-topline > div:first-child {
  display: grid;
  gap: 4px;
}

.bc-proof-topline strong {
  color: var(--ink-900);
  font-size: 0.95rem;
}

.bc-proof-tabs {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: var(--teal-50);
}

.bc-proof-tabs button {
  min-height: 34px;
  padding: 0 12px;
  color: var(--teal-800);
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font: 700 0.77rem var(--sans);
}

.bc-proof-tabs button.is-active {
  color: var(--white);
  background: var(--teal-800);
}

.bc-proof-shell {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 58, 64, 0.15);
  border-radius: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: border-radius 160ms ease;
}

.bc-proof-shell.is-rounded { border-radius: 18px; }
.bc-proof-shell.is-rounded canvas { border-radius: 17px; }

.bc-proof-shell canvas {
  display: block;
  width: 100%;
  height: auto;
  background: var(--white);
}

.bc-proof-shell.is-vertical {
  width: min(68%, 380px);
  margin-inline: auto;
}

.bc-gloss {
  position: absolute;
  inset: 0;
  display: none;
  pointer-events: none;
  background: linear-gradient(118deg, transparent 8%, rgba(255, 255, 255, 0.2) 37%, transparent 58%);
  mix-blend-mode: screen;
}

.bc-proof-shell.is-glossy .bc-gloss { display: block; }

.bc-proof-note {
  margin: 16px 0 0 !important;
  color: var(--subtle) !important;
  font-size: 0.73rem !important;
  line-height: 1.5 !important;
}

.bc-order-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 18px 0 0;
}

.bc-order-summary div {
  padding: 10px;
  border-radius: 9px;
  background: var(--teal-50);
  text-align: center;
}

.bc-order-summary dt {
  color: var(--subtle);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bc-order-summary dd {
  margin: 3px 0 0;
  color: var(--teal-800);
  font-size: 0.78rem;
  font-weight: 750;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.bc-order-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.bc-order-inner > div:first-child { max-width: 560px; }

.bc-order h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}

.bc-order p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--on-dark-muted);
}

@media (max-width: 640px) {
  .bc-hero { padding: 104px 0 72px; }
  .bc-section { padding: 72px 0; }
  .bc-grid,
  .bc-grid-vert,
  .bc-grid-backs {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bc-order { padding: 72px 0; }
  .bc-form-section { padding: 22px 20px; }
  .bc-form-grid { grid-template-columns: 1fr; }
  .bc-field-wide { grid-column: auto; }
  .bc-order-summary { grid-template-columns: repeat(2, 1fr); }
  .bc-proof-panel { padding: 18px; }
  .bc-proof-topline { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 980px) {
  .bc-order-builder { grid-template-columns: 1fr; }
  .bc-proof-panel { position: static; }
}

/* Business card: browse-page ordering affordances */
.bc-order-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bc-order-callout h2 {
  margin: 8px 0 10px;
}

.bc-order-callout p {
  margin: 0;
  max-width: 54ch;
}

.bc-order-back {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--on-dark);
  font-size: 0.86rem;
  text-decoration: none;
}

.bc-order-back:hover {
  text-decoration: underline;
}

/* Business card: pricing under the preview */
.bc-pricing {
  margin-top: 18px;
  padding: 16px 18px 14px;
  border: 1px solid var(--border-subtle, rgba(0, 58, 64, 0.14));
  border-radius: 12px;
}

.bc-pricing h3 {
  margin: 0;
  color: var(--teal-800);
  font-size: 0.95rem;
  font-weight: 700;
}

.bc-pricing-spec {
  margin: 6px 0 12px;
  color: #191919;
  font-size: 0.74rem;
  line-height: 1.5;
}

.bc-price-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.bc-price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.84rem;
  color: #191919;
}

.bc-price-list li.is-active {
  background: var(--teal-50);
  font-weight: 700;
}

.bc-price-list strong {
  font-family: var(--serif, Georgia, serif);
  font-size: 0.95rem;
}

.bc-pricing-note {
  margin: 10px 0 0;
  color: #191919;
  font-size: 0.72rem;
}
