@charset "UTF-8";
/* File: /src/scss/main.scss
   Entry point that compiles to /dist/css/main.css
*/
/* File: /src/scss/_fonts.scss
   Font-face declarations (served from /assets/fonts)
   NOTE: main.css outputs to /dist/css/main.css, so paths are ../../assets/...
*/
/* =========================
   PRIMARY UI SANS - Haffer
   ========================= */
@font-face {
  font-family: "Haffer";
  src:
    url("/static/fonts/Haffer-Light.woff2") format("woff2"),
    url("/static/fonts/Haffer-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Haffer";
  src:
    url("/static/fonts/Haffer-Regular.woff2") format("woff2"),
    url("/static/fonts/Haffer-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Haffer";
  src:
    url("/static/fonts/Haffer-SemiBold.woff2") format("woff2"),
    url("/static/fonts/Haffer-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* =========================
   SECONDARY / EDITORIAL - Season Mix
   ========================= */
@font-face {
  font-family: "Season Mix";
  src:
    url("/static/fonts/SeasonMix-Light.woff2") format("woff2"),
    url("/static/fonts/SeasonMix-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Season Mix";
  src:
    url("/static/fonts/SeasonMix-Regular.woff2") format("woff2"),
    url("/static/fonts/SeasonMix-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* File: /src/scss/_variables.scss
   Tokens: colors, spacing, rules, breakpoints, type
*/
/* Colors */
/* Spacing scale */
/* 1px rule */
/* Layout */
/* =========================
   TYPOGRAPHY
   ========================= */
/* System mono ONLY */
/* Breakpoints */
/* File: /src/scss/_mixins.scss
   Mixins: media queries, focus rings
*/
/* File: /src/scss/_reset.scss
   Minimal reset (keep the print/grid feel)
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%; /* 16px */
}

body {
  margin: 0;
  font-family:
    "Haffer",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  color: #111;
  background: #f6f2ea;
  line-height: 1.35;
}

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

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

button,
input {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ----------------
   Normalize <hr>
   ----------------
   Prevent browser defaults from causing odd height/margins.
   Always render as a single 1px rule using your token.
*/
hr {
  border: 0;
  height: 0;
  border-top: 0.0625rem solid #111;
  margin: 1.5rem 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 3rem 0 0;
}

sub {
  vertical-align: top;
  font-size: 1rem;
}

/* File: /src/scss/_base.scss
   App grid + shared primitives + components-page typography (tt-prose)
*/
body {
  font-family:
    "Haffer",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  border: 0.0625rem solid #111;
}

section {
  padding-bottom: 2rem;
}

.tt-page {
  min-height: 100vh;
}

/* App grid (main column + rail column) */
.tt-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 3.25rem;
}

.tt-app__main {
  min-width: 0;
}

.tt-main,
.tt-padding {
  padding: 1.5rem 1.5rem;
}

.tt-stage {
  min-height: 10rem;
}

/* ---------------- Buttons (general) ---------------- */
.tt-btn {
  font-family:
    "Haffer",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  border: 0.0625rem solid #111;
  background: transparent;
  color: #111;
  padding: 0.625rem 1rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 0.25rem;
  transition:
    background-color 140ms ease,
    color 140ms ease,
    transform 80ms ease;
}
.tt-btn--solid {
  background: #111;
  color: #fff;
}
.tt-btn--ghost {
  background: transparent;
}
.tt-btn--is-active {
  background: #111;
  color: #fff;
}
.tt-btn--sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}
.tt-btn--lg {
  padding: 0.75rem 1.625rem;
  font-size: 1.5rem;
  font-weight: 300;
}
.tt-btn:hover {
  background: #111;
  color: #fff;
}
.tt-btn.tt-btn--solid:hover {
  transform: translateY(-0.0625rem);
}
.tt-btn:active {
  transform: translateY(0);
}
.tt-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
.tt-btn:focus-visible {
  outline: 0.125rem solid #111;
  outline-offset: 0.125rem;
}

/* ---------------- Typography component ---------------- */
.tt-prose {
  max-width: 100%;
  /* consistent vertical rhythm */
}
.tt-prose .tt-kicker {
  font-family:
    "Haffer",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-size: 0.875rem;
  color: #666;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.tt-prose h1,
.tt-prose h2,
.tt-h1,
.tt-h2,
.tt-page-title {
  font-family: "Season Mix", Georgia, "Times New Roman", serif;
  font-weight: 300;
  line-height: 1.15;
}
.tt-prose h3,
.tt-prose h4,
.tt-prose h5,
.tt-prose h6,
.tt-h3,
.tt-h4,
.tt-h5,
.tt-h6 {
  font-family:
    "Haffer",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-weight: 300;
}
.tt-page-title {
  padding-top: 2rem;
  padding-bottom: 1rem;
  font-size: 7.75rem;
}
.tt-prose h1,
.tt-h1 {
  font-size: 2.5rem;
}
.tt-prose h2,
.tt-h2 {
  font-size: 2rem;
}
.tt-prose h3,
.tt-h3 {
  font-size: 1.5rem;
}
.tt-prose h4,
.tt-h4 {
  font-size: 1rem;
}
.tt-prose h5,
.tt-h5 {
  font-size: 0.875rem;
  text-transform: uppercase;
}
.tt-prose h6,
.tt-h6 {
  font-size: 0.75rem;
  color: #666;
}
.tt-prose p {
  font-family:
    "Haffer",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}
.tt-prose a {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  text-decoration-thickness: 0.0625rem;
}
.tt-prose a:focus-visible {
  outline: 0.125rem solid #111;
  outline-offset: 0.125rem;
}
.tt-prose strong {
  font-weight: 700;
}
.tt-prose em {
  font-style: italic;
}
.tt-prose small,
.tt-prose .tt-meta,
.tt-prose code,
.tt-prose pre {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  font-size: 0.8125rem;
  color: #666;
}
.tt-prose {
  /* Make <hr> spacing intentional inside prose
     (prevents it from feeling “random” vs paragraphs/headings) */
}
.tt-prose hr {
  margin: 2rem 0;
  opacity: 0.2;
}
.tt-prose blockquote {
  font-family: "Season Mix", Georgia, "Times New Roman", serif;
  margin: 0;
  padding: 1rem 1.5rem;
  border-left: 0.0625rem solid #111;
  color: #666;
}
.tt-prose blockquote p {
  margin: 0;
}
.tt-prose ul,
.tt-prose ol {
  margin: 0;
  padding-left: 1.375rem;
  display: grid;
  gap: 0.5rem;
  padding-top: 1rem;
}
.tt-prose ul li,
.tt-prose ol li {
  font-size: 1rem;
  line-height: 1.45;
}

.tt-large-txt h1 {
  font-family: "Season Mix", Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 300;
}

/* Small inline tokens (editorial-ish) */
.tt-sample {
  padding-top: 1rem;
}
.tt-sample__title {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem 0;
}
.tt-sample__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
}

.tt-badge,
.tt-chip,
.tt-meta {
  display: inline-flex;
  align-items: center;
  height: 1.75rem;
  padding: 0 0.625rem;
  border: 0.0625rem solid #111;
  font-size: 0.875rem;
}

.tt-meta {
  border-color: #666;
  color: #666;
}

.tt-hr-top {
  border-top: 0.0625rem solid #111;
}
.tt-hr-bottom {
  border-top: 0.0625rem solid #111;
}

/* Responsiveness */

@media (max-width: 54rem) {
  .tt-page-title {
    font-size: 3rem !important;
  }
  .tt-prose h1,
  .tt-h1 {
    font-size: 1.5rem !important;
  }
}

/* ---------------- Components: Buttons layout helpers ---------------- */
.tt-buttons {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
}
.tt-buttons__group {
  display: grid;
  gap: 1rem;
}
.tt-buttons__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.tt-buttons__note {
  margin: 0;
  color: #666;
}

.tt-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tt-pill {
  border: 0.0625rem solid #111;
  background: transparent;
  color: #111;
  padding: 0.25rem 0.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 0.5rem;
  > span {
    border-radius: 0.5rem;
    border: 0.0625rem solid #111;
    font-size: 0.6rem;
    text-align: center;
    width: 0.9rem;
    height: 0.9rem;
    display: inline-grid;
    justify-content: center;
    align-items: center;
    line-height: 1;
    vertical-align: top;
    margin-top: 0.1rem;
    padding-top: 0.1rem;
  }
  &.tt-pill-active {
    background: #111;
    color: #fff;
    > span {
      border: 0.0625rem solid #fff;
    }
  }
}

/* ---------------- Components: Mason grid ---------------- */
.tt-mason-grid,
.tt-mason-grid-large {
  display: grid;
  border-top: 0.0625rem solid #111;
  background: #111;
  grid-template-columns: repeat(9, minmax(100px, 1fr));
  gap: 0.0625rem;
  margin: auto;
  > a,
  > div {
    background: #f6f2ea;
    grid-column: span 3;
    > div {
      padding: 0.5rem;
      img {
        padding: 1rem;
      }
    }
  }
}
.tt-mason-grid-large {
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  > div {
    background: #f6f2ea;
    grid-column: auto;
  }
}
@media (max-width: 54rem) {
  .tt-mason-grid,
  .tt-mason-grid-large {
    grid-template-columns: auto;
    .empty-slot {
      display: none;
    }
  }
}
/* ---------------- Components: Two column (text + media) ---------------- */
.tt-split {
  border-top: 0.0625rem solid #111;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.tt-split__left {
  min-width: 0;
}
.tt-split__right {
  min-width: 0;
}
.tt-split__excerpt {
  color: #666;
  font-size: 1.25rem;
  margin: 0;
}
.tt-split__excerpt.tt-split__excerpt {
  margin-top: 1rem;
  line-height: 1.45;
  font-family: "Season Mix", Georgia, "Times New Roman", serif;
}
.tt-split__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Model Viewer frame */
.tt-model-container {
  position: relative;
}
@media (max-width: 37.5rem) {
  .tt-model-container {
    display: none;
  }
}
.tt-model-container .tt-model-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  z-index: 9;
  align-items: end;
}
.tt-model-container .tt-model-wrapper .tt-model-controls {
  margin: 1rem;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.tt-model-container .tt-model-wrapper .tt-model-controls .tt-icon-card {
  padding: 0.5rem;
}
.tt-model-container .tt-model-wrapper .tt-model-controls .tt-icon-card__img {
  background: #f6f2ea;
  border-radius: 0.25rem;
  border: 0.0625rem solid #111;
  padding: 0.25rem;
}
.tt-model-container .tt-model-wrapper .tt-model-controls .tt-icon-card__label {
  display: none;
}

.tt-model {
  background: transparent;
  overflow: hidden;
}
.tt-model__viewer {
  width: 100%;
  height: 22.5rem;
  display: block;
  background: transparent;
}
.tt-model__viewer.full-model {
  height: 100vh;
}
.tt-model__caption {
  border-top: 0.0625rem solid #111;
  padding: 1rem;
  font-size: 0.875rem;
  color: #666;
}
.tt-model__file {
  color: #111;
}

/* Tablet + down: let the model take full width, stack nicely */
@media (max-width: 54rem) {
  .tt-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .tt-model__viewer {
    height: 20rem;
  }
  .tt-buttons {
    grid-template-columns: 1fr 1fr;
  }
  .tt-large-txt h1 {
    font-size: 2rem;
  }
}
/* Mobile */
@media (max-width: 37.5rem) {
  .tt-app {
    grid-template-columns: 1fr;
  }
  .tt-main {
    padding: 1.5rem;
  }
  .tt-model__viewer {
    height: 17.5rem;
  }
  .tt-icon {
    width: 2rem;
    height: auto;
  }
  .tt-buttons {
    grid-template-columns: 1fr;
  }
}
/* File: /src/scss/_header.scss
   Header strip with rules (reference style)
*/
.tt-header {
  height: auto;
  background: #f6f2ea;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  border-bottom: none;
  border-left: 1px solid;
  width: calc(100vw - 63px);
  background: linear-gradient(
    to bottom,
    #f6f2ea 25%,
    rgba(246, 242, 234, 0) 100%
  );
}
.tt-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1rem 1rem 2rem 0;
  column-gap: 0.5rem;
}
.tt-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 0.4rem;
}

.tt-brand {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0rem 1rem 0 1.5rem;
}
.tt-header-subtitle {
  font-size: 1rem;
  opacity: 0.5;
  text-transform: uppercase;
  padding-bottom: 0.3rem;
  letter-spacing: 3px;
}

.tt-nav {
  display: flex;
  justify-content: end;
  gap: 2.5rem;
  align-items: center;
  span {
    align-items: center;
    display: flex;
    gap: 2.5rem;
  }
}
.tt-nav__link {
  font-size: 1rem;
  padding: 0.5rem 0;
}

@media (max-width: 54rem) {
  .tt-nav {
    gap: 2rem;
  }
  .tt-brand {
    font-size: 1.5rem;
  }
  .tt-nav {
    display: none;
  }
  .tt-header__inner {
    grid-template-columns: 1fr auto;
  }
  .tt-header-subtitle {
    padding-bottom: 0;
    padding-right: 0.3rem;
  }
}
@media (max-width: 37.5rem) {
  .tt-header {
    width: 100%;
    border-right: 1px solid;
  }
  .tt-header__actions {
    font-size: 0.875rem;
  }
  .tt-brand {
    font-size: 2rem;
    padding: 0 0 0 1rem;
    line-height: 1;
  }
  .tt-header__inner {
    column-gap: 1rem;
  }
}
/* File: /src/scss/_rail.scss
   Right rail: desktop = full height sticky rail
   Mobile = fixed bottom bar (full width) with menu button on the right
*/
.tt-rail {
  border-left: 0.0625rem solid #111;
  background: #fff;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.5rem;
}
.tt-rail__top {
  display: grid;
  place-items: center;
  padding-bottom: 1rem;
}
.tt-rail__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.tt-rail__btn {
  border: none;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}
.tt-rail__btn:focus-visible {
  outline: 0.125rem solid #111;
  outline-offset: 0.125rem;
}
.tt-rail__bottom {
  display: grid;
  place-items: center;
  padding-bottom: 0.25rem;
}
.tt-rail__info {
  width: 2rem;
  height: 2rem;
  border-radius: 999rem;
  border: 0.0625rem solid #111;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.tt-rail__info:focus-visible {
  outline: 0.125rem solid #111;
  outline-offset: 0.125rem;
}

/* =========================
   MOBILE: bottom fixed bar
   ========================= */
@media (max-width: 37.5rem) {
  .tt-rail {
    /* override desktop rail */
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    height: auto;
    width: 100%;
    z-index: 50;
    border-left: 0;
    border: 0.0625rem solid #111;
    padding: 1rem;
    /* horizontal bar layout */
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  /* hide desktop-only top section */
  .tt-rail__top {
    order: 3;
    padding-bottom: 0;
  }
  /* icons row */
  .tt-rail__stack {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
  }
  .tt-rail__stack button:last-child {
    display: none;
  }
  .tt-rail__stack button:first-child {
    order: 3;
  }
  .tt-rail__stack button:nth-child(2) {
    order: 2;
  }
  /* bottom info becomes part of the bar */
  .tt-rail__bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    order: 1;
    padding-bottom: 0;
  }
  /* make the menu button show on mobile, on the right */
  .tt-rail__btn--menu {
    display: grid;
    place-items: center;
  }
  /* make sure menu is at the far right:
     we place it inside __bottom via CSS order */
  .tt-rail__stack {
    order: 2;
    gap: 1rem;
  }
  /* add the menu button into the right cluster visually */
  .tt-rail__btn--menu {
    order: 2;
  }
  /* touch-friendly targets */
  .tt-rail__btn,
  .tt-rail__info {
    width: 2.75rem;
    height: auto;
    border-radius: 0.625rem;
  }
  /* keep info circular if you want */
  .tt-rail__info {
    border-radius: 999rem;
  }
  /* IMPORTANT:
     because the bar is fixed, content can hide behind it.
     Add bottom padding to the main content. */
  .tt-main {
    padding-bottom: calc(1.5rem + 4rem);
  }
}
/* File: /src/scss/_forms.scss
   Forms: inputs, textarea, select, checkbox, radio, switch + states
*/
/* =========================
   Forms section layout (components page)
   ========================= */
.tt-forms {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.tt-forms__notes {
  border-left: 0.0625rem solid #111;
  padding-left: 2rem;
}
.tt-forms__notes h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
}
.tt-forms__notes ul {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.5rem;
}
.tt-forms__notes ul li {
  font-size: 0.9375rem;
  line-height: 1.45;
}
.tt-forms__mini {
  margin-top: 2rem;
}
.tt-forms__row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* =========================
   Demo form scaffolding
   ========================= */
.tt-form--demo {
  display: grid;
  gap: 1.5rem;
}

.tt-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

.tt-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* =========================
   Field (label + control + help)
   ========================= */
.tt-field {
  min-width: 0;
}
.tt-field--full {
  grid-column: 1/-1;
}
.tt-field__label {
  display: inline-block;
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  color: #111;
}
.tt-field__help {
  margin: 0.5rem 0 0 0;
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.35;
}
.tt-field__error {
  margin: 0.5rem 0 0 0;
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  font-size: 0.75rem;
  color: #111;
  line-height: 1.35;
}
.tt-field--error .tt-field__control {
  /* simple error treatment: keep it restrained */
  box-shadow: inset 0 0 0 0.0625rem #111;
}

/* =========================
   Inputs / textarea / select
   ========================= */
.tt-field__control {
  width: 100%;
  height: 2.625rem;
  border: 0.0625rem solid #111;
  background: transparent;
  color: #111;
  padding: 0 1rem;
  border-radius: 0.25rem;
}
.tt-field__control::placeholder {
  color: #666;
  opacity: 1;
}
.tt-field__control:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.tt-field__control:focus-visible {
  outline: 0.125rem solid #111;
  outline-offset: 0.125rem;
}

.tt-field__control--textarea {
  height: auto;
  padding: 1rem;
  resize: vertical;
  min-height: 7.5rem;
}

.tt-field__control--sm {
  height: 2.375rem;
  padding: 0 1rem;
  font-size: 0.875rem;
}

/* Make select feel like the system (keep native arrow) */
select.tt-field__control {
  padding-right: 2rem;
}

/* =========================
   Fieldset + legend
   ========================= */
.tt-fieldset {
  border: 0.0625rem solid #111;
  padding: 1.5rem;
  margin: 0;
  border-radius: 0.25rem;
}
.tt-fieldset__legend {
  padding: 0 0.5rem;
  font-size: 0.875rem;
}

/* =========================
   Checkbox + Radio (custom UI, native input)
   ========================= */
.tt-choice {
  display: grid;
  grid-template-columns: 1.125rem 1fr;
  gap: 1rem;
  align-items: start;
  cursor: pointer;
}
.tt-choice + .tt-choice {
  margin-top: 1rem;
}
.tt-choice__label {
  font-size: 0.9375rem;
  line-height: 1.45;
}
.tt-choice__control {
  margin: 0.125rem 0 0 0;
  width: 1.125rem;
  height: 1.125rem;
  appearance: none;
  -webkit-appearance: none;
  border: 0.0625rem solid #111;
  background: transparent;
  border-radius: 0.1875rem;
  display: grid;
  place-items: center;
}
.tt-choice__control:focus-visible {
  outline: 0.125rem solid #111;
  outline-offset: 0.125rem;
}
.tt-choice__control:checked {
  background: #111;
}
.tt-choice__control:checked::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #f6f2ea;
  display: block;
}
.tt-choice__control:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Radio shape overrides */
input[type="radio"].tt-choice__control {
  border-radius: 999rem;
}
input[type="radio"].tt-choice__control:checked::after {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999rem;
}

/* =========================
   Switch (toggle)
   ========================= */
.tt-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1rem;
  border: 0.0625rem solid #111;
  border-radius: 0.25rem;
}
.tt-switch__label {
  font-size: 0.9375rem;
  line-height: 1.45;
}
.tt-switch__control {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.tt-switch__ui {
  width: 2.875rem;
  height: 1.625rem;
  border: 0.0625rem solid #111;
  border-radius: 999rem;
  position: relative;
  flex: 0 0 auto;
}
.tt-switch__ui::after {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 999rem;
  border: 0.0625rem solid #111;
  background: transparent;
  transition:
    transform 140ms ease,
    background-color 140ms ease;
}
.tt-switch {
  /* checked state */
}
.tt-switch__control:checked + .tt-switch__ui::after {
  transform: translateX(1.25rem);
  background: #111;
}
.tt-switch {
  /* keyboard focus */
}
.tt-switch:focus-within {
  outline: 0.125rem solid #111;
  outline-offset: 0.125rem;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 54rem) {
  .tt-forms {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .tt-forms__notes {
    border-left: 0;
    padding-left: 0;
    border-top: 0.0625rem solid #111;
    padding-top: 1.5rem;
  }
  .tt-form__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
/* File: /src/scss/_icons.scss
   Components page: Icons grid
*/
.tt-icons {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.tt-icon-card {
  padding: 1rem;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 1rem;
  background: transparent;
}
.tt-icon-card:hover {
  cursor: pointer;
}
.tt-icon-card__img {
  width: 2.75rem;
  height: 2.75rem;
  display: block;
}
.tt-icon-card__label {
  margin: 0;
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  font-size: 0.5rem;
  color: #666;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  user-select: all;
}
.tt-icon-card__labelh6 {
  font-size: 0.5rem;
}
.tt-icon-card:focus-visible {
  outline: 0.125rem solid #111;
  outline-offset: 0.125rem;
}

@media (max-width: 37.5rem) {
  .tt-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* File: /src/scss/_footer.scss
   Footer: ruled grid + newsletter + support strip
*/
.tt-footer {
  background: #f6f2ea;
  border-top: 0.0625rem solid #111;
}
.tt-footer__top {
  border-bottom: 0.0625rem solid #111;
  padding: 2.5rem 1.5rem;
}
.tt-footer__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(18rem, 1.5fr);
  gap: 2.5rem;
  align-items: start;
}
.tt-footer__title {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  font-weight: 600;
}
.tt-footer__list {
  display: grid;
  gap: 0.5rem;
}
.tt-footer__link {
  font-size: 0.9375rem;
}
.tt-footer__link:hover {
  text-decoration: underline;
}
.tt-footer__link:focus-visible {
  outline: 0.125rem solid #111;
  outline-offset: 0.125rem;
}
.tt-footer__newsletter-title {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
}
.tt-footer__newsletter-text {
  margin: 0 0 1.5rem 0;
  color: #666;
  font-size: 1rem;
}
.tt-footer__bottom {
  padding: 2rem 1.5rem;
}
.tt-footer__support {
  display: grid;
  gap: 1rem;
}
.tt-footer__support-label {
  font-size: 0.875rem;
  color: #666;
}
.tt-footer__support-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.tt-footer__logo {
  width: 9.5rem;
  height: 3rem;
  background: transparent;
}

.tt-form {
  display: grid;
  gap: 1rem;
}
.tt-form__label {
  font-size: 1rem;
}
.tt-form__input {
  height: 2.5rem;
  border: 0.0625rem solid #111;
  background: transparent;
  padding: 0 1rem;
}
.tt-form__input:focus-visible {
  outline: 0.125rem solid #111;
  outline-offset: 0.125rem;
}
.tt-form__submit {
  width: fit-content;
  margin-top: 0.5rem;
}

@media (max-width: 54rem) {
  .tt-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .tt-footer__newsletter {
    grid-column: 1/-1;
  }
}
@media (max-width: 37.5rem) {
  .tt-footer__top,
  .tt-footer__bottom {
    padding: 2rem 1.5rem;
  }
  .tt-footer__bottom {
    margin-bottom: 2rem;
  }
  .tt-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .tt-footer__newsletter {
    grid-column: 1/-1;
  }
}

/*# sourceMappingURL=main.css.map */
