:root {
  --bg: #ffffff;
  --bg-soft: #f4f4f3;
  --surface: #ffffff;
  --tint: #e9e9e7;
  --ink: #15140f;
  --ink-soft: #3a3a38;
  --ink-muted: #5d5d5b;
  --sage: #3f5b48;
  --sage-deep: #1f3328;
  --sage-soft: #a8b6ab;
  --forest: #1f3328;
  --line: #e5e5e3;
  --line-soft: #ededeb;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 6.75rem; }
html, body { overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Outfit', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.65rem 1.1rem;
  background: var(--ink);
  color: #ffffff;
  border-radius: 4px;
  z-index: 80;
  font-weight: 600;
}

.container-tk {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 768px)  { .container-tk { padding-left: 1.75rem; padding-right: 1.75rem; } }
@media (min-width: 1024px) { .container-tk { padding-left: 2.25rem; padding-right: 2.25rem; } }
@media (min-width: 1600px) { .container-tk { max-width: 1440px; } }

.eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.65rem;
}

.section-h2-tk {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.875rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
@media (min-width: 768px)  { .section-h2-tk { font-size: 2.5rem; } }
@media (min-width: 1024px) { .section-h2-tk { font-size: 3rem; } }

.section-lead-tk {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-top: 1rem;
  max-width: 56ch;
}
@media (min-width: 1024px) { .section-lead-tk { font-size: 1.0625rem; } }

.section-header-tk {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3rem;
}
.section-header-tk .section-lead-tk {
  margin-left: auto;
  margin-right: auto;
}

.btn-forest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  background: var(--forest);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-forest:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(31, 51, 40, 0.20);
}
.btn-forest svg { width: 1rem; height: 1rem; }
.btn-forest.btn-sm { padding: 0.55rem 1.05rem; font-size: 0.8125rem; }
.btn-block-tk { width: 100%; padding: 1.05rem 1.5rem; font-size: 1rem; }

.btn-cream {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  background: transparent;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 3px;
  border: 1.5px solid var(--ink);
  transition: all 0.25s var(--ease);
}
.btn-cream:hover {
  background: var(--ink);
  color: #ffffff;
  transform: translateY(-2px);
}
.btn-cream svg { width: 1rem; height: 1rem; }

.btn-outline-tk {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  background: transparent;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 3px;
  border: 1.5px solid var(--ink);
  transition: all 0.25s var(--ease);
}
.btn-outline-tk:hover {
  background: var(--ink);
  color: #ffffff;
  transform: translateY(-2px);
}
.btn-outline-tk svg { width: 1rem; height: 1rem; }

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  display: none;
}
@media (min-width: 768px) { .topbar { display: block; } }
.topbar-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2.25rem;
}
.topbar-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.topbar-icon {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  color: var(--sage-soft);
}
.topbar-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s;
  padding: 0.5rem 0;
  margin: -0.5rem 0;
}
.topbar-tel:hover { color: var(--sage-soft); }
.topbar-tel .topbar-icon { color: #ffffff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 1px 0 rgba(21, 20, 15, 0.04), 0 4px 18px rgba(21, 20, 15, 0.04);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
  gap: 1rem;
}
@media (min-width: 1024px) { .header-row { height: 4.75rem; gap: 1.5rem; } }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 26px;
  height: 26px;
  padding: 5px 0;
  align-items: flex-start;
}
.brand-mark-bar {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}
.brand-mark-bar:nth-child(2) {
  width: 14px;
  background: var(--sage);
}
.brand-mark-light .brand-mark-bar { background: #ffffff; }
.brand-mark-light .brand-mark-bar:nth-child(2) { background: var(--sage-soft); }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.18rem;
}
.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.brand-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.primary-nav { display: none; gap: 0.25rem; }
@media (min-width: 1024px) { .primary-nav { display: flex; align-items: center; } }
.primary-nav-link {
  position: relative;
  padding: 0.55rem 0.95rem;
  color: var(--ink-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s;
}
.primary-nav-link:hover { color: var(--ink); }
.primary-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.35rem;
  left: 0.95rem;
  right: 0.95rem;
  height: 1.5px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.primary-nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
@media (min-width: 1024px) { .header-actions { gap: 0.85rem; } }
.header-tel {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.25s;
}
@media (min-width: 1024px) { .header-tel { display: inline-flex; } }
.header-tel svg { width: 0.875rem; height: 0.875rem; }
.header-tel:hover { color: var(--sage); }

.menu-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle .menu-bar {
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.menu-toggle .menu-bar:nth-child(2) { width: 0.85rem; }
.menu-open .menu-toggle .menu-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle .menu-bar:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle .menu-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 1.1rem; }

.mobile-menu {
  position: fixed;
  top: 4.25rem;
  left: 0;
  right: 0;
  z-index: 49;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(21, 20, 15, 0.08);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  max-height: calc(100vh - 4.25rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .mobile-menu { top: 6.5rem; max-height: calc(100vh - 6.5rem); }
}
.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-inner {
  padding: 1.25rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.mobile-menu .mobile-menu-close,
#mobile-menu .mobile-menu-close { display: none; }

.mobile-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--ink);
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, padding-left 0.25s var(--ease);
}
.mobile-link:hover {
  color: var(--sage);
  padding-left: 4px;
}
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  padding: 0.95rem 1.4rem;
  background: var(--forest);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, transform 0.2s;
}
.mobile-cta:hover { background: var(--sage); transform: translateY(-2px); }
.mobile-info {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mobile-info-row {
  color: var(--ink-muted);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
a.mobile-info-row:hover { color: var(--ink); }
.mobile-info-strong {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
}

.hero-tk {
  position: relative;
  height: 92vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
}
@supports (height: 100svh) {
  .hero-tk { height: 92svh; }
}
.hero-tk-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-tk-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-tk-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 20, 15, 0.65) 0%, rgba(21, 20, 15, 0.55) 50%, rgba(21, 20, 15, 0.75) 100%),
    radial-gradient(ellipse at center, rgba(21, 20, 15, 0.0) 0%, rgba(21, 20, 15, 0.35) 80%);
}
.hero-tk-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-tk-text {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero-tk-eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.hero-tk-h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin-top: 1.5rem;
}
.hero-tk-sub {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 1.5rem auto 0;
  max-width: 56ch;
}
@media (min-width: 1024px) { .hero-tk-sub { font-size: 1.125rem; } }
.hero-tk-ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.btn-ghost-tk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  background: transparent;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 3px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: all 0.25s var(--ease);
}
.btn-ghost-tk:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}
.btn-ghost-tk svg { width: 1rem; height: 1rem; }

.services-tk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: var(--bg);
}
@media (min-width: 1024px) { .services-tk { padding-top: 5rem; padding-bottom: 5rem; } }

.services-tk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .services-tk-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-tk-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.svc-tk {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.svc-tk:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 16px 40px rgba(21, 20, 15, 0.08);
}
.svc-tk-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--tint);
}
.svc-tk-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.svc-tk:hover .svc-tk-img img { transform: scale(1.05); }
.svc-tk-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(21, 20, 15, 0.40) 100%);
}
.svc-tk-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.svc-tk-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  color: var(--sage);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.svc-tk-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 0.4rem;
}
.svc-tk-desc {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-muted);
  margin-top: 0.6rem;
}
.svc-tk-link {
  margin-top: 1.1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: letter-spacing 0.25s var(--ease), color 0.25s;
}
.svc-tk:hover .svc-tk-link {
  color: var(--sage);
  letter-spacing: 0.04em;
}

.process-tk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 1024px) { .process-tk { padding-top: 5rem; padding-bottom: 5rem; } }

.process-tk-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .process-tk-head { grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
}
.process-tk-lead {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 50ch;
}
@media (min-width: 1024px) { .process-tk-lead { font-size: 1.0625rem; } }

.process-tk-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .process-tk-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-tk-list { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.process-tk-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.65rem 1.4rem 1.85rem;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.process-tk-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.4rem;
  width: 2.5rem;
  height: 3px;
  background: var(--sage);
  border-radius: 0 0 3px 3px;
}
.process-tk-step:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 12px 28px rgba(21, 20, 15, 0.06);
}
.process-tk-num {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  color: var(--sage);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.process-tk-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.process-tk-desc {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.gallery-tk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: var(--bg);
}
@media (min-width: 1024px) { .gallery-tk { padding-top: 5rem; padding-bottom: 5rem; } }

.gallery-tk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .gallery-tk-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.gallery-tk-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.gallery-tk-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
}
.gallery-tk-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--tint);
}
.gallery-tk-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-tk-card:hover .gallery-tk-img img { transform: scale(1.05); }
.gallery-tk-body { padding: 1.25rem 1.35rem 1.5rem; }
.gallery-tk-meta {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  color: var(--sage);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}
.gallery-tk-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.gallery-tk-desc {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-muted);
}
.gallery-tk-cta {
  text-align: center;
  margin-top: 3rem;
}

.quote-tk {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #ffffff;
  padding: 4rem 0;
}
@media (min-width: 1024px) { .quote-tk { padding: 6.5rem 0; } }
.quote-tk-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quote-tk-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.20;
}
.quote-tk-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 20, 15, 0.78) 0%, rgba(21, 20, 15, 0.85) 100%),
    radial-gradient(ellipse at center, rgba(21, 20, 15, 0.4) 0%, rgba(21, 20, 15, 0.7) 90%);
}
.quote-tk-inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  text-align: center;
  margin: 0 auto;
}
.quote-tk-eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-bottom: 1.25rem;
}
.quote-tk-mark {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 0.5;
  color: var(--sage-soft);
  margin-bottom: 1rem;
}
.quote-tk-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #ffffff;
}
@media (min-width: 1024px) { .quote-tk-text { font-size: 2rem; } }
.quote-tk-attribution {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
  justify-content: center;
}
.quote-tk-author {
  font-weight: 700;
  color: var(--sage-soft);
}

.contact-tk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: var(--bg-soft);
}
@media (min-width: 1024px) { .contact-tk { padding-top: 5rem; padding-bottom: 5rem; } }

.contact-tk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .contact-tk-grid {
    grid-template-columns: 30fr 70fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact-tk-info { max-width: 100%; }
.contact-tk-lead {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-top: 1rem;
}
@media (min-width: 1024px) { .contact-tk-lead { font-size: 1.0625rem; } }

.contact-tk-cards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
@media (min-width: 480px) and (max-width: 1023px) {
  .contact-tk-cards { grid-template-columns: 1fr 1fr; }
}
.contact-tk-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1rem 1.15rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.contact-tk-card:hover {
  transform: translateY(-2px);
  border-color: var(--sage);
  box-shadow: 0 8px 20px rgba(31, 51, 40, 0.06);
}
.contact-tk-card-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--sage);
  margin-bottom: 0.3rem;
}
.contact-tk-card-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact-tk-card-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.3;
}
a.contact-tk-card-value:hover { color: var(--sage); }

.contact-tk-form-wrap {
  background: var(--surface);
  padding: 1.85rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  position: relative;
}
.contact-tk-form-wrap::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 1.85rem;
  right: 1.85rem;
  height: 3px;
  background: var(--sage);
  border-radius: 0 0 3px 3px;
}
@media (min-width: 1024px) { .contact-tk-form-wrap { padding: 2.5rem; } }

.contact-tk-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-tk-mt { margin-top: 1rem; margin-bottom: 0.5rem; }

.form-label-tk {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.form-label-tk span { color: var(--sage); margin-left: 0.1em; }

.form-input-tk {
  width: 100%;
  padding: 0.85rem 0.95rem;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input-tk::placeholder { color: rgba(21, 20, 15, 0.35); }
.form-input-tk:focus {
  border-color: var(--ink);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(21, 20, 15, 0.06);
}

.contact-tk-note {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: 1rem;
}

.footer-tk {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 4rem;
  padding-bottom: 0;
}
@media (min-width: 1024px) { .footer-tk { padding-top: 5.5rem; } }

.footer-tk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 768px)  { .footer-tk-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }

.footer-tk-brand .brand-name { color: #ffffff; }
.footer-tk-brand .brand-sub { color: rgba(255, 255, 255, 0.55); }
.footer-tk-tagline {
  margin-top: 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 38ch;
}

.footer-tk-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}
.footer-tk-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.footer-tk-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.25s var(--ease);
  display: inline-block;
}
.footer-tk-link:hover {
  color: #ffffff;
  padding-left: 4px;
}
.footer-tk-link-strong {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: #ffffff;
}
.footer-tk-pad { padding-top: 0.4rem; }
.footer-tk-emphasis {
  margin-top: 1.1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--sage-soft);
  letter-spacing: 0.04em;
}

.footer-tk-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}
.footer-tk-legal-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}
@media (min-width: 768px) {
  .footer-tk-legal-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }

.img-lazy { opacity: 0; transition: opacity 0.5s ease; }
.img-lazy.loaded { opacity: 1; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
  .reveal-up { opacity: 1; transform: none; }
}

@media (max-width: 720px) {
  .brand-sub { display: none; }
}

@media (max-width: 640px) {
  section, section > div, section > div > div, section > div > div > div {
    max-width: 100%;
    box-sizing: border-box;
  }
  .grid > div { min-width: 0; max-width: 100%; }
}

#contact-form { max-width: 100%; overflow: hidden; }
#contact-form .g-recaptcha { transform-origin: left center; max-width: 100%; }
@media (max-width: 400px) { #contact-form .g-recaptcha { transform: scale(0.85); } }
@media (max-width: 340px) { #contact-form .g-recaptcha { transform: scale(0.75); } }
