.tyh-landing {
  --tyh-bg: #f7f3ee;
  --tyh-text: #ffffff;
  --tyh-overlay: .28;
  background: var(--tyh-bg);
  min-height: 100vh;
  padding: 42px 24px 48px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tyh-inner {
  width: min(1400px, 100%);
  margin: 0 auto;
}

.tyh-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 34px;
}

.tyh-logo {
  display: block;
  max-width: min(420px, 78vw);
  max-height: 180px;
  width: auto;
  height: auto;
}

.tyh-logo-fallback {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1;
  text-align: center;
  color: #332b28;
  letter-spacing: .02em;
}

.tyh-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.tyh-card {
  position: relative;
  min-height: clamp(360px, 57vh, 680px);
  overflow: hidden;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  text-decoration: none !important;
  isolation: isolate;
  box-shadow: 0 18px 60px rgba(0,0,0,.11);
  transition: transform .35s ease, box-shadow .35s ease;
}

.tyh-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform .7s cubic-bezier(.2,.65,.2,1);
  z-index: -2;
}

.tyh-card:hover,
.tyh-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.tyh-card:hover::before,
.tyh-card:focus-visible::before {
  transform: scale(1.055);
}

.tyh-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,var(--tyh-overlay));
  z-index: -1;
  transition: background .3s ease;
}

.tyh-card:hover .tyh-overlay {
  background: rgba(0,0,0,calc(var(--tyh-overlay) + .08));
}

.tyh-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: var(--tyh-text);
  padding: clamp(28px, 5vw, 64px);
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.tyh-title {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.tyh-subtitle {
  display: block;
  margin-top: 10px;
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .tyh-landing { padding: 28px 16px; }
  .tyh-logo-wrap { margin-bottom: 24px; }
  .tyh-choices { grid-template-columns: 1fr; gap: 16px; }
  .tyh-card { min-height: 42vh; border-radius: 16px; }
}
