@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500&family=Sofia+Sans:wght@400;500;600;700&display=swap");

:root {
  --ivory: #faf8f5;
  --ivory-soft: #fffdf8;
  --charcoal: #282828;
  --ink: #102932;
  --muted: #5e625f;
  --sage: #a5b59e;
  --sage-dark: #7d8f76;
  --taupe: #cdbba6;
  --taupe-soft: #ebe1d5;
  --rose: #d9a7a7;
  --gold: #d8b98a;
  --line: rgba(40, 40, 40, 0.14);
  --line-strong: rgba(40, 40, 40, 0.24);
  --shadow: 0 18px 50px rgba(40, 40, 40, 0.08);
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ui: "Sofia Sans", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--ui);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(40, 40, 40, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(40, 40, 40, 0.026) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.34;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

h1,
h2,
blockquote {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  font-size: clamp(42px, 5.2vw, 74px);
  line-height: 0.98;
}

h1 em {
  color: var(--sage-dark);
  font-style: italic;
  font-weight: 500;
}

h2 {
  font-size: clamp(32px, 3.3vw, 52px);
  line-height: 1.04;
}

h3 {
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 650;
}

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

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.86), rgba(250, 248, 245, 0.94)),
    var(--ivory);
}

.nav,
.hero,
.services,
.product,
.how,
.features,
.voice,
.metrics,
.pricing,
.testimonial,
.faq,
.closing,
.footer {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 96px);
}

.hero > *,
.product > *,
.how > *,
.voice > *,
.pricing > *,
.faq > *,
.closing > * {
  min-width: 0;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(18px);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo img {
  width: clamp(126px, 12vw, 178px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a,
.footer-links a,
.text-link {
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--sage-dark);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal);
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 0 28px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(40, 40, 40, 0.12);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  border-color: var(--ink);
  background: var(--ink);
  transform: translateY(-1px);
}

.button-small {
  min-height: 44px;
  padding-inline: 22px;
  font-size: 13px;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
}

.link-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.eyebrow {
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-heading {
  max-width: 620px;
}

.section-heading.center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-top: 18px;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(38px, 5vw, 88px);
  padding-top: 46px;
  padding-bottom: 34px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin-top: 18px;
}

.hero-lede {
  max-width: 510px;
  margin-top: 24px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}

.hero-copy .button-row {
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 13px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  line-height: 1.2;
}

.hero-proof span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
}

.hero-image {
  width: min(100%, 870px);
  margin-left: auto;
  transform: translateY(-34px);
}

.call-card {
  position: absolute;
  left: clamp(4px, 3vw, 42px);
  bottom: 86px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  min-width: 238px;
  border: 1px solid rgba(165, 181, 158, 0.54);
  border-radius: 8px;
  background: rgba(250, 248, 245, 0.88);
  padding: 16px 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.call-card img {
  width: 48px;
  height: 48px;
}

.call-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.call-card strong {
  display: block;
  margin-top: 2px;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
}

.reminder-card {
  left: clamp(0px, 3vw, 44px);
  right: auto;
  top: 58px;
  bottom: auto;
  min-width: 236px;
}

.reminder-card strong {
  font-size: 21px;
}

.services {
  padding-top: 54px;
  padding-bottom: 46px;
}

.motif-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.motif-row article {
  min-height: 178px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  padding: 22px 18px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.motif-row article:first-child {
  border-left: 0;
}

.motif-row img,
.feature-grid img,
.step-list img,
.testimonial img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.product {
  display: grid;
  grid-template-columns: minmax(300px, 0.44fr) minmax(620px, 1fr);
  gap: clamp(40px, 5vw, 82px);
  align-items: center;
  padding-top: 64px;
  padding-bottom: 68px;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.snapshot-card {
  min-height: 260px;
  border: 1px solid rgba(40, 40, 40, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  padding: 24px;
  box-shadow: var(--shadow);
}

.snapshot-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--sage);
  color: var(--ivory);
  font-family: var(--display);
  font-size: 34px;
}

.incoming {
  text-align: center;
}

.incoming p {
  margin-top: 18px;
  font-size: 13px;
}

.incoming h3 {
  margin-top: 5px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
}

.incoming > span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.call-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.call-actions span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: inset 0 0 0 12px rgba(255, 253, 248, 0.42);
}

.call-actions span:last-child {
  background: var(--rose);
}

.snapshot-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -24px -24px 22px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(135deg, var(--sage), #8fa286);
  color: var(--ivory);
  padding: 20px 22px;
}

.snapshot-top img {
  width: 32px;
  height: 32px;
}

.snapshot-top span {
  font-size: 14px;
  font-weight: 700;
}

.booking h3 {
  margin-bottom: 14px;
}

.booking p {
  font-size: 14px;
}

.booking button {
  width: 100%;
  min-height: 42px;
  margin-top: 24px;
  border: 0;
  border-radius: 8px;
  background: var(--taupe-soft);
  color: var(--charcoal);
  font-weight: 650;
}

.conversation {
  display: grid;
  align-content: center;
  gap: 13px;
}

.chat-line {
  max-width: 82%;
  border: 1px solid rgba(40, 40, 40, 0.1);
  border-radius: 8px;
  background: var(--ivory-soft);
  padding: 13px 14px;
  color: var(--charcoal);
  font-size: 13px;
  line-height: 1.35;
}

.chat-line.answer {
  justify-self: end;
  background: rgba(165, 181, 158, 0.42);
}

.how {
  display: grid;
  grid-template-columns: minmax(480px, 0.95fr) minmax(380px, 0.75fr);
  align-items: center;
  gap: clamp(44px, 6vw, 94px);
  padding-top: 64px;
  padding-bottom: 68px;
}

.how-art img {
  width: 100%;
}

.how-copy h2 {
  margin-top: 18px;
  max-width: 540px;
}

.step-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.step-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.step-list img {
  width: 62px;
  height: 62px;
}

.step-list p {
  margin-top: 5px;
  font-size: 15px;
  line-height: 1.5;
}

.features {
  padding-top: 62px;
  padding-bottom: 66px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-grid article {
  min-height: 258px;
  padding: 30px 28px;
  border-left: 1px solid var(--line);
}

.feature-grid article:first-child {
  border-left: 0;
}

.feature-grid h3 {
  margin-top: 20px;
}

.feature-grid p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.52;
}

.voice {
  display: grid;
  grid-template-columns: minmax(320px, 0.65fr) minmax(520px, 1fr);
  gap: clamp(42px, 6vw, 90px);
  padding-top: 66px;
  padding-bottom: 66px;
}

.voice-copy h2 {
  margin-top: 18px;
}

.voice-copy p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 20px;
}

.voice-lines {
  border-top: 1px solid var(--line-strong);
}

.voice-lines p {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
}

.voice-lines span {
  color: var(--sage-dark);
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 28px;
}

.metrics article {
  min-height: 112px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.metrics article:first-child {
  border-left: 0;
}

.metrics strong {
  color: var(--charcoal);
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 500;
}

.metrics span {
  color: var(--muted);
  font-size: 13px;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(340px, 0.48fr);
  align-items: center;
  gap: clamp(44px, 7vw, 112px);
  padding-top: 70px;
  padding-bottom: 72px;
}

.pricing-copy h2 {
  margin-top: 18px;
}

.pricing-copy p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 22px;
}

.price-panel {
  border: 1px solid rgba(40, 40, 40, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  padding: 30px;
  box-shadow: var(--shadow);
}

.plan-label {
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.price {
  margin-top: 16px;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: clamp(52px, 5vw, 74px);
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-family: var(--ui);
  font-size: 17px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.4;
}

.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.price-panel .button {
  width: 100%;
  margin-top: 30px;
}

.testimonial {
  display: grid;
  justify-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  text-align: center;
}

.testimonial img {
  width: 94px;
  height: 94px;
}

.testimonial blockquote {
  max-width: 850px;
  margin-top: 18px;
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 1.06;
}

.testimonial p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq {
  display: grid;
  grid-template-columns: minmax(330px, 0.66fr) minmax(520px, 1fr);
  gap: clamp(44px, 7vw, 104px);
  padding-top: 68px;
  padding-bottom: 70px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  color: var(--charcoal);
  font-family: var(--display);
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.2;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--sage-dark);
  font-family: var(--ui);
  font-weight: 600;
}

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

details p {
  max-width: 700px;
  padding: 0 42px 24px 0;
  font-size: 15px;
}

.closing {
  display: grid;
  grid-template-columns: minmax(350px, 0.68fr) minmax(580px, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  padding-top: 52px;
}

.closing-copy {
  max-width: 560px;
  padding-bottom: 54px;
}

.closing-copy h2 {
  margin-top: 18px;
}

.closing-copy p:not(.eyebrow) {
  margin-top: 20px;
}

.closing-copy .button-row {
  margin-top: 32px;
}

.closing-art {
  align-self: end;
}

.closing-art img {
  width: 100%;
}

.footer {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  background: rgba(255, 253, 248, 0.42);
}

.footer .brand-logo img {
  width: 148px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 38px;
  color: var(--muted);
  font-size: 13px;
}

.footer p {
  justify-self: end;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

  .hero,
  .product,
  .how,
  .voice,
  .pricing,
  .faq,
  .closing {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 430px;
  }

  .hero-image {
    margin-inline: auto;
    transform: translateY(-18px);
  }

  .call-card {
    left: 18px;
    bottom: 24px;
  }

  .reminder-card {
    left: 18px;
    right: auto;
    top: 16px;
    bottom: auto;
  }

  .motif-row,
  .feature-grid,
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .motif-row article,
  .feature-grid article,
  .metrics article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .motif-row article:nth-child(odd),
  .feature-grid article:nth-child(odd),
  .metrics article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

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

  .snapshot-card.conversation {
    grid-column: 1 / -1;
  }

  .how-art {
    order: 2;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer p {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .nav,
  .hero,
  .services,
  .product,
  .how,
  .features,
  .voice,
  .metrics,
  .pricing,
  .testimonial,
  .faq,
  .closing,
  .footer {
    padding-inline: 22px;
  }

  .nav {
    min-height: 70px;
    padding-inline: 16px;
    gap: 12px;
  }

  .nav .button-small {
    display: none;
  }

  .brand-logo img {
    width: 108px;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 11px;
    font-size: 11px;
  }

  h1 {
    font-size: clamp(38px, 10.8vw, 52px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(28px, 8.6vw, 37px);
    line-height: 1.08;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-copy .button-row {
    gap: 16px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-proof span {
    white-space: normal;
  }

  .hero-visual {
    min-height: 320px;
    overflow: hidden;
  }

  .hero-image {
    width: 100%;
    max-width: 430px;
    margin-inline: auto;
    transform: translate(28px, -12px);
  }

  .section-heading.center {
    max-width: 330px;
  }

  .call-card {
    display: none;
  }

  .services,
  .product,
  .how,
  .features,
  .voice,
  .pricing,
  .testimonial,
  .faq {
    padding-top: 48px;
    padding-bottom: 50px;
  }

  .motif-row,
  .feature-grid,
  .metrics,
  .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .motif-row article,
  .feature-grid article,
  .metrics article {
    border-right: 0 !important;
    border-left: 0;
  }

  .snapshot-card.conversation {
    grid-column: auto;
  }

  .motif-row article {
    min-height: 150px;
  }

  .voice-lines p {
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 23px;
  }

  .step-list article {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .step-list img {
    width: 52px;
    height: 52px;
  }

  .price-panel {
    padding: 24px;
  }

  .closing {
    gap: 12px;
    padding-top: 48px;
  }

  .closing-copy {
    padding-bottom: 22px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* Multi-industry landing additions. The original Nora visual system above remains the base. */
.industries,
.process-grid {
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 96px);
}

.industries {
  padding-top: 64px;
  padding-bottom: 66px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-card {
  min-height: 236px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border-left: 1px solid var(--line);
  transition: background 160ms ease, transform 160ms ease;
}

.industry-card:nth-child(4n + 1) {
  border-left: 0;
}

.industry-card:nth-child(n + 5) {
  border-top: 1px solid var(--line);
}

.industry-card:hover {
  background: rgba(255, 253, 248, 0.68);
  transform: translateY(-2px);
}

.industry-card strong {
  color: var(--charcoal);
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.06;
}

.industry-card > span:last-child {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 42px;
}

.process-grid article {
  min-height: 240px;
  padding: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-grid article:first-child {
  border-left: 0;
}

.process-grid h3,
.feature-grid h3 {
  margin-top: 20px;
}

.process-grid p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.52;
}

.how .process-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: none;
  margin-inline: 0;
  padding: 0;
}

.feature-grid article:nth-child(n + 5) {
  border-top: 1px solid var(--line);
}

.business-hero-image {
  width: min(100%, 960px);
  max-height: 610px;
  object-fit: contain;
  object-position: right center;
  transform: translateY(-18px);
}

.section-art {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  margin-top: 18px;
}

.section-art img {
  width: min(100%, 980px);
  max-height: 520px;
  object-fit: contain;
}

.asset-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.asset-icon-small {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.industry-card .asset-icon,
.process-grid .asset-icon {
  justify-self: start;
}

.motif-row .asset-icon {
  justify-self: center;
}

.snapshot-top .asset-icon-small {
  width: 32px;
  height: 32px;
}

.card-top {
  top: 56px;
  bottom: auto;
  left: 13%;
}

.card-bottom {
  left: 16%;
  bottom: 78px;
}

.closing-art img {
  width: min(100%, 820px);
  max-height: 540px;
  object-fit: contain;
}

.industry-menu {
  position: relative;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.industry-menu summary {
  padding: 0;
  font-family: var(--ui);
  font-size: inherit;
  letter-spacing: inherit;
  list-style: none;
}

.industry-menu summary::after {
  content: "";
}

.industry-menu div {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 50;
  width: 210px;
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory-soft);
  box-shadow: var(--shadow);
  padding: 8px;
}

.industry-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  letter-spacing: 0;
  text-transform: none;
}

.industry-menu a:hover {
  background: var(--taupe-soft);
}

.sound-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 48px;
  margin-top: 28px;
}

.sound-wave span {
  width: 3px;
  border-radius: 99px;
  background: var(--sage-dark);
}

.sound-wave span:nth-child(1),
.sound-wave span:nth-child(5) {
  height: 18px;
}

.sound-wave span:nth-child(2),
.sound-wave span:nth-child(4) {
  height: 34px;
}

.sound-wave span:nth-child(3) {
  height: 45px;
}

@media (max-width: 1120px) {
  .industry-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-card,
  .industry-card:nth-child(4n + 1),
  .process-grid article {
    border-left: 0;
  }

  .industry-card:nth-child(odd),
  .process-grid article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .industry-card:nth-child(n + 3),
  .process-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .business-hero-image {
    width: min(100%, 760px);
    margin-inline: auto;
    transform: translateY(-12px);
  }

  .section-art img,
  .closing-art img {
    max-height: 430px;
  }
}

@media (max-width: 720px) {
  .industries,
  .process-grid {
    padding-inline: 22px;
  }

  .industries {
    padding-top: 48px;
    padding-bottom: 50px;
  }

  .industry-grid,
  .process-grid,
  .how .process-grid {
    grid-template-columns: 1fr;
  }

  .industry-card,
  .industry-card:nth-child(odd),
  .process-grid article,
  .process-grid article:nth-child(odd) {
    border-right: 0;
    border-left: 0;
  }

  .industry-card {
    min-height: 190px;
    padding: 24px 0;
  }

  .process-grid {
    padding-top: 34px;
  }

  .process-grid article {
    min-height: 190px;
    padding: 24px 0;
  }

  .industry-menu {
    display: none;
  }

  .business-hero-image {
    width: 132%;
    max-width: none;
    max-height: 360px;
    margin-left: -30%;
    transform: translateY(-4px);
  }

  .section-art {
    margin-top: 0;
  }

  .section-art img,
  .closing-art img {
    width: 120%;
    max-width: none;
    max-height: 330px;
    margin-left: -10%;
  }

  .industry-card .asset-icon,
  .process-grid .asset-icon {
    width: 68px;
    height: 68px;
  }
}
