:root {
  --paper: #f7f0e6;
  --ink: #1f1713;
  --muted: #6f6258;
  --espresso: #4a2f26;
  --red: #a73219;
  --red-deep: #7d220f;
  --cream: #fff8ed;
  --sage: #74806b;
  --blue: #526c78;
  --line: rgba(31, 23, 19, 0.14);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
}

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

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

[id] {
  scroll-margin-top: 76px;
}

.preview-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  background: rgba(255, 248, 237, 0.88);
  border-bottom: 1px solid rgba(31, 23, 19, 0.12);
  backdrop-filter: blur(18px);
}

.preview-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
}

.mark {
  display: grid;
  width: 38px;
  height: 38px;
  overflow: hidden;
  place-items: center;
  background: var(--red);
  border-radius: 50%;
}

.mark img {
  width: 42px;
  max-width: none;
  transform: translate(-1px, 6px) scale(1.72);
  transform-origin: 50% 25%;
}

.layout-tabs {
  display: flex;
  gap: 6px;
  padding: 5px;
  background: rgba(234, 217, 195, 0.9);
  border: 1px solid rgba(31, 23, 19, 0.12);
  border-radius: 8px;
}

.layout-tab {
  flex: 1 1 0;
  min-width: 0;
  min-height: 38px;
  padding: 0 14px;
  color: var(--espresso);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: 800 0.88rem/1 var(--sans);
  white-space: nowrap;
  cursor: pointer;
}

.layout-tab:hover,
.layout-tab:focus-visible {
  outline: 2px solid rgba(167, 50, 25, 0.35);
  outline-offset: 2px;
}

.layout-tab.is-active {
  color: var(--cream);
  background: var(--espresso);
  box-shadow: 0 6px 18px rgba(58, 36, 28, 0.18);
}

.tab-short {
  display: none;
}

.mobile-line {
  display: none;
}

.homepage {
  min-height: 100vh;
}

.homepage.is-active {
  display: block;
}

.site-nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--cream);
}

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

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

.wordmark {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 1rem;
  font-weight: 600;
}

.site-nav nav a {
  color: inherit;
  opacity: 0.92;
}

.site-nav nav a:hover,
.site-nav nav a:focus-visible {
  opacity: 1;
  outline: none;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.nav-cta {
  display: inline-flex;
  min-height: 38px;
  padding: 0 14px;
  align-items: center;
  color: var(--cream);
  background: rgba(167, 50, 25, 0.92);
  border: 1px solid rgba(255, 248, 237, 0.28);
  border-radius: 8px;
  opacity: 1;
  white-space: nowrap;
}

.site-nav-page .nav-cta {
  color: var(--cream);
  border-color: transparent;
  background: var(--red);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.site-nav-page .nav-cta:hover,
.site-nav-page .nav-cta:focus-visible {
  background: var(--red-deep);
  text-decoration: none;
}

.photo-hero,
.kiosk-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--cream);
  background: #17110f;
}

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

.hero-counter .photo-hero-media {
  object-position: 52% 50%;
}

.kiosk-hero .photo-hero-media {
  object-position: 50% 48%;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.66), rgba(12, 10, 9, 0.18) 50%, rgba(12, 10, 9, 0.32)),
    linear-gradient(0deg, rgba(12, 10, 9, 0.72), rgba(12, 10, 9, 0.08) 46%, rgba(12, 10, 9, 0.18));
}

.hero-statement {
  position: absolute;
  z-index: 2;
  left: max(40px, calc((100% - 1180px) / 2));
  bottom: 52px;
  width: min(100% - 80px, 940px);
}

.hero-statement p {
  max-width: 640px;
  margin: 0 0 22px;
  color: rgba(255, 248, 237, 0.86);
  font-size: 1.08rem;
}

.photo-hero .hero-actions {
  margin-top: 28px;
}

.photo-hero .button.secondary {
  color: var(--cream);
  border-color: rgba(255, 248, 237, 0.46);
  background: rgba(255, 248, 237, 0.1);
}

.photo-hero .button.secondary:hover,
.photo-hero .button.secondary:focus-visible {
  border-color: var(--cream);
  background: rgba(255, 248, 237, 0.18);
}

.quick-nav {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 10px 14px;
  overflow-x: auto;
  color: var(--espresso);
  background: rgba(255, 248, 237, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
}

.quick-nav::-webkit-scrollbar {
  display: none;
}

.quick-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

.quick-nav a:hover,
.quick-nav a:focus-visible {
  color: var(--cream);
  background: var(--espresso);
  outline: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 5.25rem;
  line-height: 1.12;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.8rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.eyebrow,
.service-tiles span {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-hero .eyebrow,
.kiosk-hero .eyebrow {
  color: #f2c68d;
}

.promise-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 80px));
  margin: -34px auto 0;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(31, 23, 19, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(31, 23, 19, 0.14);
}

.promise-strip article {
  min-height: 142px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.promise-strip article:last-child {
  border-right: 0;
}

.promise-strip span,
.process-steps span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.promise-strip strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 400;
  line-height: 1.1;
}

.promise-strip p {
  margin-bottom: 0;
  color: var(--muted);
}

.solution-finder {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 42px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 72px 0 10px;
  align-items: start;
}

.finder-copy h2 {
  max-width: 460px;
  margin-bottom: 16px;
  font-size: 3.2rem;
  line-height: 1.04;
}

.finder-copy p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.finder-options a {
  display: grid;
  gap: 8px;
  min-height: 172px;
  padding: 22px;
  background: rgba(255, 248, 237, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.finder-options a:nth-child(2) {
  background: rgba(232, 238, 226, 0.7);
}

.finder-options a:nth-child(3) {
  background: rgba(245, 220, 205, 0.7);
}

.finder-options a:nth-child(4) {
  background: rgba(227, 235, 238, 0.72);
}

.finder-options a:hover,
.finder-options a:focus-visible {
  border-color: rgba(167, 50, 25, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(31, 23, 19, 0.1);
  outline: 2px solid rgba(167, 50, 25, 0.28);
  outline-offset: 3px;
}

.finder-options span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.finder-options strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.08;
}

.finder-options small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.46;
}

.feature-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 86px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 92px 0 74px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.story-heading h2 {
  margin-bottom: 18px;
  font-size: 4.15rem;
}

.section-deck {
  max-width: 360px;
  margin-bottom: 24px;
  color: var(--espresso);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
}

.story-team-link {
  width: auto;
}

.about-copy {
  display: grid;
  gap: 18px;
  max-width: 690px;
  margin-top: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.66;
}

.about-copy p {
  margin-bottom: 0;
}

.about-copy .lead-copy {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.56;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.beans-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 70px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 76px 0 86px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.beans-copy h2 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: 3.65rem;
  line-height: 1.02;
}

.beans-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.66;
}

.beans-panel {
  overflow: hidden;
  background: rgba(255, 248, 237, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.beans-panel figure {
  min-height: 300px;
  margin: 0;
  background: #ead9c3;
}

.beans-panel img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.beans-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.beans-points article {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.beans-points article:last-child {
  border-right: 0;
}

.beans-points span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
}

.beans-points strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 400;
  line-height: 1.1;
}

.beans-points p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.eco-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 70px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 76px 0 86px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.eco-section h2 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 3.35rem;
  line-height: 1.04;
}

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

.eco-grid article {
  min-height: 250px;
  padding: 26px;
  color: var(--cream);
  background:
    linear-gradient(145deg, rgba(31, 23, 19, 0.32), rgba(116, 128, 107, 0.78)),
    var(--sage);
  border-radius: 8px;
}

.eco-grid article:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(31, 23, 19, 0.2), rgba(74, 47, 38, 0.86)),
    var(--espresso);
}

.eco-grid article:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(31, 23, 19, 0.18), rgba(167, 50, 25, 0.78)),
    var(--red);
}

.eco-grid span {
  display: block;
  margin-bottom: 34px;
  color: #f3d1a7;
  font-size: 0.76rem;
  font-weight: 900;
}

.eco-grid h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.08;
}

.eco-grid p {
  margin-bottom: 0;
  color: rgba(255, 248, 237, 0.78);
  line-height: 1.55;
}

.team-section {
  margin: 0 0 82px;
  padding: 78px 0 88px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(74, 47, 38, 0.28), rgba(125, 34, 15, 0.08) 46%, rgba(31, 23, 19, 0.22)),
    var(--red-deep);
}

.team-header,
.team-grid {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.team-header {
  display: block;
  max-width: none;
  margin-bottom: 44px;
}

.team-header .eyebrow {
  margin-bottom: 16px;
  color: #f3d1a7;
}

.team-header h2 {
  margin-bottom: 0;
}

.team-header h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: 4.15rem;
  line-height: 1.02;
}

.team-header > p:last-child {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 248, 237, 0.78);
  font-size: 1.08rem;
  line-height: 1.62;
}

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

.team-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(255, 248, 237, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(31, 23, 19, 0.2);
}

.team-photo {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #ead9c3;
}

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

.team-copy {
  padding: 28px 30px 34px;
}

.team-role {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.team-copy h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1.08;
}

.team-copy h2 {
  margin-bottom: 14px;
  font-size: 2.15rem;
}

.team-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.team-page {
  background: var(--paper);
}

.team-page-section {
  padding-top: 80px;
}

.services-section {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto 86px;
  padding-top: 76px;
}

.services-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 64px;
  align-items: start;
  margin-bottom: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.services-header h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 3.65rem;
  line-height: 1.02;
}

.services-header p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.text-link {
  display: inline-flex;
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--red-deep);
  outline: none;
}

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

.service-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 28px;
  background: rgba(255, 248, 237, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(167, 50, 25, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(31, 23, 19, 0.12);
  outline: 2px solid rgba(167, 50, 25, 0.32);
  outline-offset: 3px;
}

.service-card:nth-child(2) {
  background: rgba(232, 238, 226, 0.78);
}

.service-card:nth-child(3) {
  background: rgba(245, 220, 205, 0.78);
}

.service-card:nth-child(4) {
  background: rgba(227, 235, 238, 0.78);
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.service-number,
.service-tag {
  margin-bottom: 0;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-tag {
  color: var(--espresso);
  letter-spacing: 0;
}

.service-card:nth-child(2) .service-number {
  color: var(--sage);
}

.service-card:nth-child(3) .service-number {
  color: var(--espresso);
}

.service-card:nth-child(4) .service-number {
  color: var(--blue);
}

.service-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.82rem;
  font-weight: 400;
  line-height: 1.04;
}

.service-fit {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.42;
}

.service-card p:not(.service-number):not(.service-tag) {
  color: var(--muted);
}

.service-card .service-fit {
  color: var(--red);
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 19px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.service-card li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.service-card:nth-child(2) li::before {
  background: var(--sage);
}

.service-card:nth-child(3) li::before {
  background: var(--espresso);
}

.service-card:nth-child(4) li::before {
  background: var(--blue);
}

.card-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 22px;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.service-card:nth-child(2) .card-link {
  color: var(--sage);
}

.service-card:nth-child(3) .card-link {
  color: var(--espresso);
}

.service-card:nth-child(4) .card-link {
  color: var(--blue);
}

.process-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 70px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto 96px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.process-header h2 {
  margin-bottom: 0;
}

.process-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-steps article {
  display: grid;
  grid-template-columns: 90px 0.82fr 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.process-steps h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.12;
}

.process-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto 92px;
  border: 1px solid var(--line);
}

.service-tiles article {
  min-height: 220px;
  padding: 34px;
  background: rgba(255, 248, 237, 0.62);
  border-right: 1px solid var(--line);
}

.service-tiles article:nth-child(2) {
  background: rgba(232, 238, 226, 0.72);
}

.service-tiles article:last-child {
  border-right: 0;
  background: rgba(245, 220, 205, 0.72);
}

.service-tiles p,
.stacked-list p,
.detail-list p {
  color: var(--muted);
}

.closing-band {
  display: grid;
  gap: 20px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto 96px;
  padding: 76px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(32, 18, 12, 0.82), rgba(121, 34, 18, 0.88)),
    var(--red);
  border-radius: 8px;
}

.closing-band .eyebrow {
  color: #f3d1a7;
}

.closing-band h2 {
  max-width: 830px;
  margin-bottom: 0;
}

.closing-band p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 248, 237, 0.78);
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 780px;
}

.contact-details a {
  color: #f3d1a7;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--cream);
  outline: none;
}

.closing-band .button {
  justify-self: start;
}

.contact-panel {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-top: 4px;
  padding: 24px;
  background: rgba(255, 248, 237, 0.1);
  border: 1px solid rgba(255, 248, 237, 0.22);
  border-radius: 8px;
}

.contact-panel[hidden] {
  display: none;
}

.contact-panel:focus {
  outline: 2px solid rgba(243, 209, 167, 0.58);
  outline-offset: 4px;
}

.contact-panel h3 {
  margin-bottom: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.12;
}

.contact-panel p {
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.contact-panel .button.secondary {
  color: var(--cream);
  border-color: rgba(255, 248, 237, 0.38);
  background: rgba(255, 248, 237, 0.08);
}

.contact-panel .button.secondary:hover,
.contact-panel .button.secondary:focus-visible {
  border-color: var(--cream);
  background: rgba(255, 248, 237, 0.16);
  outline: none;
}

.copy-status {
  min-height: 1.4em;
  color: #f3d1a7;
  font-weight: 900;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
  gap: 70px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto 92px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

.faq-heading h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 3.25rem;
  line-height: 1.04;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: rgba(255, 248, 237, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--cream);
  background: var(--red);
  border-radius: 50%;
  content: "+";
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list summary:focus-visible {
  outline: 2px solid rgba(167, 50, 25, 0.35);
  outline-offset: 3px;
}

.faq-list p {
  margin: -4px 20px 20px;
  color: var(--muted);
  line-height: 1.62;
}

.office-layout {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.92), rgba(245, 236, 224, 1)),
    var(--paper);
}

.office-hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 58px 0 74px;
  align-items: center;
}

.office-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.office-copy h1 {
  max-width: 600px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 4.6rem;
  line-height: 1.02;
}

.office-photo {
  position: relative;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(48, 34, 24, 0.22);
}

.office-photo img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: 50% 48%;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font: 800 1rem/1 var(--sans);
  font-weight: 800;
}

.button.primary {
  color: var(--cream);
  background: var(--red);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--red-deep);
  outline: none;
}

.button.secondary {
  color: var(--espresso);
  border-color: rgba(74, 47, 38, 0.28);
  background: rgba(255, 248, 237, 0.36);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--espresso);
  outline: none;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics-row article {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

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

.metrics-row strong {
  color: var(--red);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
}

.metrics-row span {
  font-size: 1.05rem;
  font-weight: 800;
}

.office-services {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 86px 0 96px;
}

.stacked-list,
.detail-list {
  display: grid;
  gap: 14px;
}

.stacked-list article,
.detail-list article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.kiosk-panel {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 80px));
  margin: 18vh 0 0 max(40px, calc((100% - 1180px) / 2));
}

.kiosk-panel h1 {
  margin-bottom: 22px;
  font-size: 4.2rem;
  line-height: 1.03;
}

.kiosk-panel p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 248, 237, 0.84);
  font-size: 1.05rem;
}

.kiosk-details {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 86px 0 96px;
  align-items: center;
}

.kiosk-details figure {
  margin: 0;
  padding: 36px;
  background: rgba(255, 248, 237, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.kiosk-details img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.service-detail-page {
  background: var(--paper);
}

.service-detail-nav {
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 54px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 72px 0 62px;
  align-items: center;
}

.service-detail-copy h1 {
  max-width: 650px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 4.65rem;
  line-height: 1.02;
}

.service-detail-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.64;
}

.service-detail-photo {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: #ead9c3;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(48, 34, 24, 0.2);
}

.service-detail-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.service-detail-photo.contain {
  display: grid;
  min-height: 560px;
  padding: 34px;
  place-items: center;
}

.service-detail-photo.contain img {
  max-height: 520px;
  min-height: 0;
  object-fit: contain;
}

.service-summary-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto 84px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-summary-strip article {
  min-height: 136px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.service-summary-strip article:last-child {
  border-right: 0;
}

.service-summary-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-summary-strip strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.12;
}

.service-detail-section {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto 88px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.service-detail-section > div:first-child {
  max-width: 760px;
  margin-bottom: 30px;
}

.service-detail-section h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.option-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

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

.option-card,
.pricing-card {
  padding: 26px;
  background: rgba(255, 248, 237, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.option-card:nth-child(2),
.pricing-card:nth-child(2) {
  background: rgba(232, 238, 226, 0.72);
}

.option-card:nth-child(3),
.pricing-card:nth-child(3) {
  background: rgba(245, 220, 205, 0.72);
}

.option-card h3,
.pricing-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.08;
}

.option-card p,
.pricing-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.option-card ul,
.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.option-card li,
.pricing-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.45;
}

.option-card li::before,
.pricing-card li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.pricing-section {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto 88px;
  padding: 54px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(31, 23, 19, 0.58), rgba(125, 34, 15, 0.82)),
    var(--red-deep);
  border-radius: 8px;
}

.pricing-section > div:first-child {
  max-width: 760px;
  margin-bottom: 30px;
}

.pricing-section .eyebrow {
  color: #f3d1a7;
}

.pricing-section h2 {
  margin-bottom: 0;
}

.pricing-section p {
  color: rgba(255, 248, 237, 0.78);
}

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

.pricing-card {
  background: rgba(255, 248, 237, 0.08);
  border-color: rgba(255, 248, 237, 0.18);
}

.pricing-card:nth-child(2),
.pricing-card:nth-child(3) {
  background: rgba(255, 248, 237, 0.08);
}

.pricing-card p,
.pricing-card li {
  color: rgba(255, 248, 237, 0.82);
}

.pricing-card h3 {
  color: var(--cream);
}

.pricing-card ul {
  border-top-color: rgba(255, 248, 237, 0.18);
}

.pricing-card li::before {
  background: #f3d1a7;
}

.supplies-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: 62px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto 88px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

.supplies-section h2 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: 3.35rem;
  line-height: 1.04;
}

.supplies-section p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.64;
}

.supplies-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.supplies-list span {
  min-height: 48px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 248, 237, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
}

.visual-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  gap: 54px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto 92px;
  align-items: center;
}

.visual-feature figure {
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  background: #ead9c3;
  border-radius: 8px;
}

.visual-feature img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.visual-feature .contain img {
  padding: 26px;
  object-fit: contain;
}

.visual-feature p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.64;
}

.related-services {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto 92px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.related-services h2 {
  max-width: 620px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 64px 0 34px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(31, 23, 19, 0.94), rgba(74, 47, 38, 0.9)),
    var(--espresso);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(220px, 0.42fr) minmax(240px, 0.46fr);
  gap: 52px;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  align-items: start;
}

.footer-wordmark {
  display: inline-flex;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
}

.footer-brand p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(255, 248, 237, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.footer-info,
.footer-contact {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.footer-contact {
  font-style: normal;
}

.footer-info h2,
.footer-contact h2 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 2.35rem;
  font-weight: 850;
  line-height: 1.05;
}

.footer-info a,
.footer-contact a {
  color: rgba(255, 248, 237, 0.88);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 6px;
  overflow-wrap: anywhere;
}

.footer-info a:hover,
.footer-info a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--cream);
  outline: none;
  text-decoration-color: currentColor;
}

.footer-bottom {
  width: min(1180px, calc(100% - 80px));
  margin: 54px auto 0;
  padding-top: 24px;
  color: rgba(255, 248, 237, 0.68);
  border-top: 1px solid rgba(255, 248, 237, 0.16);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.copyright-stamp {
  display: inline-flex;
  padding: 8px 12px;
  color: rgba(255, 248, 237, 0.74);
  border: 1px solid rgba(255, 248, 237, 0.18);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
}

.legal-page {
  background: var(--paper);
}

.legal-main {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 72px 0 92px;
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.78fr);
  gap: 68px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
  align-items: end;
}

.legal-hero h1 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 4.2rem;
  line-height: 1.02;
}

.legal-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.64;
}

.legal-updated {
  margin-bottom: 0;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 900;
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 58px;
  padding-top: 44px;
  align-items: start;
}

.legal-note {
  position: sticky;
  top: 26px;
  padding: 24px;
  background: rgba(255, 248, 237, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-note h2 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.08;
}

.legal-note p {
  margin-bottom: 16px;
  color: var(--muted);
}

.legal-note a {
  display: block;
  margin-top: 10px;
  color: var(--red);
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.legal-sections {
  display: grid;
  gap: 16px;
}

.legal-card {
  padding: 30px;
  background: rgba(255, 248, 237, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-card:nth-child(even) {
  background: rgba(232, 238, 226, 0.62);
}

.legal-card h2 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.08;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.66;
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 980px) {
  .preview-bar,
  .office-services {
    align-items: stretch;
    flex-direction: column;
  }

  .layout-tabs {
    width: 100%;
  }

  .site-nav {
    width: min(100% - 40px, 1180px);
  }

  .site-nav nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  .wordmark {
    font-size: 1.65rem;
  }

  h1,
  .team-header h1,
  .office-copy h1,
  .kiosk-panel h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .feature-intro,
  .solution-finder,
  .beans-section,
  .eco-section,
  .team-header,
  .team-grid,
  .services-section,
  .promise-strip,
  .process-section,
  .faq-section,
  .office-hero,
  .office-services,
  .kiosk-details,
  .service-detail-hero,
  .service-summary-strip,
  .service-detail-section,
  .pricing-section,
  .supplies-section,
  .visual-feature,
  .related-services {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 760px);
  }

  .footer-inner,
  .footer-bottom,
  .legal-main {
    width: min(100% - 40px, 760px);
  }

  .footer-inner,
  .legal-hero,
  .legal-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-main {
    padding: 54px 0 74px;
  }

  .legal-hero {
    align-items: start;
  }

  .legal-hero h1 {
    font-size: 3.35rem;
  }

  .legal-note {
    position: static;
  }

  .promise-strip {
    border-top: 1px solid var(--line);
  }

  .promise-strip article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise-strip article:last-child {
    border-bottom: 0;
  }

  .team-section {
    margin-bottom: 70px;
  }

  .team-page-section {
    padding-top: 64px;
  }

  .team-header,
  .services-header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .solution-finder,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-intro {
    align-items: start;
  }

  .story-heading h2,
  .finder-copy h2,
  .beans-copy h2,
  .faq-heading h2 {
    font-size: 3.3rem;
  }

  .eco-section h2 {
    font-size: 3rem;
  }

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

  .eco-grid article {
    min-height: 0;
  }

  .services-header h2 {
    font-size: 3rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .finder-options {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-hero {
    padding-top: 54px;
  }

  .service-detail-copy h1 {
    font-size: 3.35rem;
  }

  .service-detail-photo,
  .service-detail-photo img {
    min-height: 520px;
  }

  .service-summary-strip {
    margin-bottom: 70px;
  }

  .service-summary-strip article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-summary-strip article:last-child {
    border-bottom: 0;
  }

  .service-detail-section,
  .pricing-section,
  .supplies-section,
  .visual-feature {
    gap: 30px;
  }

  .option-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .process-section {
    gap: 30px;
  }

  .process-steps article {
    grid-template-columns: 72px minmax(0, 0.8fr) minmax(0, 1fr);
  }

  .service-tiles,
  .metrics-row {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 760px);
  }

  .service-tiles article,
  .metrics-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-tiles article:last-child,
  .metrics-row article:last-child {
    border-bottom: 0;
  }

  .office-photo,
  .office-photo img {
    min-height: 520px;
  }

  .kiosk-panel {
    margin-top: 12vh;
  }
}

@media (max-width: 560px) {
  .preview-bar {
    padding: 10px;
    overflow-x: hidden;
  }

  .preview-logo {
    font-size: 0.95rem;
  }

  .layout-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(calc(100vw - 20px), 360px);
  }

  .layout-tab {
    padding: 0 4px;
    font-size: 0.78rem;
  }

  .tab-full {
    display: none;
  }

  .tab-short {
    display: inline;
  }

  .photo-hero,
  .kiosk-hero {
    min-height: 100vh;
  }

  .site-nav {
    width: min(100% - 28px, 1180px);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 0;
  }

  .site-nav nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 4px;
    font-size: 0.92rem;
  }

  .site-nav nav a {
    flex: 0 0 auto;
  }

  .nav-cta {
    min-height: 34px;
    padding: 0 12px;
  }

  .quick-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 8px 14px;
    overflow-x: visible;
  }

  .quick-nav a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  [id] {
    scroll-margin-top: 104px;
  }

  .hero-statement {
    left: 14px;
    bottom: 34px;
    width: calc(100% - 28px);
  }

  .hero-counter .photo-hero-media {
    object-position: 56% 48%;
  }

  h1,
  .team-header h1,
  .office-copy h1,
  .kiosk-panel h1 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .hero-statement h1 {
    font-size: 2.05rem;
  }

  .desktop-line {
    display: none;
  }

  .mobile-line {
    display: inline;
  }

  .hero-statement p,
  .office-copy p:not(.eyebrow),
  .kiosk-panel p:not(.eyebrow) {
    max-width: 330px;
    font-size: 1rem;
  }

  .feature-intro,
  .solution-finder,
  .beans-section,
  .eco-section,
  .team-header,
  .team-grid,
  .services-section,
  .process-section,
  .faq-section,
  .office-hero,
  .office-services,
  .kiosk-details,
  .service-detail-hero,
  .service-summary-strip,
  .service-detail-section,
  .pricing-section,
  .supplies-section,
  .visual-feature,
  .related-services {
    width: min(100% - 28px, 760px);
    gap: 34px;
    padding: 58px 0;
  }

  .promise-strip {
    width: min(100% - 28px, 760px);
    margin-top: -22px;
  }

  .promise-strip article {
    padding: 24px 22px;
  }

  .story-heading h2,
  .finder-copy h2,
  .beans-copy h2,
  .eco-section h2,
  .services-header h2,
  .faq-heading h2 {
    font-size: 2.35rem;
    line-height: 1.06;
  }

  .section-deck {
    max-width: none;
    font-size: 1.05rem;
  }

  .about-copy,
  .about-copy .lead-copy,
  .beans-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .beans-section {
    padding: 52px 0;
  }

  .solution-finder {
    padding: 52px 0 12px;
  }

  .finder-options {
    grid-template-columns: 1fr;
  }

  .finder-options a {
    min-height: 0;
    padding: 22px;
  }

  .eco-section {
    padding: 52px 0;
  }

  .eco-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .eco-grid article {
    padding: 24px 22px;
  }

  .eco-grid span {
    margin-bottom: 24px;
  }

  .beans-panel figure,
  .beans-panel img {
    min-height: 240px;
  }

  .beans-points {
    grid-template-columns: 1fr;
  }

  .beans-points article {
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .beans-points article:last-child {
    border-bottom: 0;
  }

  .team-section {
    margin-bottom: 58px;
    padding: 58px 0 64px;
  }

  .team-header,
  .team-grid {
    gap: 18px;
    padding: 0;
  }

  .team-header {
    margin-bottom: 26px;
  }

  .team-header > p:last-child {
    font-size: 1rem;
  }

  .team-photo {
    aspect-ratio: 1 / 1;
  }

  .team-copy {
    padding: 24px 22px 28px;
  }

  .team-copy h3 {
    font-size: 1.75rem;
  }

  .team-copy h2 {
    font-size: 1.75rem;
  }

  .team-page-section {
    padding-top: 52px;
  }

  .services-section {
    margin-bottom: 58px;
    padding: 52px 0 0;
  }

  .service-detail-hero {
    padding: 46px 0 42px;
  }

  .service-detail-copy h1 {
    font-size: 2.4rem;
    line-height: 1.06;
  }

  .service-detail-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .service-detail-photo,
  .service-detail-photo img {
    min-height: 390px;
  }

  .service-detail-photo.contain {
    min-height: 390px;
    padding: 20px;
  }

  .service-summary-strip {
    gap: 0;
    margin-bottom: 58px;
    padding: 0;
  }

  .service-summary-strip article {
    padding: 24px 22px;
  }

  .service-detail-section {
    margin-bottom: 58px;
    padding: 52px 0 0;
  }

  .service-detail-section h2,
  .pricing-section h2,
  .supplies-section h2,
  .visual-feature h2,
  .related-services h2 {
    font-size: 2.25rem;
  }

  .supplies-section {
    margin-bottom: 58px;
    padding: 52px 0 0;
  }

  .supplies-list {
    grid-template-columns: 1fr;
  }

  .option-card,
  .pricing-card {
    padding: 24px 22px;
  }

  .pricing-section {
    margin-bottom: 58px;
    padding: 38px 22px;
  }

  .visual-feature {
    margin-bottom: 58px;
    padding: 0;
  }

  .visual-feature figure,
  .visual-feature img {
    min-height: 320px;
  }

  .related-services {
    margin-bottom: 58px;
    padding: 42px 0 0;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 22px;
    padding: 0 0 28px;
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    padding: 26px 22px;
  }

  .service-card h3 {
    font-size: 1.75rem;
  }

  .process-section {
    margin-bottom: 58px;
    padding: 52px 0 0;
  }

  .faq-section {
    margin-bottom: 58px;
    padding: 52px 0 0;
  }

  .process-steps article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .process-steps h3 {
    font-size: 1.35rem;
  }

  .service-tiles,
  .metrics-row,
  .closing-band,
  .footer-inner,
  .footer-bottom,
  .legal-main {
    width: min(100% - 28px, 760px);
  }

  .closing-band {
    padding: 42px 24px;
    margin-bottom: 58px;
  }

  .site-footer {
    padding: 46px 0 28px;
  }

  .footer-wordmark {
    font-size: 1.72rem;
  }

  .footer-info h2,
  .footer-contact h2 {
    font-size: 1.85rem;
  }

  .footer-info a,
  .footer-contact a {
    font-size: 1rem;
  }

  .footer-bottom {
    margin-top: 38px;
  }

  .legal-main {
    padding: 42px 0 58px;
  }

  .legal-hero h1 {
    font-size: 2.45rem;
  }

  .legal-hero,
  .legal-content {
    gap: 26px;
  }

  .legal-card,
  .legal-note {
    padding: 22px;
  }

  .legal-card h2 {
    font-size: 1.55rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .office-photo,
  .office-photo img {
    min-height: 430px;
  }

  .kiosk-panel {
    width: min(calc(100% - 28px), 340px);
    margin: 8vh 0 0 14px;
  }

  .kiosk-panel h1 {
    font-size: 2rem;
    line-height: 1.1;
  }
}
