:root {
  --ink: #1c1915;
  --muted: #5c564c;
  --paper: #f6f3ed;
  --surface: #fffdf8;
  --green: #1a472a;
  --green-deep: #12331e;
  --copper: #c45c26;
  --line: #ddd6c8;
  --focus: #d97b29;
  --shadow: 0 12px 32px rgba(28, 25, 21, 0.08);
  --radius: 14px;
  --wrap: 1120px;
  --head: 72px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 1.02rem;
  line-height: 1.6;
}

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

a {
  color: var(--green);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--copper);
}

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

.tk-skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  background: var(--green);
  color: #fff;
  padding: 8px 12px;
}

.tk-skip:focus {
  top: 12px;
}

.tk-wrap {
  width: min(var(--wrap), calc(100% - 32px));
  margin-inline: auto;
}

.tk-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 243, 237, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.tk-head__bar {
  min-height: var(--head);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tk-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tk-brand img,
.tk-brand svg {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.tk-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  cursor: pointer;
}

.tk-nav {
  display: none;
}

.tk-nav.is-open,
.tk-nav:target {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--head);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 12px 16px 20px;
}

.tk-nav a {
  display: block;
  padding: 10px 4px;
  text-decoration: none;
  color: var(--ink);
}

.tk-nav a[aria-current="page"] {
  color: var(--green);
  font-weight: 700;
}

.tk-drop {
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 6px;
}

.tk-drop > button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  font: inherit;
  color: var(--ink);
  padding: 10px 4px;
  cursor: pointer;
}

.tk-drop__list {
  display: none;
  padding-left: 12px;
}

.tk-drop.is-open .tk-drop__list {
  display: block;
}

.tk-hero {
  padding: 28px 0 12px;
}

.tk-hero__grid {
  display: grid;
  gap: 22px;
}

.tk-kicker {
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.tk-hero h1,
.tk-page h1,
h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 14px;
  font-weight: 600;
}

.lede {
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0 0 20px;
}

.tk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.tk-btn--fill {
  background: var(--green);
  color: #fff;
}

.tk-btn--fill:hover {
  background: var(--green-deep);
  color: #fff;
}

.tk-btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.tk-btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

.tk-frame {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: #d8d1c4;
}

.tk-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tk-facts {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.tk-fact {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.tk-fact span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.tk-fact a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 650;
}

.tk-section {
  padding: 42px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 640px;
}

.tk-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 10px;
}

.tk-section > p,
.tk-prose p {
  color: var(--muted);
}

.tk-cards {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.tk-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.tk-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tk-card div {
  padding: 16px;
}

.tk-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.tk-card p {
  margin: 0;
  color: var(--muted);
}

.tk-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 12px;
}

.tk-tabs button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  cursor: pointer;
}

.tk-tabs button[aria-selected="true"] {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.tk-panel[hidden] {
  display: none;
}

.tk-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.tk-panel h3 {
  margin: 0 0 8px;
}

.tk-hours {
  width: 100%;
  border-collapse: collapse;
}

.tk-hours th,
.tk-hours td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.tk-acc {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.tk-acc details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 16px;
}

.tk-acc summary {
  cursor: pointer;
  font-weight: 650;
  padding: 12px 0;
}

.tk-acc details p {
  margin: 0 0 14px;
  color: var(--muted);
}

.tk-split {
  display: grid;
  gap: 20px;
  align-items: center;
}

.tk-form,
.tk-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

label {
  display: block;
  font-weight: 650;
  margin: 12px 0 6px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.tk-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0;
  font-weight: 400;
}

.tk-check input {
  width: auto;
  margin-top: 4px;
}

.tk-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.tk-foot {
  background: var(--green-deep);
  color: #efe8dc;
  padding: 36px 0 20px;
  margin-top: 24px;
}

.tk-foot a {
  color: #f3d2b0;
}

.tk-foot__grid {
  display: grid;
  gap: 18px;
}

.tk-foot h2 {
  font-size: 1rem;
  margin: 0 0 8px;
  color: #fff;
}

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

.tk-foot li {
  margin: 6px 0;
}

.tk-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 22px;
  padding-top: 14px;
  font-size: 0.9rem;
}

.tk-page {
  padding: 28px 0 8px;
}

.tk-prose {
  max-width: 72ch;
}

.tk-prose h2 {
  font-family: var(--serif);
  margin: 28px 0 8px;
}

.tk-prose ul {
  color: var(--muted);
}

.tk-job {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 8px 16px;
  margin: 12px 0;
}

.tk-job summary {
  cursor: pointer;
  font-weight: 700;
  padding: 12px 0;
}

.tk-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 16px;
}

.tk-modal[hidden] {
  display: none;
}

.tk-modal__back {
  position: absolute;
  inset: 0;
  background: rgba(18, 51, 30, 0.46);
  border: 0;
}

.tk-modal__card {
  position: relative;
  width: min(520px, 100%);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.tk-cookie {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.tk-cookie[hidden] {
  display: none;
}

.tk-cookie h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.tk-status {
  margin: 10px 0 0;
  color: var(--green);
  font-weight: 650;
}

.tk-status[hidden] {
  display: none;
}

@media (min-width: 880px) {
  .tk-nav-btn {
    display: none;
  }

  .tk-nav,
  .tk-nav.is-open {
    display: flex;
    position: static;
    background: none;
    border: 0;
    padding: 0;
    align-items: center;
    gap: 4px;
  }

  .tk-nav a,
  .tk-drop > button {
    padding: 8px 10px;
    white-space: nowrap;
  }

  .tk-drop {
    position: relative;
    border: 0;
    margin: 0;
    padding: 0;
  }

  .tk-drop__list {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 220px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .tk-hero__grid,
  .tk-split,
  .tk-cards,
  .tk-facts,
  .tk-foot__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tk-facts {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .tk-foot__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .tk-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .tk-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}
