
/* /apps/web/app/auth-layout.css */
.frame-auth,
.frame-signup {
  --auth-ink: #233e35;
  --auth-paper: #faf8f2;
  --auth-moss: #d9e3d7;
  --auth-clay: #ad6148;
  color: var(--auth-ink);
  font-family: 'DM Sans Variable', 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}
.frame-auth {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 100svh;
  background: var(--auth-paper);
}
.frame-auth a:focus-visible,
.frame-signup a:focus-visible,
.frame-auth button:focus-visible,
.frame-signup button:focus-visible {
  outline: 3px solid var(--auth-clay);
  outline-offset: 5px;
}
.frame-auth-skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  transform: translateY(-180%);
  padding: 12px 18px;
  background: var(--auth-paper);
  color: var(--auth-ink);
}
.frame-auth-skip:focus {
  transform: none;
}
.frame-auth-story {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 780px;
  padding: 46px clamp(28px, 4.8vw, 84px) 30px;
  color: #fffdf6;
  overflow: hidden;
  isolation: isolate;
  background: #233e35;
}
.frame-auth-story::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(15 33 25 / 36%),
    rgb(15 33 25 / 12%) 30%,
    rgb(15 33 25 / 84%)
  );
  z-index: -1;
}
.frame-auth-photograph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
  z-index: -2;
}
.frame-auth-brand {
  width: fit-content;
  color: inherit;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -2.5px;
  text-decoration: none;
}
.frame-auth-brand sup {
  font-size: 11px;
  margin-left: 4px;
  vertical-align: top;
  line-height: 3;
  letter-spacing: 0;
}
.frame-auth-story-copy {
  margin-top: auto;
  padding: 100px 0 58px;
}
.frame-auth-overline,
.frame-auth-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.6;
}
.frame-auth-story h2 {
  margin: 28px 0 24px;
  font:
    400 clamp(48px, 5.2vw, 82px)/1.04 Georgia,
    serif;
  letter-spacing: -0.045em;
  color: inherit;
}
.frame-auth-story h2 em {
  font-weight: 400;
  color: #e5e7d2;
}
.frame-auth-story-copy > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #ebece3;
}
.frame-auth-photo-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgb(250 248 242 / 35%);
  font-size: 9px;
  letter-spacing: 0.14em;
}
.frame-auth-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 46px clamp(26px, 6vw, 100px) 30px;
}
.frame-auth-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  min-height: 44px;
  font-size: 12px;
  color: var(--auth-ink);
  text-decoration: none;
}
.frame-auth-back:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.frame-auth-form {
  width: 100%;
  max-width: 410px;
  margin: 64px auto;
}
.frame-auth-emblem {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 32px;
  border: 1px solid #b8c4b5;
  border-radius: 50%;
  color: var(--auth-ink);
}
.frame-auth-kicker {
  color: #5e715f;
  margin: 0 0 17px;
}
.frame-auth-form h1,
.frame-signup h1 {
  color: var(--auth-ink);
  font:
    400 clamp(38px, 3.8vw, 58px)/1.09 Georgia,
    serif;
  letter-spacing: -0.045em;
  margin: 0 0 22px;
}
.frame-auth-form h1 em,
.frame-signup h1 em {
  color: var(--auth-clay);
  font-weight: 400;
}
.frame-auth-intro {
  font-size: 14px;
  line-height: 1.8;
  color: #657064;
  margin: 0 0 30px;
}
.frame-auth .mantine-Button-root,
.frame-signup .frame-signup-submit {
  min-height: 50px;
  height: auto;
  border-radius: 4px;
  background: var(--auth-ink);
  color: #faf8f2;
  border: 1px solid var(--auth-ink);
  font:
    500 13px/1.4 'DM Sans Variable',
    'DM Sans',
    sans-serif;
  padding: 14px 20px;
}
.frame-auth .mantine-Button-root:hover,
.frame-signup .frame-signup-submit:hover {
  background: #345244;
}
.frame-auth .mantine-Button-label {
  white-space: normal;
}
.frame-auth .mantine-Input-input {
  min-height: 50px;
  border: 1px solid #c6cec0;
  border-radius: 4px;
  background: #fffefa;
  color: var(--auth-ink);
  font-size: 14px;
}
.frame-auth .mantine-Input-input:focus {
  border-color: var(--auth-ink);
  outline: 2px solid #d9e3d7;
  outline-offset: 1px;
}
.frame-auth .mantine-Input-input::placeholder {
  color: #657064;
  opacity: 1;
}
.frame-auth .mantine-InputWrapper-label {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 9px;
}
.frame-auth .mantine-InputWrapper-description {
  overflow-wrap: anywhere;
  color: #657064;
  margin-top: 7px;
  font-size: 12px;
}
.frame-auth-notice {
  padding: 18px 20px;
  border: 1px solid #d1d9cb;
  border-left: 3px solid #8d9c82;
  background: #eef1e8;
  font-size: 13px;
  line-height: 1.7;
}
.frame-auth-notice-error {
  border-left-color: #ad6148;
  background: #f4e9e2;
}
.frame-auth-switch {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #dce0d4;
  font-size: 13px;
  line-height: 1.9;
  color: #657064;
}
.frame-auth-switch a {
  display: inline-block;
  padding: 7px 3px;
  color: var(--auth-ink);
  font-weight: 500;
  text-underline-offset: 4px;
}
.frame-auth-security,
.frame-signup .frame-auth-security {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #657064;
  font-size: 11px;
  line-height: 1.7;
  margin-top: 20px;
}
.frame-auth-security svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.frame-auth-footnote {
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #657064;
  margin: 0;
}
.frame-auth-step {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #657064;
}
.frame-auth-step span {
  width: 24px;
  height: 1px;
  background: #c7cebf;
}
.frame-auth-step strong {
  font-weight: 500;
  color: var(--auth-ink);
}
.frame-signup {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 8vw, 128px);
  max-width: 1400px;
  padding: 92px 6vw 108px;
  margin: auto;
}
.frame-signup-copy {
  min-width: 0;
}
.frame-signup h1 {
  font-size: clamp(48px, 5.7vw, 82px);
  margin-bottom: 26px;
}
.frame-signup-copy > p:not(.frame-auth-kicker) {
  max-width: 410px;
  color: #657064;
  line-height: 1.8;
  font-size: 14px;
}
.frame-signup-photo {
  margin: 40px 0 0;
}
.frame-signup-photo img {
  display: block;
  width: 100%;
  max-height: 340px;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 2px 2px 90px 2px;
}
.frame-signup-photo figcaption {
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-top: 14px;
  color: #657064;
}
.frame-signup-card {
  min-width: 0;
  align-self: center;
  padding: clamp(24px, 3.5vw, 52px);
  background: #f0f2e8;
  border: 1px solid #d8decf;
  border-radius: 6px;
}
.frame-signup-card h2 {
  font:
    400 32px/1.15 Georgia,
    serif;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
  color: var(--auth-ink);
}
.frame-signup-card > p {
  font-size: 13px;
  line-height: 1.8;
  color: #657064;
}
.frame-signup-steps {
  list-style: none;
  margin: 30px 0;
  padding: 0;
  counter-reset: signup-step;
}
.frame-signup-steps li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid #d3daca;
  counter-increment: signup-step;
  font-size: 12px;
  line-height: 1.8;
  color: #52624e;
}
.frame-signup-steps li::before {
  content: '0' counter(signup-step);
  font:
    italic 20px/1.5 Georgia,
    serif;
  color: #99533d;
}
.frame-signup-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  cursor: pointer;
}
.frame-signup-submit svg {
  flex-shrink: 0;
}
.frame-signup-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}
.frame-signup .frame-auth-switch {
  font-size: 12px;
  margin-bottom: 0;
}
.frame-signup-pricing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 8px;
  color: var(--auth-ink);
  font-size: 12px;
  text-underline-offset: 4px;
}
.frame-native-form {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-top: 26px;
}
.frame-native-form label {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--auth-ink);
}
.frame-native-form input:not([type='hidden']) {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  margin: 0 0 20px;
  padding: 12px 14px;
  border: 1px solid #bdc7b6;
  border-radius: 4px;
  background: #fffefa;
  color: var(--auth-ink);
  font:
    400 16px/1.5 'DM Sans Variable',
    sans-serif;
}
.frame-native-form input::placeholder {
  color: #657064;
  opacity: 1;
}
.frame-native-form input:focus-visible {
  border-color: var(--auth-ink);
  outline: 2px solid #8d9c82;
  outline-offset: 2px;
}
.frame-auth-submit,
.frame-auth-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 50px;
  padding: 14px 18px;
  border: 1px solid var(--auth-ink);
  border-radius: 4px;
  font:
    500 13px/1.5 'DM Sans Variable',
    sans-serif;
  text-align: center;
  text-decoration: none;
  background: var(--auth-ink);
  color: var(--auth-paper);
  cursor: pointer;
}
.frame-auth-submit svg,
.frame-auth-secondary svg {
  flex-shrink: 0;
}
.frame-auth-submit:hover {
  background: #345244;
}
.frame-auth-secondary,
.frame-auth .frame-auth-provider .mantine-Button-root {
  color: var(--auth-ink);
  background: transparent;
  border-color: #b8c4b5;
}
.frame-auth-secondary:hover,
.frame-auth .frame-auth-provider .mantine-Button-root:hover {
  background: #e4eadd;
}
.frame-auth-submit:disabled,
.frame-auth-secondary:disabled {
  opacity: 0.65;
  cursor: wait;
}
.frame-auth-provider {
  margin-top: 16px;
}
.frame-auth-forgot {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: -12px 0 12px;
  color: var(--auth-ink);
  font-size: 12px;
  text-underline-offset: 4px;
}
.frame-auth-input-help {
  color: #657064;
  font-size: 12px;
  line-height: 1.7;
  margin: 14px 0;
}
.frame-native-form .frame-auth-input-help {
  margin: -12px 0 20px;
}
.frame-signup-card > .frame-auth-security {
  margin: 20px 0 18px;
}
.frame-auth-email {
  overflow-wrap: anywhere;
}
.frame-auth-subheading {
  margin: 24px 0 0;
  font:
    400 26px/1.2 Georgia,
    serif;
  letter-spacing: -0.025em;
}
.frame-auth-recovery-settings {
  margin-top: 32px;
  padding-top: 12px;
  border-top: 1px solid #d3daca;
}
.frame-account-recovery {
  margin: 24px 0;
  padding: 24px 0 0;
  border-top: 1px solid #c6cebd;
}
.frame-account-recovery h2 {
  font:
    400 29px/1.2 Georgia,
    serif;
  margin: 18px 0 14px;
  letter-spacing: -0.025em;
}
.frame-account-recovery p {
  font-size: 13px;
  line-height: 1.8;
  color: #52624e;
}
.frame-account-recovery-value {
  display: block;
  padding: 20px 16px;
  background: #fffefa;
  border: 1px solid #bdc7b6;
  border-radius: 4px;
  overflow-wrap: anywhere;
  word-break: break-word;
  user-select: all;
  font-size: 13px;
  line-height: 1.8;
}
.frame-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 24px;
}
.frame-auth-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid #b8c4b5;
  border-radius: 4px;
  background: transparent;
  color: var(--auth-ink);
  font:
    500 11px/1.5 'DM Sans Variable',
    sans-serif;
  cursor: pointer;
}
.frame-auth-actions button:hover {
  background: #e4eadd;
}
.frame-auth-secret-list {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.frame-auth-secret-list .frame-account-recovery-value {
  padding: 12px;
  font-size: 12px;
}
.frame-auth-two-factor {
  padding-bottom: 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid #d3daca;
}
.frame-auth-two-factor-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.frame-auth-two-factor-title svg {
  flex-shrink: 0;
}
.frame-auth-two-factor-title .frame-auth-subheading {
  margin-top: 0;
}
.frame-auth-factor-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #eef1e8;
  border: 1px solid #d1d9cb;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.7;
}
.frame-auth-factor-status svg {
  flex-shrink: 0;
}
.frame-auth-restart {
  margin-top: 12px;
}
@media (max-width: 900px) {
  .frame-auth {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  }
  .frame-auth-story {
    padding-inline: 28px;
  }
  .frame-auth-story h2 {
    font-size: 52px;
  }
  .frame-auth-content {
    padding-inline: 28px;
  }
  .frame-signup {
    gap: 36px;
    padding: 64px 5vw 80px;
  }
  .frame-signup-card {
    padding: 28px;
  }
}
@media (max-width: 680px) {
  .frame-auth {
    display: flex;
    flex-direction: column;
  }
  .frame-auth-story {
    min-height: 240px;
    padding: 20px 24px;
  }
  .frame-auth-brand {
    font-size: 30px;
  }
  .frame-auth-story-copy {
    padding: 22px 0 5px;
  }
  .frame-auth-story h2 {
    font-size: 36px;
    margin: 0;
  }
  .frame-auth-story h2 br {
    display: none;
  }
  .frame-auth-story h2 em {
    display: block;
    margin-top: 4px;
  }
  .frame-auth-overline,
  .frame-auth-story-copy > p,
  .frame-auth-photo-caption {
    display: none;
  }
  .frame-auth-photograph {
    object-position: center 44%;
  }
  .frame-auth-content {
    padding: 18px 24px 26px;
    flex: 1;
  }
  .frame-auth-form {
    margin: 28px auto 42px;
  }
  .frame-auth-emblem {
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
  }
  .frame-auth-form h1 {
    font-size: 42px;
  }
  .frame-auth .mantine-Input-input {
    font-size: 16px;
  }
  .frame-auth-step {
    margin-bottom: 22px;
  }
  .frame-signup {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding: 42px 24px 60px;
  }
  .frame-signup h1 {
    font-size: 58px;
  }
  .frame-signup-photo {
    display: none;
  }
  .frame-signup-card {
    padding: 24px;
  }
}
@media (max-width: 360px) {
  .frame-auth-content,
  .frame-auth-story {
    padding-inline: 20px;
  }
  .frame-auth-form h1 {
    font-size: 38px;
  }
  .frame-auth-story h2 {
    font-size: 32px;
  }
  .frame-signup {
    padding-inline: 20px;
  }
  .frame-signup h1 {
    font-size: 49px;
  }
  .frame-signup-card {
    padding: 20px;
  }
}


/* /apps/web/app/service-site.css */
.service-site {
  --ink: #233e35;
  --cream: #faf8f2;
  --accent: #d9e3d7;
  --service-line: #233e3526;
  --service-clay: #ad6148;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans Variable', sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
.service-site * {
  box-sizing: border-box;
}
.service-site a {
  color: inherit;
}
.service-site :is(a, button, summary):focus-visible {
  outline: 3px solid #9a502d;
  outline-offset: 5px;
  border-radius: 2px;
}
.service-site :where(h1, h2, h3, p) {
  margin: 0;
}
.service-site :where(h1, h2) {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.service-site em {
  font-weight: 400;
}
.service-site :where(h1) {
  font-size: clamp(58px, 7.1vw, 104px);
}
.service-site :where(h2) {
  font-size: clamp(36px, 4.4vw, 62px);
}
.service-site :where(h3) {
  font-family: Georgia, serif;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 400;
  margin: 14px 0;
}
.service-header,
.service-footer {
  max-width: 1400px;
  margin: auto;
  padding: 24px 6%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.service-brand {
  font-size: 38px;
  letter-spacing: -3px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
}
.service-brand span {
  font-size: 12px;
  vertical-align: top;
  letter-spacing: 0;
  margin-left: 3px;
}
.service-header nav {
  margin-left: auto;
  display: flex;
  gap: 30px;
  align-items: center;
}
.service-header nav > a,
.service-footer nav > a {
  text-decoration: none;
  font-size: 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.service-header nav > a[aria-current='page'],
.service-footer nav > a[aria-current='page'],
.service-header nav > a:hover,
.service-footer nav > a:hover {
  text-decoration: underline;
}
.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--ink);
  color: white !important;
  padding: 16px 24px;
  border: 0;
  border-radius: 3px;
  font: inherit;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  min-height: 52px;
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}
.service-button:hover {
  background: #39584b;
  box-shadow: 0 4px 14px #233e351a;
}
.service-small {
  padding: 11px 17px;
  font-size: 13px;
}
.service-kicker {
  font-size: 11px !important;
  letter-spacing: 0.17em;
  font-weight: 600;
  line-height: 1.8;
}
.service-hero {
  max-width: 1400px;
  margin: auto;
  padding: 52px 6% 86px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7%;
  align-items: center;
}
.service-hero-copy h1 {
  margin: 24px 0;
}
.service-hero-copy > p:not(.service-kicker) {
  max-width: 400px;
  margin-bottom: 28px;
  font-size: 17px;
}
.service-text-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 14px;
  text-underline-offset: 6px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  min-height: 44px;
  padding: 7px 0;
  font-weight: 500;
}
.service-hero-image {
  height: 630px;
  position: relative;
  margin: 0 0 0 14px;
  padding: 14px;
  border: 1px solid var(--service-line);
  border-radius: 220px 220px 3px 3px;
}
.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 210px 210px 2px 2px;
}
.service-hero-image figcaption {
  position: absolute;
  bottom: 40px;
  left: -36px;
  background: #e3e9db;
  border: 6px solid var(--cream);
  padding: 24px 32px;
  box-shadow: 0 5px 20px #14251b10;
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.25;
  transform: rotate(-4deg);
}
.service-features {
  padding: 100px 6%;
  background: #eeeee5;
  border-top: 1px solid var(--service-line);
  border-bottom: 1px solid var(--service-line);
}
.service-section-heading {
  max-width: 1230px;
  margin: 0 auto 48px;
}
.service-section-heading h2 {
  margin-top: 16px;
}
.service-feature-grid {
  max-width: 1230px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.service-feature-grid article > img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 24px;
}
.service-feature-grid p {
  font-size: 15px;
  max-width: 360px;
}
.service-business {
  max-width: 1230px;
  margin: 0 auto;
  padding: 110px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  align-items: center;
}
.service-business h2 {
  margin-top: 18px;
}
.service-business .service-kicker {
  margin-top: 20px;
}
.service-business ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 15px;
  margin: 28px 0;
}
.service-business li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}
.service-business li svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.service-cta {
  text-align: center;
  padding: 84px 24px 90px;
  background: #dce5d7;
  border-block: 1px solid var(--service-line);
  position: relative;
}
.service-cta h2 {
  margin: 20px 0 30px;
}
.service-cta > p:last-child {
  font-size: 13px;
  margin: 24px auto 0;
  max-width: 380px;
}
.service-footer {
  flex-wrap: wrap;
  padding-top: 48px;
  padding-bottom: 32px;
}
.service-footer p,
.service-footer small {
  font-size: 12px;
}
.service-footer nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.service-footer small {
  width: 100%;
  opacity: 0.8;
  border-top: 1px solid var(--service-line);
  padding-top: 22px;
}
.service-skip {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  background: white;
  padding: 8px 16px;
}
.service-skip:focus {
  top: 10px;
}
.service-header {
  border-bottom: 1px solid var(--service-line);
}
.service-hero-copy h1 em {
  color: var(--service-clay);
}
.service-hero-copy > .service-button {
  max-width: 100%;
  text-align: left;
}
.service-button svg,
.service-text-link svg {
  flex-shrink: 0;
  transition: transform 180ms ease;
}
.service-button:hover svg,
.service-text-link:hover svg {
  transform: translate(2px, -2px);
}
.service-text-link:hover {
  color: #824731;
}
.service-image-label {
  position: absolute;
  inset: auto 14px -38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.16em;
}
.service-index {
  max-width: 1230px;
  margin: 0 auto;
  padding: 28px 0 32px;
  display: flex;
  align-items: center;
  gap: 48px;
  border-top: 1px solid var(--service-line);
}
.service-index > p {
  flex-shrink: 0;
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1.3;
}
.service-index ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.service-index li {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-index li span {
  color: #805440;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.service-feature-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.13em;
}
.service-feature-grid article {
  min-width: 0;
}
.service-feature-grid article:nth-child(2) > img {
  border-radius: 160px 160px 3px 3px;
}
.service-feature-grid .service-text-link {
  margin-top: 18px;
  font-size: 13px;
}
.service-cta-mark {
  margin-bottom: 24px;
  color: #49644d;
}
.service-site main:focus {
  outline: none;
}
@media (max-width: 1400px) {
  .service-index {
    margin-inline: 6%;
  }
}
@media (min-width: 761px) and (max-width: 1000px) {
  .service-header nav {
    gap: 20px;
  }
  .service-hero {
    gap: 5%;
  }
  .service-hero-image {
    height: 550px;
  }
  .service-hero-image figcaption {
    left: -15px;
    padding: 20px;
    font-size: 21px;
  }
  .service-feature-grid {
    gap: 24px;
  }
  .service-feature-grid article > img {
    height: 250px;
  }
  .service-index {
    gap: 30px;
  }
  .service-index ol {
    gap: 18px;
  }
}
@media (max-width: 760px) {
  .service-header {
    padding: 22px 6%;
    gap: 16px;
    flex-wrap: wrap;
  }
  .service-header nav {
    gap: 16px;
    flex-wrap: wrap;
  }
  .service-header nav .service-small {
    display: none;
  }
  .service-brand {
    font-size: 34px;
  }
  .service-hero {
    grid-template-columns: 1fr;
    padding-top: 25px;
    gap: 40px;
    padding-bottom: 65px;
  }
  .service-hero-image {
    height: 460px;
    max-height: none;
    padding: 10px;
    margin-left: 20px;
  }
  .service-hero-image figcaption {
    left: -20px;
    font-size: 22px;
    padding: 20px 24px;
  }
  .service-hero-copy .service-button {
    font-size: 14px;
    padding: 16px;
  }
  .service-index {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-block: 28px;
  }
  .service-index ol {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .service-index > p {
    font-size: 24px;
  }
  .service-features {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .service-feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-feature-grid article > img {
    height: 300px;
  }
  .service-feature-grid p {
    max-width: none;
  }
  .service-business {
    grid-template-columns: 1fr;
    padding: 65px 6%;
    gap: 30px;
  }
  .service-footer {
    gap: 20px;
  }
  .service-footer nav {
    margin-left: 0;
    flex-wrap: wrap;
    width: 100%;
  }
}
@media (max-width: 360px) {
  .service-header {
    gap: 8px;
  }
  .service-header nav {
    gap: 12px;
  }
  .service-header nav > a {
    font-size: 12px;
  }
  .service-brand {
    font-size: 32px;
  }
  .service-hero-image {
    height: 390px;
    margin-left: 10px;
  }
  .service-hero-image figcaption {
    left: -10px;
    font-size: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .service-site * {
    scroll-behavior: auto;
    transition: none;
  }
}
