/* Signet Artists — signetartists.com
   Ported from the Tailwind build 2026-08-01. Same tokens, same design.
   Light, high-contrast, information-first: this reader scans a rate table
   between two other tasks. */

:root {
  --paper: #fbfaf7;
  --paper-sunk: #f2efe9;
  --rule: #dfdad1;
  --ink: #16150f;
  --ink-soft: #4a473d;
  --ink-faint: #7d7a6e;
  --brass: #8a6d2f;

  --display: "Fraunces", ui-serif, Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --wrap: 64rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

h1, h2, h3, p, ul, ol, dl, dd, figure {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* Unresolved config values carry a dotted underline so open decisions stay
   visible while browsing. */
[data-tbd="true"] {
  text-decoration: underline dotted var(--brass);
  text-underline-offset: 0.3em;
}

/* Tabular figures everywhere numbers sit in a column — rates, sizes, hours. */
.tnum,
.tnum td,
.tnum th {
  font-variant-numeric: tabular-nums;
}

/* ---------------------------------------------------------------- layout */

/* padding-left/right rather than the shorthand: the responsive override below
   would otherwise reset the vertical padding that .header-inner sets. */
.wrap {
  box-sizing: content-box;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section--top {
  padding-top: 3rem;
}

.section--ruled {
  border-top: 1px solid var(--rule);
}

.section--sunk {
  background: var(--paper-sunk);
}

.stack > * + * {
  margin-top: 1rem;
}

/* ------------------------------------------------------------ typography */

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brass);
}

.h1 {
  margin-top: 1rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1.08;
  color: var(--ink);
}

.h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.15;
  color: var(--ink);
}

.h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--ink);
}

.heading {
  max-width: 42rem;
}

.heading .h2 {
  margin-top: 0.75rem;
}

.lede {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.prose {
  margin-top: 1rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.prose strong {
  font-weight: 500;
  color: var(--ink);
}

.note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--ink-faint);
}

.hero-lede {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  cursor: pointer;
}

.btn:hover {
  background: var(--brass);
  border-color: var(--brass);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}

.btn--outline:hover {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn--sm {
  padding: 0.5rem 1rem;
}

.btn-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* --------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--rule);
  background: rgba(251, 250, 247, 0.95);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.wordmark {
  font-family: var(--display);
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--ink);
}

.nav-desktop a.btn {
  color: var(--paper);
}

.nav-desktop a.btn:hover {
  color: var(--paper);
}

.nav-toggle {
  border: 0;
  background: none;
  padding: 0;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--rule);
  padding: 0 1.5rem 1.25rem;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.nav-mobile a.nav-mobile-cta {
  margin-top: 1rem;
  border-bottom: 0;
  text-align: center;
  color: var(--paper);
}

/* ----------------------------------------------------------------- grids */

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

.split {
  display: grid;
  gap: 2.5rem;
}

.split--center {
  align-items: center;
}

.card-grid {
  display: grid;
  gap: 1px;
  margin-top: 2.5rem;
  border: 1px solid var(--rule);
  background: var(--rule);
}

.card {
  background: var(--paper);
  padding: 1.5rem;
}

.card-grid--2 .card {
  padding: 1.75rem;
}

.card-grid--2 .card h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--ink);
}

.card-grid--2 .card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ------------------------------------------------------------ media slot */

.media-slot {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  background: var(--paper-sunk);
}

.media-slot p {
  padding: 0 1.5rem;
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
}

.media-block {
  margin-top: 2.5rem;
}

/* ------------------------------------------------------------------ acts */

.act-kind {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brass);
}

.act-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ink);
}

.act-heading {
  margin-top: 0.5rem;
}

.act-sizes {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--ink-faint);
}

.act-blurb {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.tag-list {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.tag-label {
  margin-top: 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
}

/* ------------------------------------------------------------ spec lists */

.spec-list {
  margin-top: 2.5rem;
  display: grid;
  row-gap: 1rem;
}

.spec-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.spec-list .dash {
  margin-top: 0.7rem;
  height: 1px;
  width: 1rem;
  flex-shrink: 0;
  background: var(--brass);
}

.spec-list--compact {
  margin-top: 1.5rem;
}

/* ------------------------------------------------------------- data lists */

.def-list {
  margin-top: 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.def-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rule);
}

.def-row:last-child {
  border-bottom: 0;
}

.def-row dt {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.def-row dd {
  flex-shrink: 0;
  font-size: 0.875rem;
  color: var(--ink);
}

.def-list--stack .def-row {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem 0;
}

.def-list--stack dt {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}

.def-list--stack dd {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.faq-list {
  margin-top: 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.faq-row {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}

.faq-row:last-child {
  border-bottom: 0;
}

.faq-row dt {
  font-family: var(--display);
  font-size: 1.125rem;
  line-height: 1.35;
  color: var(--ink);
}

.faq-row dd {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------------- tables */

.table-scroll {
  margin-top: 2rem;
  overflow-x: auto;
}

.rate-table {
  width: 100%;
  min-width: 30rem;
  border-collapse: collapse;
  text-align: left;
}

.rate-table--full {
  min-width: 42rem;
}

.rate-table th {
  padding: 0.5rem 1rem 0.5rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brass);
  white-space: nowrap;
}

.rate-table td {
  padding: 0.75rem 1rem 0.75rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.875rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

.rate-table td.rate-size {
  color: var(--ink);
}

/* ------------------------------------------------------------------ form */

.form-grid {
  display: grid;
  gap: 1.5rem;
}

.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
}

.field .req {
  color: var(--brass);
}

.field input,
.field select,
.field textarea {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: var(--paper);
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--ink);
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-faint);
}

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

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-details {
  margin-top: 2.5rem;
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
  display: grid;
  row-gap: 1.5rem;
}

.contact-details dt {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brass);
}

.contact-details dd {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.contact-details a:hover {
  color: var(--ink);
}

.panel {
  border: 1px solid var(--rule);
  background: var(--paper-sunk);
  padding: 2rem;
}

/* ---------------------------------------------------------------- footer */

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--rule);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-brand {
  max-width: 20rem;
}

.footer-line {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--ink-faint);
}

.footer-cols {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-list {
  margin-top: 0.75rem;
  display: grid;
  row-gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.footer-list a:hover {
  color: var(--ink);
}

.footer-meta {
  margin-top: 2.5rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--ink-faint);
}

/* ----------------------------------------------------------- breakpoints */

@media (min-width: 640px) {
  .wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .nav-mobile {
    padding-left: 2rem;
    padding-right: 2rem;
  }

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

  .spec-list--cols {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
  }

  .footer-cols {
    flex-direction: row;
    gap: 3.5rem;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }

  .section--top {
    padding-top: 4rem;
  }

  .h1 {
    font-size: 3rem;
  }

  .h2 {
    font-size: 2.25rem;
  }

  .lede {
    font-size: 1.125rem;
  }

  .nav-desktop {
    display: flex;
  }

  .nav-toggle,
  .nav-mobile {
    display: none;
  }

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

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

  .split--two {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .faq-row {
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
  }

  .def-list--stack .def-row {
    grid-template-columns: 1fr 1.6fr;
    gap: 2.5rem;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .close-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .close-row .btn-row {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 3.5rem;
  }

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

  .split--flip > *:first-child {
    order: 2;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
