:root {
  --tnyc-ink: #191815;
  --tnyc-paper: #f4efe5;
  --tnyc-cream: #fbf8f0;
  --tnyc-gold: #d7ad36;
  --tnyc-red: #9e2f28;
  --tnyc-green: #6d7d5d;
  --tnyc-line: rgba(25, 24, 21, 0.2);
}

body.tnyc-home-page,
body.tnyc-guide-page {
  margin: 0;
  background: var(--tnyc-cream);
  color: var(--tnyc-ink);
  font-family: Arial, Helvetica, sans-serif;
}

body.tnyc-menu-open { overflow: hidden; }

.tnyc-home,
.tnyc-home * { box-sizing: border-box; }

.tnyc-home { overflow: hidden; background: var(--tnyc-cream); color: var(--tnyc-ink); }
.tnyc-home a { color: inherit; text-decoration: none; }
.tnyc-home button,
.tnyc-home input { font: inherit; }
.tnyc-home img { display: block; max-width: 100%; }
.tnyc-home p { margin-top: 0; }

.tnyc-screen-reader-text,
.tnyc-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tnyc-skip-link:focus {
  z-index: 99999;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 18px;
  margin: 0;
  background: #fff;
  color: #111;
}

.tnyc-home a:focus-visible,
.tnyc-home button:focus-visible,
.tnyc-home input:focus-visible {
  outline: 2px solid var(--tnyc-red);
  outline-offset: 3px;
}

.tnyc-announcement {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 7px 20px;
  background: var(--tnyc-ink);
  color: #f8f0dc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.tnyc-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: 100px;
  display: grid;
  grid-template-columns: 320px 1fr 120px;
  align-items: center;
  gap: 28px;
  padding: 0 5vw;
  background: rgba(251, 248, 240, 0.94);
  border-bottom: 1px solid var(--tnyc-line);
  backdrop-filter: blur(12px);
}

body.admin-bar .tnyc-site-header { top: 32px; }

.tnyc-brand { display: inline-flex; align-items: center; gap: 13px; width: max-content; }
.tnyc-brand-symbol { width: 55px; height: 55px; flex: 0 0 auto; object-fit: contain; }
.tnyc-brand-copy { display: flex; flex-direction: column; }
.tnyc-brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.tnyc-brand-tagline {
  margin-top: 8px;
  color: #665f55;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tnyc-site-nav { display: flex; justify-content: center; gap: clamp(22px, 3vw, 48px); }
.tnyc-site-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.055em;
  white-space: nowrap;
}
.tnyc-site-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--tnyc-red);
  transition: right 0.25s ease;
}
.tnyc-site-nav a:hover::after { right: 0; }

.tnyc-header-search {
  width: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 14px;
  border: 1px solid var(--tnyc-line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tnyc-header-search b { width: 34px; font-size: 19px; font-weight: 400; text-align: center; }
.tnyc-menu-toggle { display: none; }

.tnyc-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.92fr);
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--tnyc-line);
  background:
    radial-gradient(circle at 13% 15%, rgba(215, 173, 54, 0.13), transparent 24%),
    linear-gradient(90deg, #f9f5eb 0%, #f9f5eb 54%, #e9e1d2 54%, #e9e1d2 100%);
}

.tnyc-hero-copy { padding: 80px 4vw 80px max(5vw, calc((100vw - 1380px) / 2)); }
.tnyc-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--tnyc-red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-transform: uppercase;
}
.tnyc-kicker::before { content: ""; width: 34px; height: 1px; flex: 0 0 34px; background: currentColor; }
.tnyc-kicker.tnyc-light { color: #e4c964; }

.tnyc-hero h1 {
  max-width: 690px;
  margin: 0;
  padding-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 6vw, 102px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
}
.tnyc-hero h1 em { color: var(--tnyc-red); font-weight: 400; }
.tnyc-hero-deck {
  max-width: 590px;
  margin: 54px 0 32px;
  color: #4c4842;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.62;
}

.tnyc-symbol-search {
  max-width: 620px;
  height: 56px;
  display: flex;
  margin: 0;
  box-shadow: 0 12px 35px rgba(70, 52, 26, 0.1);
}
.tnyc-symbol-search input {
  min-width: 0;
  flex: 1;
  height: 56px;
  padding: 0 20px;
  border: 1px solid rgba(25, 24, 21, 0.26);
  border-right: 0;
  border-radius: 0;
  background: #fffdf8;
  color: var(--tnyc-ink);
  outline: none;
  font-size: 13px;
}
.tnyc-symbol-search button {
  height: 56px;
  padding: 0 25px;
  border: 1px solid var(--tnyc-ink);
  border-radius: 0;
  background: var(--tnyc-ink);
  color: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tnyc-popular-links { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 18px; color: #6c655a; font-size: 11px; }
.tnyc-popular-links span { font-weight: 700; }
.tnyc-popular-links a { border-bottom: 1px solid #9d9589; }

.tnyc-hero-stage { position: relative; min-height: 720px; height: 100%; }
.tnyc-stage-paper {
  position: absolute;
  inset: 14% 12% 12% 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px;
  background: #f8f1e3;
  border: 1px solid rgba(25, 24, 21, 0.3);
  box-shadow: 22px 25px 0 rgba(96, 73, 38, 0.08), 0 30px 80px rgba(56, 41, 20, 0.11);
  text-align: center;
  transform: rotate(1.2deg);
}
.tnyc-stage-paper::before,
.tnyc-stage-paper::after { content: "✦"; position: absolute; color: var(--tnyc-gold); font-size: 17px; }
.tnyc-stage-paper::before { top: 24px; left: 25px; }
.tnyc-stage-paper::after { right: 25px; bottom: 24px; }
.tnyc-stage-small { margin: 0 0 16px; font-size: 10px; font-weight: 700; letter-spacing: 0.23em; text-transform: uppercase; }
.tnyc-stage-quote { max-width: 420px; margin: 0; font: 400 25px/1.38 Georgia, serif; }
.tnyc-stage-rule { width: 48px; height: 1px; margin: 27px 0 20px; background: var(--tnyc-red); }
.tnyc-stage-note { margin: 0; color: #746d63; font-size: 9px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }

.tnyc-stage-wreath,
.tnyc-stage-sun,
.tnyc-stage-heart,
.tnyc-stage-star,
.tnyc-stage-cat { position: absolute; z-index: 3; object-fit: contain; pointer-events: none; }
.tnyc-stage-wreath { z-index: 2; width: 180px; height: 300px; left: 1%; top: 13%; transform: rotate(-14deg); }
.tnyc-stage-sun { width: 164px; height: 164px; right: 1%; top: 5%; animation: tnyc-float 7s ease-in-out infinite; }
.tnyc-stage-heart { width: 128px; height: 128px; left: 5%; bottom: 5%; transform: rotate(-9deg); }
.tnyc-stage-star { width: 100px; height: 100px; right: 5%; bottom: 11%; transform: rotate(10deg); }
.tnyc-stage-cat { z-index: 4; width: 116px; height: 145px; right: 21%; bottom: 3%; }
.tnyc-orbit { position: absolute; border: 1px solid rgba(140, 91, 31, 0.2); border-radius: 50%; pointer-events: none; }
.tnyc-orbit-one { width: 470px; height: 470px; top: 17%; left: 5%; }
.tnyc-orbit-two { width: 580px; height: 580px; top: 9%; left: -2%; }
@keyframes tnyc-float { 0%, 100% { transform: translateY(0) rotate(4deg); } 50% { transform: translateY(-12px) rotate(-2deg); } }

.tnyc-content-section { max-width: 1380px; margin: 0 auto; padding: 110px 5vw; }
.tnyc-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 45px; }
.tnyc-section-heading h2 { margin: 0; font: 400 clamp(44px, 5vw, 72px)/1 Georgia, serif; letter-spacing: -0.045em; }
.tnyc-text-link { padding-bottom: 7px; border-bottom: 1px solid var(--tnyc-ink); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.tnyc-text-link span { margin-left: 10px; }

.tnyc-topic-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.tnyc-topic-card {
  min-height: 440px;
  display: grid;
  grid-template-rows: 215px 1fr;
  overflow: hidden;
  border: 1px solid var(--tnyc-line);
  background: #f8f4ea;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tnyc-topic-card:hover { transform: translateY(-5px); box-shadow: 0 22px 45px rgba(67, 46, 18, 0.09); }
.tnyc-topic-art { position: relative; display: grid; place-items: center; overflow: hidden; border-bottom: 1px solid var(--tnyc-line); }
.tnyc-topic-art::before { content: ""; position: absolute; inset: 0; opacity: 0.55; background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 64%); }
.tnyc-topic-card.tnyc-gold .tnyc-topic-art { background: #e8cd79; }
.tnyc-topic-card.tnyc-blue .tnyc-topic-art { background: #b8ced0; }
.tnyc-topic-card.tnyc-rose .tnyc-topic-art { background: #d9b3a0; }
.tnyc-topic-card.tnyc-sage .tnyc-topic-art { background: #c0c8aa; }
.tnyc-topic-card.tnyc-ochre .tnyc-topic-art { background: #d7b875; }
.tnyc-topic-card.tnyc-red .tnyc-topic-art { background: #c78f7e; }
.tnyc-topic-art img { position: relative; z-index: 2; width: 68%; height: 175px; object-fit: contain; filter: drop-shadow(0 7px 5px rgba(50, 34, 13, 0.08)); }
.tnyc-topic-card.tnyc-rose .tnyc-topic-art img { width: 78%; }
.tnyc-engraved-circle { position: absolute; width: 170px; height: 170px; border: 1px solid rgba(25, 24, 21, 0.2); border-radius: 50%; }
.tnyc-topic-content { min-width: 0; display: flex; flex-direction: column; padding: 25px 27px 28px; }
.tnyc-card-meta { margin: 0 0 12px; color: #766e63; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; line-height: 1.4; text-transform: uppercase; }
.tnyc-topic-content h3 { margin: 0 0 12px; font: 400 25px/1.12 Georgia, serif; letter-spacing: -0.02em; }
.tnyc-topic-content > p:not(.tnyc-card-meta) { margin: 0; color: #625c54; font: 14px/1.55 Georgia, serif; }
.tnyc-card-link { margin-top: auto; padding-top: 21px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.tnyc-card-link span { float: right; font-size: 15px; }

.tnyc-card-preview-section { background: #e9e1d2; }
.tnyc-card-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.tnyc-card-preview {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--tnyc-line);
  background: #f8f4ea;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tnyc-card-preview:hover { transform: translateY(-5px); box-shadow: 0 22px 45px rgba(67, 46, 18, 0.09); }
.tnyc-card-preview-art {
  height: 560px;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  border-bottom: 1px solid var(--tnyc-line);
}
.tnyc-card-preview.tnyc-gold .tnyc-card-preview-art { background: #e8cd79; }
.tnyc-card-preview.tnyc-blue .tnyc-card-preview-art { background: #b8ced0; }
.tnyc-card-preview.tnyc-rose .tnyc-card-preview-art { background: #d9b3a0; }
.tnyc-card-preview.tnyc-sage .tnyc-card-preview-art { background: #c0c8aa; }
.tnyc-card-preview.tnyc-ochre .tnyc-card-preview-art { background: #d7b875; }
.tnyc-card-preview.tnyc-red .tnyc-card-preview-art { background: #c78f7e; }
.tnyc-card-preview-art img {
  width: auto !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  display: block;
  object-fit: contain !important;
  object-position: center center !important;
  filter: drop-shadow(0 8px 7px rgba(50, 34, 13, 0.12));
}
.tnyc-card-preview-copy { flex: 1; display: flex; flex-direction: column; padding: 27px 29px 30px; }
.tnyc-card-preview-copy h3 { margin: 0 0 13px; font: 400 28px/1.08 Georgia, serif; letter-spacing: -0.025em; }
.tnyc-card-preview-copy > p:not(.tnyc-card-meta) { margin: 0; color: #625c54; font: 15px/1.55 Georgia, serif; }
.tnyc-card-preview-link { margin-top: auto; padding-top: 24px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.tnyc-card-preview-link b { float: right; font-size: 16px; font-weight: 400; }
.tnyc-card-preview-more { display: flex; justify-content: center; margin-top: 42px; }
.tnyc-card-preview-more a { padding-bottom: 8px; border-bottom: 1px solid var(--tnyc-ink); font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.tnyc-card-preview-more span { margin-left: 12px; }

.tnyc-article-demo { padding: 110px max(5vw, calc((100vw - 1280px) / 2)); background: var(--tnyc-ink); color: #f8f2e5; }
.tnyc-article-intro { max-width: 820px; }
.tnyc-article-label { margin: 45px 0 18px; color: #d3ad45; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.tnyc-article-intro h2 { max-width: 800px; margin: 0; font: 400 clamp(55px, 6vw, 86px)/0.98 Georgia, serif; letter-spacing: -0.05em; }
.tnyc-article-lede { max-width: 770px; margin: 30px 0 26px; color: rgba(255, 255, 255, 0.72); font: 20px/1.6 Georgia, serif; }
.tnyc-article-button { display: inline-flex; gap: 18px; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.6); font-size: 10px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.tnyc-article-body-wrap { display: grid; grid-template-columns: minmax(0, 760px) 340px; gap: 100px; align-items: start; margin-top: 85px; }
.tnyc-article-copy { color: #eae2d5; font: 18px/1.82 Georgia, serif; }
.tnyc-article-copy > p { margin: 0 0 35px; }
.tnyc-article-copy h3 { margin: 60px 0 18px; color: #fff; font: 400 35px/1.15 Georgia, serif; }
.tnyc-inline-symbol-card { display: grid; grid-template-columns: 170px 1fr; gap: 26px; align-items: center; margin: 55px 0; padding: 28px; background: #f0e8d9; color: var(--tnyc-ink); }
.tnyc-inline-symbol-card img { width: 160px; height: 160px; object-fit: contain; }
.tnyc-inline-symbol-card h4 { margin: 0 0 8px; font: 400 25px/1.15 Georgia, serif; }
.tnyc-inline-symbol-card p:not(.tnyc-card-meta) { margin: 0 0 12px; color: #5f574e; font: 14px/1.55 Arial, sans-serif; }
.tnyc-inline-symbol-card a { color: var(--tnyc-red); font: 700 10px Arial, sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }
.tnyc-meaning-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.tnyc-meaning-pills span { padding: 9px 13px; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 30px; font: 700 9px Arial, sans-serif; letter-spacing: 0.1em; text-transform: uppercase; }

.tnyc-article-visual { position: sticky; top: 132px; }
.tnyc-visual-number { margin: 0 0 10px; color: #d2ad42; font: 12px Georgia, serif; }
.tnyc-visual-card { height: 420px; display: grid; place-items: center; overflow: hidden; background: #dfbd50; }
.tnyc-visual-card img { width: 92%; height: 92%; object-fit: contain; }
.tnyc-visual-caption { margin: 17px 0 25px; color: rgba(255, 255, 255, 0.62); font: 13px/1.55 Georgia, serif; }
.tnyc-visual-caption strong { display: block; color: #fff; }
.tnyc-article-visual dl { margin: 0; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.tnyc-article-visual dl div { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.2); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.tnyc-article-visual dt { color: rgba(255, 255, 255, 0.48); }
.tnyc-article-visual dd { margin: 0; }

.tnyc-booking-section {
  scroll-margin-top: 110px;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(45px, 6vw, 95px);
  align-items: start;
  padding: 110px max(5vw, calc((100vw - 1380px) / 2));
  background:
    radial-gradient(circle at 8% 12%, rgba(215, 173, 54, 0.2), transparent 25%),
    #e9e1d2;
  border-bottom: 1px solid var(--tnyc-line);
}
.tnyc-booking-intro { position: sticky; top: 145px; }
.tnyc-booking-intro h2 {
  max-width: 560px;
  margin: 0;
  font: 400 clamp(49px, 5.3vw, 76px)/0.98 Georgia, serif;
  letter-spacing: -0.048em;
}
.tnyc-booking-intro > p:not(.tnyc-kicker):not(.tnyc-booking-note) {
  max-width: 530px;
  margin: 30px 0 0;
  color: #514c45;
  font: 18px/1.65 Georgia, serif;
}
.tnyc-reading-formats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.tnyc-reading-formats span {
  padding: 9px 14px;
  border: 1px solid rgba(25, 24, 21, 0.28);
  border-radius: 999px;
  background: rgba(251, 248, 240, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.tnyc-booking-note {
  max-width: 460px;
  margin: 26px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(25, 24, 21, 0.18);
  color: #70695f;
  font-size: 11px;
  line-height: 1.6;
}
.tnyc-booking-fallback {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--tnyc-ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tnyc-cancellation-policy {
  max-width: 540px;
  margin-top: 38px;
  padding: 26px 28px 24px;
  border: 1px solid rgba(25, 24, 21, 0.2);
  background: rgba(251, 248, 240, 0.58);
}
.tnyc-cancellation-policy h3 {
  margin: 0 0 17px;
  font: 400 25px/1.15 Georgia, serif;
  letter-spacing: -0.02em;
}
.tnyc-cancellation-policy p {
  margin: 0 0 13px;
  color: #625c54;
  font-size: 11px;
  line-height: 1.62;
}
.tnyc-cancellation-policy p:last-child { margin-bottom: 0; font-weight: 700; }
.tnyc-cancellation-policy a { color: var(--tnyc-red); text-decoration: underline; text-underline-offset: 2px; }
.tnyc-booking-calendar {
  min-width: 0;
  min-height: 700px;
  padding: clamp(18px, 2.4vw, 34px);
  background: #fbf8f0;
  border: 1px solid rgba(25, 24, 21, 0.24);
  box-shadow: 20px 22px 0 rgba(96, 73, 38, 0.09), 0 28px 70px rgba(56, 41, 20, 0.1);
}
.tnyc-booking-calendar .tidycal-embed { min-height: 640px; }
.tnyc-booking-calendar .tidycal-embed:empty {
  display: grid;
  place-items: center;
  color: #746d63;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.tnyc-booking-calendar .tidycal-embed:empty::before { content: "Booking calendar loading…"; }
.tnyc-booking-calendar noscript p { margin: 0; font: 15px/1.6 Georgia, serif; }
.tnyc-booking-calendar noscript a { color: var(--tnyc-red); text-decoration: underline; }

.tnyc-section-heading.tnyc-compact { margin-bottom: 40px; }
.tnyc-related-layout { display: grid; grid-template-columns: 1.55fr 0.8fr; gap: 18px; }
.tnyc-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.tnyc-story-card { min-height: 430px; display: grid; grid-template-rows: 255px 1fr; overflow: hidden; border: 1px solid var(--tnyc-line); background: #f3eddf; }
.tnyc-story-art { display: grid; place-items: center; overflow: hidden; background: #d8d0be; border-bottom: 1px solid var(--tnyc-line); }
.tnyc-story-card:nth-child(2) .tnyc-story-art { background: #dbbd60; }
.tnyc-story-card:nth-child(3) .tnyc-story-art { background: #b6c1aa; }
.tnyc-story-art img { width: 78%; height: 205px; object-fit: contain; transition: transform 0.25s ease; }
.tnyc-story-card:hover .tnyc-story-art img { transform: scale(1.04); }
.tnyc-story-card > div { min-width: 0; display: flex; flex-direction: column; padding: 22px; }
.tnyc-story-card p { margin: 0 0 11px; color: #746b61; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.tnyc-story-card h3 { margin: 0; font: 400 24px/1.18 Georgia, serif; }
.tnyc-story-link { margin-top: auto; padding-top: 18px; font-size: 9px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.tnyc-story-link span { float: right; }

.tnyc-visual-system-note { padding: 42px; background: #9e382f; color: #fff6e8; }
.tnyc-note-label { margin: 0 0 34px; color: #e3c975; font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.tnyc-visual-system-note h3 { margin: 0 0 42px; font: 400 31px/1.2 Georgia, serif; }
.tnyc-use-list { display: grid; gap: 20px; }
.tnyc-use-list > div { display: grid; grid-template-columns: 27px 1fr; gap: 13px; padding-top: 17px; border-top: 1px solid rgba(255, 255, 255, 0.22); }
.tnyc-use-list span { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 50%; font-size: 9px; }
.tnyc-use-list p { margin: 0; color: rgba(255, 255, 255, 0.72); font: 13px/1.5 Georgia, serif; }
.tnyc-use-list strong { display: block; color: #fff; font-family: Arial, sans-serif; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }

.tnyc-newsletter {
  position: relative;
  min-height: 350px;
  display: grid;
  grid-template-columns: 150px minmax(280px, 1fr) minmax(320px, 440px) 150px;
  align-items: center;
  gap: 25px;
  padding: 65px 5vw;
  overflow: hidden;
  background: #283b38;
  color: #f8f2e5;
}
.tnyc-newsletter img { width: 150px; height: 180px; object-fit: contain; }
.tnyc-newsletter h2 { max-width: 700px; margin: 0; font: 400 clamp(34px, 3.4vw, 52px)/1.08 Georgia, serif; letter-spacing: -0.035em; }
.tnyc-newsletter-copy > p:last-child { max-width: 650px; margin: 15px 0 0; color: rgba(255, 255, 255, 0.68); font: 15px/1.55 Georgia, serif; }
.tnyc-newsletter-heart { transform: rotate(7deg); }
.tnyc-klaviyo-wrap { min-height: 90px; padding: 12px; border: 1px solid rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.05); }
.tnyc-klaviyo-wrap .klaviyo-form-Sp8BNs:empty { min-height: 64px; display: grid; place-items: center; }
.tnyc-klaviyo-wrap .klaviyo-form-Sp8BNs:empty::before { content: "Email signup loading…"; color: rgba(255, 255, 255, 0.56); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.tnyc-klaviyo-wrap noscript p { margin: 0; color: #fff; font-size: 12px; }

.tnyc-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 40px; padding: 55px 5vw; border-top: 1px solid rgba(255, 255, 255, 0.1); background: var(--tnyc-ink); color: #fff; }
.tnyc-footer-brand span { font: 34px Georgia, serif; }
.tnyc-footer-brand p,
.tnyc-footer-note { margin: 9px 0 0; color: rgba(255, 255, 255, 0.45); font-size: 10px; }
.tnyc-footer-links { display: flex; gap: 28px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.tnyc-footer-note { text-align: right; }
.tnyc-footer-legal { grid-column: 1 / -1; display: flex; flex-wrap: wrap; justify-content: center; gap: 11px 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.58); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.tnyc-footer-legal a { min-height: 32px; display: inline-flex; align-items: center; }

@media (prefers-reduced-motion: reduce) {
  .tnyc-home *,
  .tnyc-home *::before,
  .tnyc-home *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

@media (max-width: 1180px) {
  .tnyc-site-header { grid-template-columns: 1fr auto auto; }
  .tnyc-menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--tnyc-line);
    background: transparent;
    color: var(--tnyc-ink);
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .tnyc-menu-icon { width: 20px; display: grid; gap: 5px; }
  .tnyc-menu-icon i { display: block; height: 1px; background: currentColor; transition: transform 0.2s ease; }
  .tnyc-menu-toggle[aria-expanded="true"] .tnyc-menu-icon i:first-child { transform: translateY(3px) rotate(45deg); }
  .tnyc-menu-toggle[aria-expanded="true"] .tnyc-menu-icon i:last-child { transform: translateY(-3px) rotate(-45deg); }
  .tnyc-site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 5vw 28px;
    background: #fbf8f0;
    border-bottom: 1px solid var(--tnyc-line);
    box-shadow: 0 25px 45px rgba(40, 30, 16, 0.11);
  }
  .tnyc-site-nav.is-open { display: flex; }
  .tnyc-site-nav a { min-height: 48px; display: flex; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(25, 24, 21, 0.1); }
  .tnyc-site-nav a::after { display: none; }
  .tnyc-hero { grid-template-columns: 1fr; background: #f9f5eb; }
  .tnyc-hero-stage { min-height: 620px; background: #e9e1d2; }
  .tnyc-topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tnyc-card-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tnyc-article-body-wrap { grid-template-columns: minmax(0, 1fr) 300px; gap: 45px; }
  .tnyc-booking-section { grid-template-columns: 1fr; }
  .tnyc-booking-intro { position: static; }
  .tnyc-related-layout { grid-template-columns: 1fr; }
  .tnyc-newsletter { grid-template-columns: 110px 1fr minmax(300px, 0.8fr); }
  .tnyc-newsletter-heart { display: none !important; }
}

@media (max-width: 782px) {
  body.admin-bar .tnyc-site-header { top: 46px; }
}

@media (max-width: 760px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  .tnyc-announcement { min-height: 36px; gap: 8px; font-size: 8px; }
  .tnyc-site-header { min-height: 78px; grid-template-columns: 1fr auto auto; gap: 8px; padding: 0 18px; }
  .tnyc-brand-name { font-size: 30px; }
  .tnyc-brand-symbol { width: 43px; height: 43px; }
  .tnyc-brand { gap: 9px; }
  .tnyc-brand-tagline { display: none; }
  .tnyc-menu-label { display: none; }
  .tnyc-menu-toggle { padding: 9px; }
  .tnyc-header-search { width: 42px; justify-content: center; padding: 7px; }
  .tnyc-header-search span { display: none; }
  .tnyc-header-search b { width: auto; }
  .tnyc-hero-copy { padding: 68px 22px 55px; }
  .tnyc-hero h1 { padding-bottom: 16px; font-size: 57px; }
  .tnyc-hero-deck { margin-top: 42px; font-size: 17px; }
  .tnyc-symbol-search { height: auto; flex-direction: column; box-shadow: none; }
  .tnyc-symbol-search input { height: 52px; border-right: 1px solid rgba(25, 24, 21, 0.26); }
  .tnyc-symbol-search button { height: 50px; }
  .tnyc-hero-stage { min-height: 500px; }
  .tnyc-stage-paper { inset: 13% 10%; padding: 35px; }
  .tnyc-stage-quote { font-size: 22px; }
  .tnyc-stage-wreath { width: 105px; left: -4%; }
  .tnyc-stage-sun { width: 100px; height: 100px; right: -3%; }
  .tnyc-stage-heart { width: 90px; height: 90px; }
  .tnyc-stage-star { width: 75px; height: 75px; }
  .tnyc-stage-cat { width: 85px; right: 18%; }
  .tnyc-orbit-one { width: 360px; height: 360px; }
  .tnyc-orbit-two { width: 440px; height: 440px; }
  .tnyc-content-section { padding: 78px 20px; }
  .tnyc-section-heading { align-items: flex-start; flex-direction: column; }
  .tnyc-section-heading h2 { font-size: 46px; }
  .tnyc-topic-grid { grid-template-columns: 1fr; }
  .tnyc-card-preview-grid { grid-template-columns: 1fr; }
  .tnyc-card-preview-art { height: 500px; }
  .tnyc-card-preview-copy { padding: 24px 22px 27px; }
  .tnyc-card-preview-link, .tnyc-card-link, .tnyc-text-link, .tnyc-booking-fallback { min-height: 44px; display: flex; align-items: center; justify-content: space-between; }
  .tnyc-article-demo { padding: 75px 22px; }
  .tnyc-article-intro h2 { font-size: 54px; }
  .tnyc-article-lede { font-size: 17px; }
  .tnyc-article-body-wrap { grid-template-columns: 1fr; margin-top: 60px; }
  .tnyc-article-visual { position: static; order: -1; }
  .tnyc-visual-card { height: 340px; }
  .tnyc-inline-symbol-card { grid-template-columns: 1fr; }
  .tnyc-inline-symbol-card img { margin: 0 auto; }
  .tnyc-booking-section { gap: 50px; padding: 78px 20px; }
  .tnyc-booking-intro h2 { font-size: 51px; }
  .tnyc-booking-intro > p:not(.tnyc-kicker):not(.tnyc-booking-note) { font-size: 17px; }
  .tnyc-cancellation-policy { max-width: none; padding: 23px 21px; }
  .tnyc-booking-calendar { min-height: 620px; padding: 12px; box-shadow: 10px 12px 0 rgba(96, 73, 38, 0.09); }
  .tnyc-booking-calendar .tidycal-embed { min-height: 590px; }
  .tnyc-booking-calendar iframe, .tnyc-guide-booking-calendar iframe { width: 100% !important; max-width: 100% !important; }
  .tnyc-related-grid { grid-template-columns: 1fr; }
  .tnyc-newsletter { grid-template-columns: 1fr; padding: 70px 25px; text-align: center; }
  .tnyc-newsletter-keys { margin: 0 auto; }
  .tnyc-newsletter .tnyc-kicker { justify-content: center; }
  .tnyc-klaviyo-wrap { width: 100%; }
  .tnyc-footer { grid-template-columns: 1fr; text-align: center; }
  .tnyc-footer-links { flex-wrap: wrap; justify-content: center; }
  .tnyc-footer-note { text-align: center; }
  .tnyc-footer-legal { justify-content: center; padding-top: 22px; }
}

@media (max-width: 420px) {
  .tnyc-hero h1 { font-size: 49px; }
  .tnyc-stage-paper { inset: 12% 8%; }
  .tnyc-stage-quote { font-size: 19px; }
  .tnyc-topic-content h3 { font-size: 23px; }
  .tnyc-card-preview-art { height: 450px; padding: 18px; }
  .tnyc-article-intro h2 { font-size: 46px; }
  .tnyc-article-copy { font-size: 17px; }
}
