:root {
  --ink: #111318;
  --ink-2: #2f3440;
  --muted: #667085;
  --paper: #f6f8fb;
  --panel: #ffffff;
  --line: #dde3ee;
  --accent: #2557d6;
  --accent-dark: #183d9a;
  --accent-soft: #e8eefc;
  --champagne: #d8b36a;
  --shadow: 0 20px 58px rgba(17, 19, 24, 0.1);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 42%, #ffffff 100%);
  font-family: "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(37, 87, 214, 0.09), transparent 34%),
    linear-gradient(90deg, rgba(221, 227, 238, 0.42) 1px, transparent 1px),
    linear-gradient(rgba(221, 227, 238, 0.42) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

a:focus-visible {
  outline: 3px solid rgba(37, 87, 214, 0.28);
  outline-offset: 4px;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  min-height: 68px;
  margin: 12px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(221, 227, 238, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 42px rgba(17, 19, 24, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 18px;
  font-weight: 900;
  transition: transform 180ms ease;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--ink), var(--accent));
  box-shadow: 0 12px 24px rgba(37, 87, 214, 0.22);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #f8fafc;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 6px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover {
  color: var(--ink);
  background: #ffffff;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button,
.work-card {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  color: #ffffff;
  background: var(--accent);
  font-weight: 850;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-dark);
  box-shadow: 0 12px 26px rgba(37, 87, 214, 0.2);
}

.nav-cta:active,
.button:active {
  transform: translateY(1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
  min-height: calc(100dvh - 92px);
  padding: 76px 0 60px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: #555f70;
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.button.primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(37, 87, 214, 0.22);
}

.button.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #ffffff;
}

.button.secondary:hover {
  border-color: #b9c4d8;
  box-shadow: 0 12px 28px rgba(17, 19, 24, 0.07);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
}

.canvas-card {
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.hero-visual:hover .canvas-card {
  transform: translateY(-6px);
  box-shadow: 0 28px 76px rgba(17, 19, 24, 0.16);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #f9fbfe;
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c8d1df;
}

.browser-top span:nth-child(1) {
  background: #e96a5f;
}

.browser-top span:nth-child(2) {
  background: var(--champagne);
}

.browser-top span:nth-child(3) {
  background: var(--accent);
}

.browser-top strong {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
}

.interface-preview {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  min-height: 504px;
  background: #f4f7fb;
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  background: #111318;
}

.preview-sidebar span {
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.preview-sidebar i {
  display: block;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.preview-sidebar i:nth-child(2) {
  background: var(--accent);
}

.preview-sidebar i {
  transition: width 220ms ease, background 220ms ease;
}

.hero-visual:hover .preview-sidebar i:nth-child(3) {
  width: 78%;
  background: rgba(255, 255, 255, 0.2);
}

.preview-main {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 18px;
}

.preview-toolbar,
.preview-hero,
.preview-cards > div {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.preview-toolbar strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--accent);
  font-size: 12px;
  box-shadow: 0 8px 18px rgba(37, 87, 214, 0.2);
}

.preview-hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 28px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(17, 19, 24, 0.16), rgba(17, 19, 24, 0.88)),
    url("https://images.unsplash.com/photo-1559028012-481c04fa702d?auto=format&fit=crop&w=900&q=80") center / cover;
  transition: background-position 520ms ease;
}

.hero-visual:hover .preview-hero {
  background-position: center 42%;
}

.preview-hero span,
.preview-cards span,
.work-type,
.order-header span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preview-hero span {
  color: rgba(255, 255, 255, 0.76);
}

.preview-hero strong {
  max-width: 480px;
  margin-top: 10px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.04;
}

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

.preview-cards > div {
  min-height: 106px;
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.preview-cards > div:hover {
  transform: translateY(-3px);
  border-color: #b9c4d8;
  box-shadow: 0 12px 26px rgba(17, 19, 24, 0.08);
}

.preview-cards strong {
  display: block;
  margin-top: 12px;
  font-size: 22px;
}

.floating-note {
  position: absolute;
  right: -14px;
  bottom: 34px;
  width: min(292px, 62%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 44px rgba(17, 19, 24, 0.14);
  transition: transform 240ms ease;
}

.hero-visual:hover .floating-note {
  transform: translateY(-8px);
}

.floating-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.floating-note strong {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.1;
}

.deliverable-grid {
  display: grid;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  padding: 74px 44px;
  background: #ffffff;
}

.intro p {
  margin-bottom: 0;
  font-size: 20px;
}

.services,
.work,
.process,
.restaurant,
.deliverables {
  margin-top: 24px;
  padding: 74px 44px;
}

.services {
  background: #f2f6ff;
}

.restaurant {
  background: #ffffff;
}

.deliverables {
  background: #f2f6ff;
}

.work {
  background: #ffffff;
}

.process {
  background: #f2f6ff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: 44px;
  align-items: end;
  max-width: none;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  margin-bottom: 4px;
  font-size: 16px;
}

.section-heading > div .kicker {
  margin-bottom: 16px;
}

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

.service-card,
.order-board,
.work-card,
.process-grid article,
.deliverable-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(17, 19, 24, 0.06);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 342px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent);
}

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

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

.service-card:hover,
.deliverable-grid article:hover,
.process-grid article:hover {
  transform: translateY(-5px);
  border-color: #b9c4d8;
  box-shadow: 0 22px 48px rgba(17, 19, 24, 0.1);
}

.service-number {
  display: block;
  margin-bottom: 70px;
  color: var(--accent);
  font-weight: 900;
}

.service-card h3 {
  margin-top: 0;
}

.service-card p {
  margin-bottom: 24px;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  color: var(--ink-2);
  font-weight: 760;
}

.restaurant {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
}

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

.deliverable-grid article {
  min-height: 276px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.deliverable-grid article::after,
.process-grid article::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-soft);
}

.deliverable-grid span {
  display: block;
  margin-bottom: 54px;
  color: var(--accent);
  font-weight: 900;
}

.deliverable-grid p {
  margin-bottom: 0;
}

.restaurant-copy p {
  max-width: 620px;
}

.text-link {
  position: relative;
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 900;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.order-board {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.order-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(37, 87, 214, 0.09), transparent 54%);
}

.order-header,
.order-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
}

.order-header {
  margin-bottom: 10px;
  color: #ffffff;
  background: var(--ink);
}

.order-header span {
  color: var(--champagne);
}

.order-row {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.order-row + .order-row {
  margin-top: 10px;
}

.order-row span {
  color: var(--muted);
}

.order-note {
  position: relative;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid #ccd8f5;
  border-radius: 10px;
  background: var(--accent-soft);
}

.order-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 20px;
}

.order-note p {
  margin-bottom: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(330px, auto);
  gap: 18px;
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 330px;
  padding: 24px;
  color: #ffffff;
  background: var(--ink);
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 19, 24, 0.08), rgba(17, 19, 24, 0.84));
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  pointer-events: none;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(17, 19, 24, 0.16);
}

.work-card:hover::before {
  background: linear-gradient(180deg, rgba(37, 87, 214, 0.12), rgba(17, 19, 24, 0.84));
}

.work-card > * {
  position: relative;
  z-index: 1;
}

.work-card p {
  color: rgba(255, 255, 255, 0.78);
}

.work-type {
  margin-bottom: auto;
  color: #d9c082;
}

.visit {
  margin-top: 18px;
  color: #ffffff;
  font-weight: 900;
}

.work-wellbe {
  background:
    linear-gradient(180deg, rgba(17, 19, 24, 0.04), rgba(17, 19, 24, 0.88)),
    url("https://images.unsplash.com/photo-1581093588401-fbb62a02f120?auto=format&fit=crop&w=900&q=80") center / cover;
}

.work-golden {
  background:
    linear-gradient(180deg, rgba(17, 19, 24, 0.04), rgba(17, 19, 24, 0.86)),
    url("https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=800&q=80") center / cover;
}

.work-cityside {
  background:
    linear-gradient(180deg, rgba(17, 19, 24, 0.04), rgba(17, 19, 24, 0.86)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=800&q=80") center / cover;
}

.work-sushi {
  background:
    linear-gradient(180deg, rgba(17, 19, 24, 0.04), rgba(17, 19, 24, 0.86)),
    url("https://images.unsplash.com/photo-1579584425555-c3ce17fd4351?auto=format&fit=crop&w=900&q=80") center / cover;
}

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

.process-grid article {
  position: relative;
  overflow: hidden;
  min-height: 276px;
  padding: 28px;
}

.process-grid article::after {
  background: #f2f4f7;
}

.process-grid span {
  display: block;
  margin-bottom: 54px;
  color: var(--accent);
  font-weight: 900;
}

.process-grid p {
  margin-bottom: 0;
}

.contact {
  margin-top: 54px;
  margin-bottom: 48px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: 42px;
  align-items: center;
  padding: 52px;
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(37, 87, 214, 0.68), transparent 58%),
    var(--ink);
  box-shadow: var(--shadow);
}

.contact .kicker {
  color: var(--champagne);
}

.contact h2 {
  max-width: 780px;
  color: #ffffff;
}

.contact p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-actions {
  display: grid;
  gap: 12px;
  align-self: center;
}

.contact-email {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: background 180ms ease, transform 180ms ease;
}

.contact-email:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.contact-email span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-email strong {
  color: #ffffff;
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.15;
  white-space: nowrap;
}

.footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 15px;
  font-weight: 760;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual,
  .service-card,
  .deliverable-grid article,
  .work-card,
  .process-grid article,
  .contact-panel {
    animation: rise-in 620ms ease both;
  }

  .hero-visual {
    animation-delay: 90ms;
  }

  .preview-toolbar strong {
    animation: pulse-ready 2.6s ease-in-out infinite;
  }

  .floating-note {
    animation: gentle-float 4s ease-in-out infinite;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@keyframes pulse-ready {
  0%,
  100% {
    box-shadow: 0 8px 18px rgba(37, 87, 214, 0.18);
  }

  50% {
    box-shadow: 0 8px 28px rgba(37, 87, 214, 0.34);
  }
}

@keyframes gentle-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

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

  .nav {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .hero,
  .intro,
  .section-heading,
  .restaurant,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

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

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .brand {
    justify-self: center;
  }

  .nav {
    justify-content: center;
  }

  .nav-cta {
    justify-self: stretch;
  }

  .interface-preview {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }
}

@media (max-width: 660px) {
  .site-header {
    top: 8px;
    width: min(100% - 20px, 1160px);
    margin-top: 8px;
  }

  .nav {
    overflow-x: auto;
    justify-content: flex-start;
    width: 100%;
  }

  .section {
    width: min(100% - 24px, 1160px);
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(31px, 10vw, 45px);
  }

  .hero-text,
  .intro p {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .preview-cards,
  .deliverable-grid,
  .service-grid,
  .process-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

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

  .interface-preview,
  .preview-main {
    min-height: auto;
  }

  .preview-hero {
    min-height: 240px;
  }

  .floating-note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .services,
  .work,
  .process,
  .restaurant,
  .deliverables {
    padding: 42px 22px;
  }

  .contact-panel {
    padding: 30px;
  }

  .order-header,
  .order-row,
  .order-note {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 430px) {
  .site-header {
    position: static;
  }

  .brand {
    justify-self: start;
  }

  .nav a {
    padding-inline: 11px;
  }

  .nav-cta {
    width: 100%;
  }

  h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .canvas-card,
  .contact-panel,
  .service-card,
  .deliverable-grid article,
  .process-grid article {
    border-radius: 10px;
  }

  .preview-main,
  .service-card,
  .deliverable-grid article,
  .process-grid article,
  .contact-panel {
    padding: 22px;
  }

  .contact-email {
    padding: 18px;
  }

  .contact-email strong {
    font-size: clamp(14px, 4.1vw, 18px);
  }
}
