:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-soft: #f1f1ee;
  --text: #111111;
  --text-secondary: #4b4b4b;
  --text-muted: #777777;
  --accent: #1f4e5f;
  --accent-alt: #355c7d;
  --warm-gray: #d8d5cf;
  --border: #e6e2dc;
  --border-strong: #c7c3bb;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.055);
  --radius: 4px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
}

input,
textarea,
button {
  font: inherit;
}

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

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

main {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  width: min(1280px, calc(100% - 112px));
  margin: 0 auto;
  min-height: 76px;
  padding: 16px 0;
  background: rgba(247, 247, 245, 0.84);
  backdrop-filter: blur(18px);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
}

.brand,
.site-nav,
.hero-actions,
.contact-links {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  width: 238px;
  min-height: 54px;
  color: var(--text);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  transform: translateY(9px);
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  gap: clamp(32px, 4vw, 56px);
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
}

.site-nav a {
  padding: 12px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.nav-cta {
  color: var(--text);
  border-bottom-color: var(--text);
}

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

.section {
  padding: 140px 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.86fr);
  gap: clamp(56px, 7vw, 88px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 120px 0 140px;
}

.hero::before {
  position: absolute;
  inset: 64px -72px auto;
  z-index: -1;
  height: min(520px, 62vh);
  content: "";
  background:
    radial-gradient(circle at 18% 22%, rgba(216, 213, 207, 0.34), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(31, 78, 95, 0.08), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(241, 241, 238, 0.38));
  filter: blur(2px);
  pointer-events: none;
}

.hero-copy {
  max-width: 620px;
  animation: heroReveal 720ms ease both;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 40px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 40px;
  font-size: clamp(1.5rem, 2.9vw, 2.25rem);
  line-height: 0.92;
}

h2 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(1.1rem, 2.05vw, 1.825rem);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0;
}

.hero-subtitle,
.section-heading p,
.contact-copy p,
.about-copy p {
  color: var(--text-secondary);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

.hero-subtitle {
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    transform 320ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--text);
  box-shadow: none;
}

.button-primary:hover {
  background: #222222;
}

.button-secondary {
  border-color: var(--text);
  color: var(--text);
  background: #ffffff;
}

.button-secondary:hover {
  background: #f3f3f3;
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 12px;
}

.credibility {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.7;
}

.hero-preview {
  position: relative;
  animation: heroReveal 820ms 120ms ease both;
}

.preview-shell {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 420ms ease,
    box-shadow 420ms ease,
    transform 420ms ease;
}

.preview-shell:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.preview-topbar {
  display: flex;
  gap: 8px;
  padding: 15px 17px;
  border-bottom: 1px solid var(--border);
  background: #fbfbfa;
}

.preview-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--warm-gray);
}

.preview-topbar span:nth-child(2),
.preview-topbar span:nth-child(3) {
  background: #c9c5bd;
}

.preview-shell img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  filter: grayscale(40%) saturate(62%) contrast(98%);
}

.preview-note {
  position: static;
  width: min(360px, 100%);
  margin-top: 24px;
  padding: 16px 0 0;
  border: 1px solid var(--border);
  border-width: 1px 0 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.preview-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.preview-note strong {
  display: block;
  color: var(--text-secondary);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.55;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 64px;
}

.service-grid,
.project-grid,
.process-grid {
  display: grid;
  gap: 24px;
}

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

.service-link {
  margin-top: 24px;
  color: var(--accent);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-link:hover {
  color: var(--text);
}

.section-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.9fr);
  gap: clamp(56px, 7vw, 88px);
  align-items: center;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 140px;
}

.service-hero-panel {
  display: grid;
  gap: 18px;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.service-hero-panel > span,
.service-hero-panel strong {
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-hero-panel > span {
  color: var(--text-muted);
  font-size: 12px;
}

.service-hero-panel div {
  padding: 24px;
  border: 1px solid var(--border);
  background: #fafaf8;
}

.service-hero-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 13px;
}

.service-hero-panel p {
  margin-bottom: 0;
  color: var(--text-secondary);
  line-height: 1.65;
}

.local-grid,
.workflow-list,
.faq-list {
  display: grid;
  gap: 24px;
}

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

.local-grid article,
.workflow-list article,
.faq-list article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.local-grid article {
  min-height: 260px;
  padding: 48px;
}

.workflow-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - var(--container)) / 2));
  padding-left: max(24px, calc((100% - var(--container)) / 2));
  background: var(--surface-soft);
}

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

.workflow-list article {
  min-height: 240px;
  padding: 40px;
}

.faq-section {
  max-width: 980px;
}

.faq-list article {
  padding: 32px 0;
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-list article:last-child {
  border-bottom: 1px solid var(--border);
}

.local-grid h3,
.workflow-list h3,
.faq-list h3 {
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.local-grid p,
.workflow-list p,
.faq-list p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.project-card,
.process-grid article,
.about-card,
.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.project-card,
.process-grid article {
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 360ms ease;
}

.project-card:hover,
.process-grid article:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.service-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 340px;
  padding: 64px 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: none;
  text-align: center;
  transition:
    border-color 250ms ease,
    background-color 250ms ease;
}

.service-card:hover {
  border-color: var(--text);
  background: #fafaf8;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: auto;
  min-width: 40px;
  height: auto;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 0;
  color: var(--text);
  background: transparent;
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
}

.service-icon::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 1px;
  background: var(--text);
  content: "";
  transform: translateX(-50%);
}

.service-card h3 {
  max-width: 320px;
  margin-bottom: 0;
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  color: var(--text);
  text-align: center;
  text-transform: uppercase;
}

.service-card p,
.process-grid p,
.project-content dd,
.form-note {
  color: var(--text-muted);
  line-height: 1.68;
}

.service-card p {
  max-width: 320px;
  margin-top: 28px;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  text-align: center;
}

.work-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - var(--container)) / 2));
  padding-left: max(24px, calc((100% - var(--container)) / 2));
  background: var(--surface-soft);
}

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

.project-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  background: var(--surface-soft);
  filter: grayscale(38%) saturate(64%) contrast(98%);
}

.project-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 40px;
}

.project-content .button {
  align-self: flex-start;
  margin-top: auto;
}

.project-type {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-content dl {
  margin: 24px 0 40px;
}

.project-content dt {
  margin-top: 16px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-content dd {
  margin: 6px 0 0;
}

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

.process-grid article {
  min-height: 232px;
  padding: 40px;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 40px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text);
  background: transparent;
  font-weight: 500;
}

.about-card {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  padding: 64px;
  background: var(--surface);
}

.about-copy p:last-child,
.contact-copy p:last-child,
.service-card p,
.process-grid p {
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-links {
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.contact-links a {
  color: var(--accent);
  font-weight: 500;
}

.contact-links a:hover {
  color: var(--text);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

label {
  display: grid;
  gap: 9px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

label span {
  color: var(--text-muted);
  font-weight: 400;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--text);
  background: #ffffff;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.full-span {
  grid-column: 1 / -1;
}

.form-note {
  margin: -4px 0 0;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 38px 0 48px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}

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

.site-footer a {
  color: var(--text);
  font-weight: 500;
}

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

.project-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(64px, 8vw, 96px);
  align-items: center;
  padding: 120px 0 140px;
}

.project-hero-copy h1 {
  max-width: 620px;
  margin-bottom: 40px;
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  line-height: 0.95;
}

.project-hero-copy > p:not(.project-label),
.project-split p,
.project-overview p,
.impact-section p {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.8;
}

.project-hero-copy > p:not(.project-label) {
  max-width: 540px;
  margin-bottom: 40px;
}

.project-label {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.project-hero-visual {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.project-hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: grayscale(38%) saturate(66%) contrast(98%);
}

.project-section {
  padding: 140px 0;
}

.project-overview {
  max-width: 760px;
}

.project-overview p {
  color: #222222;
  font-size: 20px;
}

.project-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(56px, 8vw, 96px);
  align-items: center;
}

.project-split h2,
.impact-section h2,
.project-cta h2 {
  max-width: 620px;
}

.editorial-list,
.impact-list {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.editorial-list li,
.impact-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.editorial-list li::before,
.impact-list li::before {
  position: absolute;
  top: 0.86em;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--text);
  content: "";
}

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

.workflow-diagram {
  display: grid;
  gap: 18px;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.workflow-diagram span {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.workflow-diagram i {
  width: 1px;
  height: 24px;
  margin: 0 auto;
  background: var(--border-strong);
}

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

.module-grid article {
  min-height: 280px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.module-grid span {
  display: block;
  margin-bottom: 40px;
  color: var(--text-muted);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.module-grid h3 {
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-grid p {
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img,
.ui-preview {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  object-fit: cover;
  filter: grayscale(36%) saturate(64%) contrast(98%);
}

.gallery-grid figcaption {
  margin-top: 16px;
  color: var(--text-muted);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ui-preview {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 48px;
  filter: none;
}

.ui-topline,
.ui-row,
.ui-choice,
.ui-button-line,
.ui-message,
.ui-input-line,
.ui-card-line,
.ui-divider {
  border-radius: 1px;
  background: var(--warm-gray);
}

.ui-topline {
  width: 42%;
  height: 10px;
  background: var(--text);
}

.ui-row {
  width: 72%;
  height: 12px;
}

.ui-row.wide {
  width: 86%;
}

.ui-row.short {
  width: 48%;
}

.ui-choice {
  width: 100%;
  height: 42px;
  border: 1px solid var(--border);
  background: #fafaf8;
}

.ui-choice.active {
  border-color: var(--text);
}

.ui-button-line {
  width: 34%;
  height: 34px;
  background: var(--text);
}

.ui-message {
  width: 78%;
  height: 48px;
  justify-self: end;
  background: #fafaf8;
  border: 1px solid var(--border);
}

.ui-message.muted {
  width: 64%;
  justify-self: start;
}

.ui-input-line {
  width: 100%;
  height: 42px;
  margin-top: 24px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.ui-card-line {
  width: 100%;
  height: 18px;
}

.ui-card-line.small {
  width: 58%;
}

.ui-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.impact-section,
.project-cta {
  max-width: 820px;
  text-align: center;
}

.impact-list {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.project-cta .hero-actions {
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 0;
}

.experience-hero,
.workflow-journey,
.experience-highlights,
.experience-gallery,
.experience-cta {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.experience-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(64px, 8vw, 96px);
  align-items: center;
  padding: 120px 0 140px;
}

.experience-hero-copy h1 {
  max-width: 620px;
  margin-bottom: 40px;
  font-size: clamp(3rem, 5.8vw, 4.5rem);
  line-height: 0.92;
}

.experience-hero-copy > p:not(.project-label),
.journey-copy p,
.experience-cta p {
  max-width: 520px;
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 1.8;
}

.experience-hero-copy > p:not(.project-label) {
  margin-bottom: 40px;
}

.experience-hero-visual,
.screen-mockup,
.showcase-stack img {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.experience-hero-visual img,
.dashboard-screen img,
.showcase-stack img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: grayscale(38%) saturate(64%) contrast(98%);
}

.workflow-journey {
  display: grid;
  gap: 140px;
  padding: 80px 0 140px;
}

.journey-step {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1fr);
  gap: clamp(56px, 8vw, 96px);
  align-items: center;
  min-height: 560px;
}

.journey-step.reverse .journey-copy {
  order: 2;
}

.journey-step.reverse .screen-mockup {
  order: 1;
}

.journey-copy h2 {
  max-width: 520px;
  margin-bottom: 32px;
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  line-height: 0.94;
}

.screen-mockup {
  min-height: 430px;
  padding: 40px;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.screen-header small {
  color: var(--text-muted);
  font: inherit;
}

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

.form-grid label {
  gap: 14px;
  color: var(--text-muted);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-grid label.wide {
  grid-column: 1 / -1;
}

.form-grid i {
  display: block;
  height: 54px;
  border: 1px solid var(--border);
  background: #fafaf8;
}

.form-grid .wide i {
  height: 110px;
}

.chat-screen {
  display: grid;
  align-content: center;
}

.chat-row {
  width: min(78%, 420px);
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.55;
}

.chat-row.patient {
  justify-self: end;
  background: #fafaf8;
}

.chat-row.office {
  justify-self: start;
  background: #ffffff;
}

.schedule-grid {
  display: grid;
  gap: 16px;
}

.schedule-grid div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.schedule-grid strong {
  color: var(--text);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.schedule-grid span {
  color: var(--text-secondary);
}

.confirmation-line {
  width: 38%;
  height: 42px;
  margin-top: 40px;
  background: var(--text);
}

.dashboard-screen {
  padding: 0;
}

.experience-highlights,
.experience-gallery,
.experience-cta {
  padding: 140px 0;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.highlight-grid article {
  min-height: 260px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.highlight-grid h3 {
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.highlight-grid p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.showcase-stack {
  display: grid;
  gap: 64px;
}

.showcase-stack figure {
  margin: 0;
}

.showcase-stack figure:nth-child(even) {
  width: min(860px, 100%);
  margin-left: auto;
}

.showcase-stack .screen-mockup,
.showcase-stack img {
  min-height: 520px;
}

.screen-mockup.large {
  padding: 56px;
}

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

.board-columns div {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--border);
  background: #fafaf8;
}

.board-columns strong {
  display: block;
  margin-bottom: 32px;
  color: var(--text);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.board-columns span {
  display: block;
  height: 64px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.showcase-stack figcaption {
  margin-top: 18px;
  color: var(--text-muted);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-cta {
  max-width: 820px;
  text-align: center;
}

.experience-cta h2 {
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.25rem, 4.4vw, 3.75rem);
  line-height: 0.96;
}

.experience-cta p {
  margin: 0 auto 40px;
}

.experience-cta .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

.restaurant-experience .experience-hero-visual img,
.restaurant-gallery img,
.restaurant-visual img {
  filter: grayscale(26%) saturate(72%) contrast(97%);
}

.restaurant-home-screen,
.restaurant-message-screen,
.restaurant-board {
  background: #fbfaf8;
}

.restaurant-photo-panel {
  min-height: 148px;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(216, 210, 200, 0.75), rgba(203, 187, 160, 0.35)),
    #f7f3ec;
}

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

.menu-card-grid div {
  min-height: 130px;
  padding: 22px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.menu-card-grid strong {
  display: block;
  margin-bottom: 34px;
  color: var(--text);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.menu-card-grid span {
  display: block;
  width: 72%;
  height: 1px;
  background: #cbbba0;
}

.restaurant-board .board-columns div,
.restaurant-board .board-columns span {
  background: #ffffff;
}

.restaurant-board .board-columns div {
  border-color: #d8d2c8;
}

.restaurant-message-screen .chat-row.patient {
  background: #f7f3ec;
}

.restaurant-flow,
.restaurant-live-preview {
  width: 100%;
}

.restaurant-live-preview {
  overflow: hidden;
  border: 1px solid #d8d2c8;
  border-radius: var(--radius);
  background: #fbfaf8;
  box-shadow: var(--shadow-soft);
}

.hero-restaurant-preview {
  min-height: 620px;
}

.restaurant-preview-photo {
  min-height: 300px;
  border-bottom: 1px solid #d8d2c8;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, 0.05)),
    url("assets/restaurant-burrata-pasta.png") center / cover no-repeat,
    #ebe4d9;
}

.restaurant-preview-copy {
  display: grid;
  gap: 20px;
  padding: 40px;
}

.restaurant-preview-copy span,
.restaurant-cta-row span,
.restaurant-editor label,
.guest-inquiry-grid span,
.guest-inquiry-grid strong,
.restaurant-promo-output strong {
  color: var(--text-muted);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.restaurant-preview-copy h2,
.restaurant-preview-copy h3 {
  color: var(--text);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.restaurant-preview-copy p,
.restaurant-preview-copy small,
.guest-inquiry-grid p,
.restaurant-promo-output p,
.restaurant-dashboard-grid p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.restaurant-preview-copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: baseline;
}

.restaurant-preview-copy strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
}

.restaurant-flow {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 140px;
}

.restaurant-stage {
  display: none;
}

.restaurant-stage.is-active {
  display: block;
  animation: calmReveal 460ms ease both;
}

.restaurant-workbench,
.restaurant-dashboard {
  border: 1px solid #d8d2c8;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.restaurant-workbench {
  display: grid;
  grid-template-columns: 310px 1fr;
  min-height: 680px;
}

.restaurant-rail {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 48px 40px;
  border-right: 1px solid #d8d2c8;
  background: #fbfaf8;
}

.restaurant-rail span {
  padding: 14px 0;
  border-bottom: 1px solid #d8d2c8;
  color: var(--text-muted);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.restaurant-rail span.is-current {
  color: var(--text);
  border-bottom-color: var(--text);
}

.restaurant-panel {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 64px;
}

.restaurant-panel h2 {
  max-width: 760px;
}

.restaurant-panel > p:not(.project-label) {
  max-width: 660px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.75;
}

.restaurant-homepage-frame {
  display: grid;
  overflow: hidden;
  max-width: 860px;
  border: 1px solid #d8d2c8;
  background: #fbfaf8;
}

.restaurant-homepage-frame .restaurant-preview-photo {
  min-height: 240px;
}

.restaurant-cta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d8d2c8;
}

.restaurant-cta-row span {
  padding: 22px;
  border-right: 1px solid #d8d2c8;
  color: var(--text);
  text-align: center;
}

.restaurant-cta-row span:last-child {
  border-right: 0;
}

.restaurant-editor-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 1fr);
  gap: 32px;
  align-items: stretch;
}

.restaurant-editor {
  display: grid;
  gap: 18px;
}

.restaurant-editor label {
  display: grid;
  gap: 10px;
  color: var(--text);
}

.restaurant-editor input,
.restaurant-editor textarea {
  width: 100%;
  border: 1px solid #d8d2c8;
  border-radius: var(--radius);
  padding: 16px;
  color: var(--text);
  background: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}

.restaurant-editor textarea {
  min-height: 132px;
  resize: vertical;
}

.restaurant-live-preview.compact .restaurant-preview-photo {
  min-height: 210px;
}

.restaurant-live-preview.compact .restaurant-preview-copy {
  padding: 32px;
}

.restaurant-promo-output {
  display: none;
  max-width: 820px;
  padding: 24px;
  border: 1px solid #d8d2c8;
  background: #fbfaf8;
}

.restaurant-promo-output.is-visible {
  display: block;
}

.guest-inquiry-grid,
.restaurant-dashboard-grid {
  display: grid;
  gap: 18px;
}

.guest-inquiry-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
}

.guest-inquiry-grid section {
  display: grid;
  gap: 18px;
  min-height: 250px;
  padding: 28px;
  border: 1px solid #d8d2c8;
  background: #ffffff;
}

.guest-inquiry-grid h3 {
  font-size: 24px;
  font-weight: 500;
}

.guest-inquiry-grid strong {
  align-self: end;
  color: var(--text);
}

.restaurant-dashboard {
  padding: 56px;
}

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

.restaurant-dashboard-grid section {
  min-height: 210px;
  padding: 28px;
  border: 1px solid #d8d2c8;
  background: #ffffff;
}

.restaurant-dashboard-grid section.active {
  border-color: var(--text);
  background: #fbfaf8;
}

.restaurant-dashboard-grid h3 {
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.interactive-hero,
.intake-experience {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.interactive-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(64px, 8vw, 96px);
  align-items: center;
  padding: 120px 0 140px;
}

.intake-preview {
  display: grid;
  gap: 18px;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.preview-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 86px;
  padding: 22px;
  border: 1px solid var(--border);
  background: #fafaf8;
  animation: previewPulse 7s ease-in-out infinite;
}

.preview-card:nth-child(2) {
  animation-delay: 1.4s;
}

.preview-card:nth-child(3) {
  animation-delay: 2.8s;
}

.preview-card span {
  color: var(--text-muted);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.preview-card strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
}

@keyframes previewPulse {
  0%,
  100% {
    border-color: var(--border);
    background: #fafaf8;
  }
  24% {
    border-color: var(--text);
    background: #ffffff;
  }
}

.intake-experience {
  padding: 80px 0 140px;
}

.intake-stage {
  display: none;
}

.intake-stage.is-active {
  display: block;
  animation: calmReveal 460ms ease both;
}

@keyframes calmReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intake-card,
.intake-shell,
.office-summary,
.frontdesk-dashboard {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.intake-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 64px;
}

.welcome-card {
  text-align: center;
}

.welcome-card h2,
.intake-card h2,
.dashboard-heading h2 {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.intake-muted {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.patient-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.patient-type-grid button {
  display: grid;
  gap: 28px;
  min-height: 180px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  background: #ffffff;
  cursor: pointer;
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: border-color 250ms ease, background-color 250ms ease, transform 250ms ease;
}

.patient-type-grid button:hover {
  border-color: var(--text);
  background: #fafaf8;
  transform: translateY(-2px);
}

.patient-type-grid span {
  color: var(--text-muted);
  font-weight: 500;
}

.intake-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 640px;
}

.intake-sidebar {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  background: #fafaf8;
}

.intake-progress {
  display: flex;
  gap: 14px;
  margin: 40px 0;
}

.intake-progress span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.intake-progress span.is-current {
  border-color: var(--text);
  color: var(--text);
  background: #ffffff;
}

.intake-form {
  display: grid;
  align-content: start;
  padding: 56px;
}

.intake-panel {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.intake-panel.is-active {
  display: grid;
  gap: 22px;
}

.intake-panel legend {
  margin-bottom: 32px;
  color: var(--text);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.intake-panel label {
  color: var(--text-secondary);
  font-size: 14px;
}

.intake-panel input,
.intake-panel textarea,
.intake-panel select {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 15px 16px;
  color: var(--text);
  background: #ffffff;
  outline: none;
}

.intake-panel input:focus,
.intake-panel textarea:focus,
.intake-panel select:focus {
  border-color: var(--text);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.07);
}

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

.choice-grid.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 18px;
}

.choice-grid label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 16px;
  border: 1px solid var(--border);
  background: #fafaf8;
}

.choice-grid input {
  width: auto;
}

.upload-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 1px dashed var(--border-strong);
  color: var(--text-secondary);
  text-align: center;
}

.upload-placeholder span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intake-error {
  min-height: 24px;
  margin: 28px 0 0;
  color: #7c2d2d;
  font-size: 14px;
}

.intake-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.classification-card {
  width: min(920px, 100%);
}

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

.classification-grid article {
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--border);
  background: #fafaf8;
}

.classification-grid span,
.summary-list dt,
.office-summary span {
  display: block;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.classification-grid strong,
.summary-list dd,
.office-summary strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.confirmation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: stretch;
}

.confirmation-layout .intake-card {
  width: 100%;
}

.summary-list {
  display: grid;
  gap: 20px;
  margin: 40px 0;
}

.summary-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.summary-list dd {
  margin: 0;
}

.office-summary {
  padding: 48px 36px;
  background: #fafaf8;
}

.office-summary ul {
  display: grid;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.frontdesk-dashboard {
  padding: 56px;
}

.dashboard-heading {
  margin-bottom: 40px;
  text-align: center;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 24px;
}

.dashboard-grid section {
  padding: 32px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.dashboard-grid h3 {
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.queue-panel {
  grid-row: span 2;
}

.queue-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.queue-row em {
  color: var(--text-secondary);
  font-style: normal;
}

.queue-row strong {
  padding: 6px 9px;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
}

.queue-row.active strong {
  border-color: var(--text);
}

.summary-panel p,
.draft-panel p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.lead-preview,
.lead-experience {
  width: 100%;
}

.lead-preview {
  display: grid;
  gap: 18px;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.lead-timeline-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--border);
  background: #fafaf8;
  animation: leadFlow 7s ease-in-out infinite;
}

.lead-timeline-card:nth-child(2) {
  animation-delay: 1.4s;
}

.lead-timeline-card:nth-child(3) {
  animation-delay: 2.8s;
}

.lead-timeline-card span,
.live-lead-card span,
.lead-note strong {
  color: var(--text-muted);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-timeline-card strong,
.live-lead-card strong {
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
}

.lead-timeline-card p,
.live-lead-card p,
.lead-note p {
  margin-bottom: 0;
  color: var(--text-secondary);
  line-height: 1.65;
}

@keyframes leadFlow {
  0%,
  100% {
    border-color: var(--border);
    transform: translateY(0);
  }
  28% {
    border-color: var(--text);
    transform: translateY(-4px);
  }
}

.lead-experience {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 140px;
}

.lead-stage {
  display: none;
}

.lead-stage.is-active {
  display: block;
  animation: calmReveal 460ms ease both;
}

.lead-workbench,
.pipeline-dashboard {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.lead-workbench {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 640px;
}

.lead-rail {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  background: #fafaf8;
}

.lead-rail span {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead-rail span.is-current {
  color: var(--text);
  border-bottom-color: var(--text);
}

.lead-panel {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 64px;
}

.lead-panel h2 {
  max-width: 720px;
}

.live-lead-card {
  display: grid;
  gap: 22px;
  max-width: 720px;
  padding: 32px;
  border: 1px solid var(--text);
  background: #ffffff;
}

.live-lead-card div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
}

.lead-tag-grid,
.property-shortlist {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 720px;
}

.lead-tag-grid span,
.property-shortlist span {
  padding: 11px 14px;
  border: 1px solid var(--border);
  color: var(--text);
  background: #fafaf8;
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-note {
  max-width: 720px;
  padding: 28px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.draft-editor-label {
  display: grid;
  gap: 14px;
  max-width: 760px;
  color: var(--text-muted);
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.draft-editor-label textarea {
  min-height: 260px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--text);
  background: #ffffff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0;
  text-transform: none;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.showing-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 860px;
}

.showing-slots button {
  min-height: 120px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  background: #ffffff;
  cursor: pointer;
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 250ms ease, background-color 250ms ease;
}

.showing-slots button:hover,
.showing-slots button.is-selected {
  border-color: var(--text);
  background: #fafaf8;
}

.pipeline-dashboard {
  padding: 56px;
}

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

.pipeline-grid section {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.pipeline-grid section.active {
  border-color: var(--text);
  background: #fafaf8;
}

.pipeline-grid h3 {
  font-family: "Helvetica Neue", "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.pipeline-grid p {
  color: var(--text-secondary);
  line-height: 1.7;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(8px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

.jot-page {
  --jot-cream: #f6f2ea;
  --jot-paper: #fbf7ef;
  --jot-charcoal: #1d1d1b;
  --jot-muted: #5f5a54;
  --jot-maroon: #6e1f1f;
  --jot-maroon-dark: #551717;
  --jot-saffron: #c68a2d;
  --jot-clay: #d9c7b8;
  --jot-border: #e1d4c7;
  background: var(--jot-cream);
  color: var(--jot-charcoal);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

.jot-page h1,
.jot-page h2,
.jot-page h3,
.jot-page h4,
.jot-page p,
.jot-page a,
.jot-page button,
.jot-page input,
.jot-page textarea,
.jot-page select {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

.jot-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1260px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  background: rgba(246, 242, 234, 0.92);
  backdrop-filter: blur(18px);
}

.jot-wordmark {
  display: grid;
  gap: 2px;
  min-width: 220px;
  color: var(--jot-charcoal);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

.jot-wordmark span {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 0.9;
}

.jot-wordmark small {
  color: var(--jot-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jot-nav,
.jot-header-actions,
.jot-hero-actions,
.jot-quick-facts,
.jot-filter-row,
.jot-category-tabs,
.jot-location-actions {
  display: flex;
  align-items: center;
}

.jot-nav {
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
  color: var(--jot-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.jot-nav a:hover {
  color: var(--jot-maroon);
}

.jot-header-actions {
  justify-content: flex-end;
  gap: 12px;
}

.jot-call {
  color: var(--jot-maroon);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.jot-button,
.jot-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 260ms ease;
}

.jot-button:hover,
.jot-add:hover {
  transform: translateY(-1px);
}

.jot-button {
  padding: 0 22px;
}

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

.jot-button-primary:hover {
  background: var(--jot-maroon-dark);
}

.jot-button-secondary {
  color: var(--jot-charcoal);
  border-color: rgba(29, 29, 27, 0.72);
  background: transparent;
}

.jot-button-secondary:hover {
  background: rgba(246, 242, 234, 0.72);
}

.jot-button-secondary.light {
  color: var(--jot-cream);
  border-color: rgba(246, 242, 234, 0.78);
}

.jot-button-secondary.light:hover {
  color: var(--jot-charcoal);
  background: var(--jot-cream);
}

.jot-button-ghost {
  color: var(--jot-cream);
  border-color: rgba(246, 242, 234, 0.34);
  background: rgba(29, 29, 27, 0.18);
}

.jot-button-secondary.dark {
  color: var(--jot-maroon);
  border-color: rgba(110, 31, 31, 0.72);
  background: transparent;
}

.jot-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 76px);
  overflow: hidden;
}

.jot-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.jot-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 29, 27, 0.82) 0%, rgba(29, 29, 27, 0.56) 43%, rgba(29, 29, 27, 0.08) 100%),
    linear-gradient(0deg, rgba(29, 29, 27, 0.36), rgba(29, 29, 27, 0.02) 44%);
}

.jot-hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  margin-left: max(24px, calc((100% - 1180px) / 2));
  padding: 96px 0 130px;
  color: var(--jot-cream);
}

.jot-kicker,
.jot-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 22px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.jot-kicker {
  color: #e0b36d;
}

.jot-eyebrow {
  color: var(--jot-maroon);
}

.jot-hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--jot-cream);
  font-size: clamp(1.35rem, 2.9vw, 2.775rem);
  font-weight: 600;
  line-height: 0.94;
}

.jot-hero p {
  max-width: 640px;
  color: rgba(246, 242, 234, 0.88);
  font-size: 1.14rem;
  line-height: 1.72;
}

.jot-hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 28px;
}

.jot-quick-facts {
  flex-wrap: wrap;
  gap: 10px;
}

.jot-quick-facts span {
  padding: 9px 12px;
  border: 1px solid rgba(246, 242, 234, 0.26);
  border-radius: 999px;
  color: rgba(246, 242, 234, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
}

.jot-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
}

.jot-intro-grid,
.jot-catering,
.jot-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: start;
}

.jot-section h2,
.jot-location h2 {
  max-width: 760px;
  color: var(--jot-charcoal);
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 0.98;
}

.jot-section p,
.jot-location p,
.jot-catering li {
  color: var(--jot-muted);
  font-size: 1rem;
  line-height: 1.72;
}

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

.jot-value-grid article,
.jot-menu-card,
.jot-catering-form,
.jot-catering-summary,
.jot-map {
  border: 1px solid var(--jot-border);
  border-radius: 6px;
  background: var(--jot-paper);
}

.jot-value-grid article {
  padding: 28px;
}

.jot-value-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--jot-maroon);
  font-size: 1rem;
}

.jot-featured {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
  background: #f2eadf;
}

.jot-section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.jot-section-heading::after,
.jot-catering-copy::after {
  display: block;
  width: 56px;
  height: 1px;
  margin-top: 26px;
  background: var(--jot-saffron);
  content: "";
}

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

.jot-feature-card {
  overflow: hidden;
  display: grid;
  border: 1px solid rgba(217, 199, 184, 0.64);
  border-radius: 6px;
  background: var(--jot-paper);
  box-shadow: 0 14px 38px rgba(29, 29, 27, 0.05);
}

.jot-feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.jot-feature-card:nth-child(1) img,
.jot-menu-card:nth-child(3n + 1) img {
  object-position: 10% 22%;
}

.jot-feature-card:nth-child(2) img,
.jot-menu-card:nth-child(3n + 2) img {
  object-position: 76% 28%;
}

.jot-feature-card:nth-child(3) img,
.jot-menu-card:nth-child(3n + 3) img {
  object-position: 16% 72%;
}

.jot-feature-card div {
  padding: 24px;
}

.jot-feature-card span,
.jot-menu-card span {
  color: var(--jot-clay);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.jot-feature-card h3,
.jot-menu-category h3,
.jot-menu-card h4 {
  color: var(--jot-charcoal);
}

.jot-feature-card h3 {
  font-size: 1.24rem;
  font-weight: 700;
}

.jot-menu-section {
  background: var(--jot-cream);
}

.jot-menu-shell {
  padding-top: 104px;
}

.jot-menu-controls {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) 1fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.jot-search,
.jot-catering-form label,
.jot-checkout label {
  display: grid;
  gap: 8px;
  color: var(--jot-maroon);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jot-search input,
.jot-catering-form input,
.jot-catering-form select,
.jot-catering-form textarea,
.jot-checkout input,
.jot-checkout select,
.jot-checkout textarea {
  width: 100%;
  border: 1px solid var(--jot-border);
  border-radius: 6px;
  background: var(--jot-paper);
  color: var(--jot-charcoal);
  outline: none;
}

.jot-search input:focus,
.jot-catering-form input:focus,
.jot-catering-form select:focus,
.jot-catering-form textarea:focus,
.jot-checkout input:focus,
.jot-checkout select:focus,
.jot-checkout textarea:focus {
  border-color: var(--jot-saffron);
}

.jot-search input {
  min-height: 50px;
  padding: 0 16px;
}

.jot-filter-row,
.jot-category-tabs {
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.jot-filter-row button,
.jot-category-tabs a {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--jot-border);
  border-radius: 999px;
  color: var(--jot-muted);
  background: rgba(251, 247, 239, 0.86);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.jot-filter-row button.is-active {
  color: var(--jot-cream);
  border-color: var(--jot-maroon);
  background: var(--jot-maroon);
}

.jot-category-tabs {
  position: sticky;
  top: 76px;
  z-index: 7;
  margin-bottom: 38px;
  padding: 12px 0;
  background: rgba(246, 242, 234, 0.94);
  backdrop-filter: blur(12px);
}

.jot-menu-category {
  scroll-margin-top: 150px;
  margin-bottom: 58px;
}

.jot-menu-category h3 {
  margin-bottom: 20px;
  font-size: 1.65rem;
}

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

.jot-menu-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  box-shadow: none;
  transition:
    border-color 200ms ease,
    background-color 200ms ease;
}

.jot-menu-card:hover {
  border-color: rgba(198, 138, 45, 0.5);
  background: #fffaf3;
}

.jot-menu-grid.compact .jot-menu-card {
  grid-template-columns: minmax(0, 1fr) auto;
}

.jot-menu-card.is-hidden {
  display: none;
}

.jot-menu-card img {
  width: 112px;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
}

.jot-menu-card h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.jot-menu-card p {
  margin-bottom: 8px;
  color: var(--jot-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.jot-add {
  align-self: center;
  min-width: 112px;
  padding: 0 14px;
  color: var(--jot-maroon);
  border-color: rgba(104, 31, 39, 0.34);
  background: transparent;
}

.jot-add:hover {
  color: var(--jot-cream);
  border-color: var(--jot-maroon);
  background: var(--jot-maroon);
}

.jot-catering {
  align-items: stretch;
}

.jot-catering ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding-left: 20px;
}

.jot-catering-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
}

.jot-catering-form input,
.jot-catering-form select,
.jot-catering-form textarea,
.jot-checkout input,
.jot-checkout select,
.jot-checkout textarea {
  padding: 13px 14px;
}

.jot-catering-form .wide,
.jot-catering-summary.wide {
  grid-column: 1 / -1;
}

.jot-catering-summary {
  padding: 18px;
  color: var(--jot-muted);
}

.jot-catering-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--jot-maroon);
}

.jot-location {
  background: var(--jot-charcoal);
  color: var(--jot-cream);
}

.jot-location-grid {
  align-items: center;
}

.jot-location h2,
.jot-location p,
.jot-location .jot-eyebrow {
  color: var(--jot-cream);
}

.jot-location p,
.jot-location address {
  color: rgba(246, 242, 234, 0.78);
}

.jot-location address {
  margin: 28px 0;
  font-style: normal;
  line-height: 1.8;
}

.jot-location address strong {
  display: block;
  color: var(--jot-cream);
}

.jot-location-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.jot-map {
  overflow: hidden;
  min-height: 420px;
  background: var(--jot-paper);
}

.jot-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.jot-cart {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  background: rgba(35, 27, 24, 0);
  transition: background-color 220ms ease;
}

.jot-cart.is-open {
  pointer-events: auto;
  background: rgba(29, 29, 27, 0.34);
}

.jot-cart-panel {
  width: min(440px, 100%);
  height: 100%;
  overflow-y: auto;
  padding: 26px;
  background: var(--jot-paper);
  box-shadow: -20px 0 44px rgba(29, 29, 27, 0.16);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

.jot-cart.is-open .jot-cart-panel {
  transform: translateX(0);
}

.jot-cart-header,
.jot-cart-row,
.jot-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.jot-cart-header {
  margin-bottom: 24px;
}

.jot-cart-header span {
  display: block;
  color: var(--jot-clay);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jot-cart-header strong {
  font-size: 1.6rem;
}

.jot-cart-header button,
.jot-qty button,
.jot-remove {
  border: 0;
  color: var(--jot-maroon);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.jot-cart-items {
  display: grid;
  gap: 12px;
}

.jot-empty-cart,
.jot-pickup-note,
.jot-payment-placeholder {
  color: var(--jot-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.jot-cart-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--jot-border);
}

.jot-cart-row strong {
  display: block;
  margin-bottom: 8px;
}

.jot-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--jot-border);
  border-radius: 999px;
  padding: 5px 10px;
}

.jot-cart-total {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 2px solid var(--jot-charcoal);
  font-size: 1.1rem;
}

.jot-checkout {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.jot-confirmation {
  margin-top: 20px;
  padding: 18px;
  border-radius: 6px;
  color: var(--jot-cream);
  background: var(--jot-maroon);
}

.jot-confirmation p {
  color: rgba(246, 242, 234, 0.86);
}

.jot-mobile-actions {
  display: none;
}

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

  *,
  *::before,
  *::after {
    animation: none;
    transition: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .jot-header {
    grid-template-columns: 1fr auto;
  }

  .jot-nav {
    display: none;
  }

  .jot-intro-grid,
  .jot-catering,
  .jot-location-grid,
  .jot-menu-controls {
    grid-template-columns: 1fr;
  }

  .jot-value-grid,
  .jot-featured-grid,
  .jot-menu-grid,
  .jot-menu-grid.compact {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    transform: translateY(0);
  }

  .site-nav {
    width: 100%;
    gap: 32px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .project-hero,
  .experience-hero,
  .interactive-hero,
  .service-hero,
  .journey-step,
  .project-split,
  .about-card,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  h1 {
    font-size: 1.75rem;
  }

  .hero-preview {
    max-width: 690px;
  }

  .service-grid,
  .project-grid,
  .module-grid,
  .highlight-grid,
  .local-grid,
  .workflow-list,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-step.reverse .journey-copy,
  .journey-step.reverse .screen-mockup {
    order: initial;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .jot-page {
    padding-bottom: 72px;
  }

  .jot-header {
    width: min(100% - 30px, 1180px);
    min-height: 68px;
  }

  .jot-wordmark {
    min-width: 0;
  }

  .jot-wordmark span {
    font-size: 1.76rem;
  }

  .jot-wordmark small {
    font-size: 0.58rem;
  }

  .jot-header-actions {
    display: none;
  }

  .jot-hero {
    min-height: calc(100vh - 68px);
  }

  .jot-hero img {
    object-position: 63% center;
  }

  .jot-hero-overlay {
    background:
      linear-gradient(90deg, rgba(29, 29, 27, 0.82), rgba(29, 29, 27, 0.45)),
      linear-gradient(0deg, rgba(29, 29, 27, 0.62), rgba(29, 29, 27, 0.1) 55%);
  }

  .jot-hero-copy {
    width: min(100% - 30px, 760px);
    margin: 0 auto;
    padding: 72px 0 150px;
  }

  .jot-hero h1 {
    font-size: 1.5rem;
  }

  .jot-hero p {
    font-size: 1rem;
  }

  .jot-hero-actions .jot-button {
    width: 100%;
  }

  .jot-section {
    width: min(100% - 30px, 1180px);
    padding: 82px 0;
  }

  .jot-section h2,
  .jot-location h2 {
    font-size: 1.175rem;
  }

  .jot-featured {
    padding-right: 15px;
    padding-left: 15px;
  }

  .jot-menu-shell {
    padding-top: 82px;
  }

  .jot-category-tabs {
    top: 68px;
    margin-right: -15px;
    margin-left: -15px;
    padding: 10px 15px;
  }

  .jot-menu-category {
    scroll-margin-top: 132px;
  }

  .jot-menu-card,
  .jot-menu-grid.compact .jot-menu-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .jot-menu-card img {
    width: 82px;
  }

  .jot-menu-card .jot-add {
    grid-column: 1 / -1;
    width: 100%;
  }

  .jot-catering-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .jot-catering-form .wide,
  .jot-catering-summary.wide {
    grid-column: auto;
  }

  .jot-location-actions .jot-button {
    width: 100%;
  }

  .jot-map,
  .jot-map iframe {
    min-height: 320px;
  }

  .jot-cart {
    align-items: flex-end;
  }

  .jot-cart-panel {
    width: 100%;
    height: min(88vh, 720px);
    border-radius: 18px 18px 0 0;
    transform: translateY(100%);
  }

  .jot-cart.is-open .jot-cart-panel {
    transform: translateY(0);
  }

  .jot-mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 66px;
    padding: 8px;
    border-top: 1px solid var(--jot-border);
    background: rgba(246, 242, 234, 0.96);
    backdrop-filter: blur(16px);
  }

  .jot-mobile-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--jot-maroon);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .jot-mobile-actions a:nth-child(2) {
    color: var(--jot-cream);
    background: var(--jot-maroon);
  }

  .site-header,
  .section,
  .hero,
  .project-hero,
  .experience-hero,
  .interactive-hero,
  .service-hero,
  .intake-experience,
  .lead-experience,
  .restaurant-flow,
  .workflow-journey,
  .experience-highlights,
  .experience-gallery,
  .experience-cta,
  .project-section,
  .site-footer {
    width: min(100% - 30px, var(--container));
  }

  .section {
    padding: 96px 0;
  }

  .hero {
    gap: 64px;
    padding: 56px 0 96px;
  }

  .site-nav {
    justify-content: space-between;
    gap: 12px;
    overflow-x: visible;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .project-hero,
  .experience-hero,
  .service-hero,
  .experience-highlights,
  .experience-gallery,
  .experience-cta,
  .project-section {
    padding: 96px 0;
  }

  .workflow-journey {
    gap: 96px;
    padding: 64px 0 96px;
  }

  .project-hero-copy h1 {
    font-size: 2.25rem;
  }

  .experience-hero-copy h1,
  .journey-copy h2,
  .experience-cta h2 {
    font-size: 2.25rem;
  }

  .brand {
    width: 206px;
    min-height: 48px;
  }

  h1 {
    font-size: 1.3125rem;
    line-height: 0.96;
  }

  h2 {
    font-size: 1.15rem;
  }

  .hero-subtitle,
  .section-heading p,
  .contact-copy p,
  .about-copy p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .preview-note {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .service-grid,
  .project-grid,
  .module-grid,
  .highlight-grid,
  .gallery-grid,
  .process-grid,
  .local-grid,
  .workflow-list,
  .patient-type-grid,
  .classification-grid,
  .confirmation-layout,
  .intake-shell,
  .dashboard-grid,
  .lead-workbench,
  .pipeline-grid,
  .restaurant-workbench,
  .restaurant-editor-layout,
  .guest-inquiry-grid,
  .restaurant-dashboard-grid,
  .restaurant-cta-row,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .intake-card,
  .frontdesk-dashboard {
    padding: 40px 24px;
  }

  .intake-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 32px 24px;
  }

  .lead-rail {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 32px 24px;
  }

  .restaurant-rail {
    border-right: 0;
    border-bottom: 1px solid #d8d2c8;
    padding: 32px 24px;
  }

  .lead-panel,
  .pipeline-dashboard,
  .restaurant-panel,
  .restaurant-dashboard {
    padding: 40px 24px;
  }

  .hero-restaurant-preview {
    min-height: auto;
  }

  .restaurant-preview-photo {
    min-height: 220px;
  }

  .restaurant-cta-row span {
    border-right: 0;
    border-bottom: 1px solid #d8d2c8;
  }

  .restaurant-cta-row span:last-child {
    border-bottom: 0;
  }

  .showing-slots {
    grid-template-columns: 1fr;
  }

  .intake-form {
    padding: 40px 24px;
  }

  .choice-grid,
  .choice-grid.compact {
    grid-template-columns: 1fr;
  }

  .intake-actions {
    flex-direction: column-reverse;
  }

  .queue-row {
    grid-template-columns: 1fr;
  }

  .workflow-diagram,
  .ui-preview,
  .screen-mockup,
  .screen-mockup.large {
    padding: 32px 24px;
  }

  .screen-mockup,
  .showcase-stack .screen-mockup,
  .showcase-stack img {
    min-height: 380px;
  }

  .form-grid,
  .request-board .board-columns {
    grid-template-columns: 1fr;
  }

  .form-grid label.wide {
    grid-column: auto;
  }

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

  .service-card,
  .process-grid article {
    min-height: auto;
  }

  .about-card,
  .contact-form {
    padding: 40px 24px;
  }

  .full-span {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
