:root {
  --ink: #2f281c;
  --muted: #6f654f;
  --cream: #fffaf0;
  --paper: #fffdf7;
  --line: #e5c786;
  --gold: #c99d45;
  --deep: #1f5b2a;
  --deep-2: #123f20;
  --red: #d93b35;
  --green: #3d8c51;
  --shadow: 0 12px 32px rgba(70, 48, 18, .12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  background:
    radial-gradient(circle at 18% 8%, rgba(221, 189, 106, .18), transparent 28%),
    linear-gradient(180deg, #fffdf7 0%, #fff8e9 66%, #f8edd5 100%);
}

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

.page-shell {
  min-width: 1180px;
  max-width: 1450px;
  margin: 0 auto;
  overflow: hidden;
  background: rgba(255, 252, 244, .9);
}

.site-header {
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(260px, 285px) minmax(300px, 370px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 10px 14px 10px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 246, .94);
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #fffaf0;
  box-shadow: 0 4px 12px rgba(115, 81, 31, .12), inset 0 0 0 4px #fffdf7;
  overflow: hidden;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  display: block;
}

.brand strong {
  font-size: 25px;
  line-height: .95;
  letter-spacing: 0;
  color: #5a3c17;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.25;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  height: 34px;
  border: 1px solid #ead9ae;
  border-radius: 999px;
  background: #fffdf8;
  overflow: hidden;
}

.search-box span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 18px;
  font-family: "Yu Gothic", sans-serif;
  font-size: 13px;
}

.search-box button {
  height: 100%;
  border: 0;
  border-left: 1px solid #ead9ae;
  background: #f8f0df;
  font-size: 22px;
  cursor: pointer;
}

.nav-icons {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: center;
  min-width: 0;
  height: 100%;
}

.nav-icons a {
  min-width: 0;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 5px;
  font-family: "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 12px;
}

.nav-icons span {
  font-size: 22px;
  line-height: 1;
}

.nav-icons .active {
  color: #fff;
  background: linear-gradient(180deg, #2f6a33, #173f20);
  box-shadow: 0 3px 0 #0e2f17, inset 0 0 0 1px rgba(255,255,255,.22);
}

.dashboard {
  display: grid;
  grid-template-columns: minmax(240px, 255px) minmax(0, 1fr) minmax(320px, 355px);
  gap: 10px;
  padding: 12px 9px 9px;
}

.panel,
.mini-card,
.hero-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,249,234,.94)),
    var(--paper);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}

.left-rail,
.right-rail,
.center-stage {
  display: grid;
  gap: 10px;
  align-content: start;
}

.profile-card {
  padding: 13px 12px 9px;
  text-align: center;
}

.profile-card::before,
.profile-card::after,
.basic-card::before,
.basic-card::after {
  content: "❧";
  position: absolute;
  top: 19px;
  color: #c5a461;
  font-size: 30px;
  opacity: .65;
}

.profile-card::before,
.basic-card::before { left: 16px; }
.profile-card::after,
.basic-card::after { right: 16px; transform: scaleX(-1); }

.portrait-wrap {
  width: 180px;
  height: 205px;
  margin: 0 auto 7px;
  border: 2px solid var(--gold);
  border-radius: 50% / 43%;
  padding: 7px;
  background: #fff7df;
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% / 43%;
}

.profile-card h1 {
  margin: 0;
  font-size: 17px;
  letter-spacing: 0;
}

.profile-card p {
  margin: 2px 0 8px;
  font-size: 13px;
  font-weight: 700;
}

.profile-card .image-note,
.image-note {
  margin: -2px 0 6px;
  color: #7b6b4b;
  font-family: "Yu Gothic", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.profile-list {
  margin: 0;
  display: grid;
  gap: 3px;
}

.profile-list div {
  display: grid;
  grid-template-columns: 95px 1fr;
  min-height: 29px;
  align-items: center;
  border: 1px solid #ead7a9;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(255,255,255,.55);
}

.profile-list dt,
.profile-list dd {
  margin: 0;
  font-family: "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.profile-list dt {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 9px;
  color: #5c512f;
  background: rgba(248, 238, 211, .75);
}

.profile-list dd {
  padding: 0 8px;
  text-align: right;
}

.price-card {
  padding: 10px 15px 13px;
  text-align: center;
}

.price-card h2,
.basic-card h2 {
  margin: 0 auto 10px;
  width: 100%;
  min-height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
  white-space: nowrap;
  background: linear-gradient(180deg, #2b6a32, #14401d);
  border: 1px solid #b68b31;
  border-radius: 3px;
  box-shadow: 0 2px 0 #d7b266;
  overflow: visible;
}

.price-card strong {
  display: block;
  color: #254d25;
  font-size: 24px;
  line-height: 1.15;
}

.price-card small {
  font-size: 17px;
  color: var(--ink);
}

.price-card p,
.basic-card p {
  margin: 7px 0 0;
  font-family: "Yu Gothic", sans-serif;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

.basic-card {
  padding: 9px 13px 10px;
}

.basic-card h2 {
  margin-bottom: 8px;
}

.basic-card p {
  display: grid;
  grid-template-columns: 75px 1fr;
  text-align: left;
}

.basic-card span {
  color: #76622b;
}

.hero-card {
  height: 382px;
  overflow: hidden;
  border-width: 2px;
  border-radius: 14px;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-note {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff8df;
  background: rgba(18, 63, 31, .72);
  font-family: "Yu Gothic", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  padding: 44px 40px;
  color: #fff9df;
  background: linear-gradient(90deg, rgba(18, 35, 18, .78) 0%, rgba(19, 40, 22, .47) 43%, transparent 76%);
  text-shadow: 0 2px 9px rgba(0,0,0,.55);
}

.unofficial-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(230, 193, 101, .8);
  border-radius: 999px;
  color: #f7e7b8;
  background: rgba(19, 63, 31, .72);
  font-family: "Yu Gothic", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-emblem {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: 5px 0 5px 74px;
  border: 1px solid rgba(230, 193, 101, .9);
  border-radius: 50%;
  background: rgba(255, 250, 236, .88);
  box-shadow: 0 4px 18px rgba(0,0,0,.22), inset 0 0 0 3px rgba(255,255,255,.72);
}

.hero-emblem img {
  width: 28px;
  height: 28px;
  display: block;
}

.hero-overlay h2 {
  margin: 4px 0 18px;
  font-size: 38px;
  line-height: 1.36;
  font-weight: 800;
}

.hero-overlay p {
  width: 455px;
  margin: 0 0 16px;
  font-family: "Yu Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 160px;
  height: 38px;
  padding: 0 23px;
  border: 1px solid #d4aa54;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(180deg, #2f7539, #17451f);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 2px 0 #bc9241;
  font-family: "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.button.small {
  min-width: max-content;
  height: 30px;
  padding: 0 14px;
  font-size: 12px;
  white-space: nowrap;
}

.button.wide {
  width: min(100%, 230px);
  margin: 4px auto 0;
  display: flex;
  min-height: 38px;
  height: auto;
  padding-block: 8px;
  text-align: center;
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 11px;
}

.slider-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #dcb563;
  box-shadow: 0 0 0 2px rgba(255,255,255,.32);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.mini-card {
  min-height: 146px;
  padding: 11px 13px;
}

.mini-card h3,
.panel h2 {
  margin: 0 0 8px;
  color: #22582b;
  font-size: 17px;
  line-height: 1.1;
  border-bottom: 1px solid #cdbb8d;
  padding-bottom: 7px;
}

.mini-card h3::before,
.panel h2::before {
  content: "✦";
  color: var(--gold);
  margin-right: 7px;
}

.mini-card p,
.mini-card li,
.mini-card small {
  font-family: "Yu Gothic", sans-serif;
  font-size: 12px;
  line-height: 1.45;
}

.mini-card p {
  margin: 4px 0;
}

.mini-card strong {
  display: block;
  font-size: 19px;
  line-height: 1.55;
}

.mini-card.centered {
  text-align: center;
}

.mini-card.centered strong {
  color: #2b5227;
}

.mini-card ul {
  margin: 4px 0 0 14px;
  padding: 0;
}

.middle-grid {
  display: grid;
  grid-template-columns: 1fr 1.48fr;
  gap: 10px;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1.55fr 1.25fr 1fr;
  gap: 10px;
  align-items: start;
}

.panel {
  padding: 12px 13px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.panel-head h2 {
  flex: 1;
}

.panel-head a {
  flex: 0 0 auto;
  color: #22582b;
  font-family: "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 800;
  min-width: 0;
  overflow-wrap: anywhere;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.news-list li {
  display: grid;
  grid-template-columns: 38px 76px 1fr;
  gap: 5px;
  align-items: center;
  font-family: "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid #eddcb7;
  padding-bottom: 3px;
}

.tag {
  display: inline-grid;
  place-items: center;
  height: 18px;
  border-radius: 4px;
  color: #fff;
  font-size: 10px;
  font-family: Arial, sans-serif;
}

.tag.red { background: var(--red); }
.tag.green { background: var(--green); }

table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Yu Gothic", sans-serif;
  font-size: 12px;
  text-align: center;
}

th {
  color: #51472d;
  font-weight: 800;
  border-bottom: 2px solid #d5bf87;
  padding: 3px 2px 6px;
}

td {
  border-bottom: 1px solid #ead9ad;
  padding: 8px 2px 6px;
  font-weight: 700;
}

.caption {
  margin: 7px 0 0;
  color: #76694f;
  font-family: "Yu Gothic", sans-serif;
  font-size: 10px;
}

.points-panel {
  padding-bottom: 14px;
}

.point-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
}

.point-row span {
  width: 62px;
  height: 62px;
  margin: 0 auto 6px;
  display: grid;
  place-items: center;
  border: 4px double #d7ad54;
  border-radius: 50%;
  color: #315f29;
  background: #fff5dc;
  font-size: 34px;
}

.point-row p {
  margin: 0;
  font-family: "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.pickup-content {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 9px;
  align-items: start;
}

.pickup-content img {
  width: 132px;
  height: 82px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #dbc177;
}

.pickup-content h3 {
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 1.35;
}

.pickup-content p,
.growth-panel li,
.owner-note p,
.media-panel li {
  font-family: "Yu Gothic", sans-serif;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.pickup-content p {
  margin: 0 0 7px;
}

.pickup-panel .button.small {
  width: 100%;
  padding: 0 10px;
}

.growth-panel ul,
.media-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.growth-panel li {
  position: relative;
  padding: 1px 0 5px 25px;
}

.growth-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #5aa14f;
}

.recent-panel {
  padding: 14px 15px;
}

.race-note {
  padding: 14px 14px 11px;
  margin-bottom: 9px;
  border: 1px solid #edd49b;
  border-radius: 10px;
  background: rgba(255,255,255,.55);
}

.race-note header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.race-note h3 {
  margin: 0 0 11px;
  font-size: 16px;
  line-height: 1.45;
}

.race-note strong {
  min-width: 58px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid #e0be70;
  border-radius: 6px;
  color: #2c6230;
  background: #fff8df;
  font-size: 25px;
}

.race-note dl {
  margin: 0;
  display: grid;
  gap: 7px;
}

.race-note dl div {
  display: grid;
  grid-template-columns: 76px 1fr;
  font-family: "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.race-note dt,
.race-note dd {
  margin: 0;
}

.owner-note {
  min-height: 305px;
  padding-left: 38px;
  background:
    repeating-linear-gradient(180deg, transparent 0 29px, rgba(201, 157, 69, .22) 30px),
    linear-gradient(180deg, #fffdf8, #fff6e6);
}

.owner-note::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 13px;
  background: repeating-linear-gradient(180deg, #6f5334 0 5px, transparent 5px 19px);
  border-right: 1px solid rgba(111,83,52,.35);
}

.owner-note p {
  margin: 0 0 15px;
}

.owner-note span {
  display: block;
  text-align: right;
  color: #827252;
  font-style: italic;
}

.media-panel li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 9px;
  align-items: center;
  margin-bottom: 8px;
}

.media-panel small {
  display: block;
  grid-column: 2;
  color: #756847;
}

.media-panel b {
  grid-column: 2;
}

.play {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: #fff;
}

.play.red { background: #b9382f; }
.play.green { background: #4e8d43; }
.play.gold { background: #8d7b34; }

.site-footer {
  min-height: 92px;
  display: grid;
  grid-template-columns: 250px 1fr 490px;
  gap: 25px;
  align-items: center;
  padding: 12px 34px;
  color: #fff9dc;
  background:
    linear-gradient(rgba(23, 62, 31, .93), rgba(23, 62, 31, .93)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(255,255,255,.04) 12px 24px);
  border-top: 3px solid #b98f42;
}

.footer-mark {
  color: #d9b96b;
  font-size: 54px;
}

.thanks {
  margin: 0;
  color: #d9b96b;
  font-family: "Brush Script MT", cursive;
  font-size: 43px;
}

.site-footer p {
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 700;
}

.support-box {
  padding: 10px 18px;
  border: 1px solid #d7b064;
  border-radius: 10px;
  color: var(--ink);
  background: #fff8e8;
}

.support-box h2 {
  margin: 0 0 4px;
  color: #25582a;
  font-size: 17px;
}

.support-box p {
  margin: 0 0 7px;
  color: var(--ink);
  font-family: "Yu Gothic", sans-serif;
  font-size: 12px;
}

.sub-page {
  min-height: 100vh;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 0, rgba(215, 176, 92, .22), transparent 28%),
    linear-gradient(180deg, #fffdf7, #fbf1da);
}

.rose-page {
  background:
    radial-gradient(circle at 18% 6%, rgba(225, 142, 160, .26), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(215, 176, 92, .22), transparent 24%),
    linear-gradient(180deg, #fffdf8, #fff1ef 48%, #fbf1da);
}

.back-link {
  display: inline-block;
  margin-bottom: 14px;
  color: #24572a;
  font-family: "Yu Gothic", sans-serif;
  font-weight: 800;
}

.sub-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px;
}

.sub-panel h1 {
  margin: 0 0 14px;
  color: #23572a;
  font-size: 28px;
  border-bottom: 1px solid #d3b878;
  padding-bottom: 10px;
}

.sub-hero {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
}

.sub-hero img {
  width: 220px;
  height: 240px;
  object-fit: cover;
  border: 3px double #d7a34f;
  border-radius: 50% / 43%;
  background: #fff7e8;
}

.sub-hero p {
  font-family: "Yu Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

.sub-panel > p,
.report-list,
.video-list p {
  font-family: "Yu Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

.video-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.video-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid #e3c27b;
  border-radius: 8px;
  background: rgba(255,255,255,.64);
}

.video-list h2 {
  margin: 0 0 4px;
  color: #23572a;
  font-size: 18px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.video-list p {
  margin: 0 0 10px;
}

.detail-hero {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: center;
  margin: 18px 0;
}

.detail-hero img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 1px solid #d8bc77;
  border-radius: 8px;
}

.detail-hero h2 {
  margin: 0 0 8px;
  color: #24572a;
  font-size: 22px;
  line-height: 1.45;
}

.detail-label {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fff;
  background: #24572a;
  font-family: "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.detail-label.rose {
  background: linear-gradient(90deg, #a44b67, #24572a);
}

.detail-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
  font-family: "Yu Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 700;
}

.detail-list li {
  padding: 11px 13px;
  border: 1px solid #e6ca88;
  border-radius: 6px;
  background: rgba(255,255,255,.58);
}

.external-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.lead {
  font-family: "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 800;
  color: #4a3825;
}

.pedigree-tree {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.horse-node {
  min-height: 132px;
  padding: 14px;
  border: 1px solid #dfbd76;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,246,233,.92)),
    #fff9f1;
  box-shadow: 0 10px 22px rgba(114, 69, 30, .08);
}

.horse-node.main {
  grid-column: span 4;
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 118px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(36, 87, 42, .92), rgba(164, 75, 103, .9)),
    #24572a;
}

.horse-node.sire,
.horse-node.dam {
  grid-column: span 2;
}

.horse-node span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff;
  background: #24572a;
  font-family: "Yu Gothic", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.horse-node.main span,
.rose-node span {
  background: #a44b67;
}

.horse-node strong {
  display: block;
  color: #214f26;
  font-size: 23px;
  line-height: 1.25;
  word-break: keep-all;
  overflow-wrap: normal;
}

.horse-node.grand strong {
  font-size: 20px;
}

.horse-node.main strong {
  color: #fff7dc;
  font-size: 32px;
}

.horse-node small {
  display: block;
  margin-top: 8px;
  font-family: "Yu Gothic", sans-serif;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

.soft-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.soft-cards article,
.memo-wall article,
.timeline article {
  padding: 15px;
  border: 1px solid #e0bf78;
  border-radius: 12px;
  background: rgba(255,255,255,.68);
}

.soft-cards h2,
.timeline h2 {
  margin: 0 0 8px;
  color: #24572a;
  font-size: 18px;
}

.soft-cards p,
.memo-wall p,
.timeline p {
  margin: 0;
  font-family: "Yu Gothic", sans-serif;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 700;
}

.large-table {
  margin: 18px 0;
  font-size: 13px;
}

.timeline,
.memo-wall {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.timeline time {
  color: #a44b67;
  font-family: "Yu Gothic", sans-serif;
  font-weight: 900;
}

.memo-wall {
  grid-template-columns: repeat(3, 1fr);
}

.memo-wall article {
  position: relative;
  background: linear-gradient(180deg, #fff, #fff3f2);
}

.memo-wall span {
  display: block;
  margin-top: 10px;
  color: #a44b67;
  text-align: right;
  font-family: "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .sub-hero,
  .detail-hero,
  .pedigree-tree,
  .soft-cards,
  .memo-wall {
    grid-template-columns: 1fr;
  }

  .detail-hero,
  .detail-hero > *,
  .video-list article,
  .video-list article > * {
    min-width: 0;
  }

  .detail-hero img {
    width: 100%;
    height: 220px;
  }

  .detail-hero h2,
  .video-list h2 {
    font-size: 18px;
    line-height: 1.55;
  }

  .video-list article {
    grid-template-columns: 1fr;
  }

  .video-list .play {
    margin-bottom: 2px;
  }

  .horse-node.main,
  .horse-node.sire,
  .horse-node.dam {
    grid-column: span 1;
  }
}

.report-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.report-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  border: 1px solid #e6ca88;
  border-radius: 6px;
  overflow: hidden;
}

.report-list dt,
.report-list dd {
  margin: 0;
  padding: 10px 12px;
}

.report-list dt {
  color: #4d4328;
  background: #f5e7c2;
}

.message-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  font-family: "Yu Gothic", sans-serif;
  font-weight: 800;
}

.message-form label {
  display: grid;
  gap: 7px;
}

.message-form input,
.message-form textarea {
  width: 100%;
  border: 1px solid #d8bc77;
  border-radius: 6px;
  padding: 11px 12px;
  font: inherit;
  background: #fffdf7;
}

.price-card.panel > h2,
.basic-card.panel > h2 {
  color: #fff;
  border-bottom: 0;
  padding-bottom: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

.price-card.panel > h2::before,
.basic-card.panel > h2::before {
  color: #d9b96b;
}

@media (max-width: 900px) {
  .page-shell {
    min-width: 0;
    width: 100%;
  }

  .site-header,
  .dashboard,
  .info-grid,
  .middle-grid,
  .bottom-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    height: auto;
  }

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

  .hero-card {
    height: 520px;
  }

  .hero-overlay {
    padding: 34px 24px;
  }

  .hero-overlay h2 {
    font-size: 30px;
  }

  .hero-overlay p {
    width: min(100%, 430px);
  }

  .pickup-content {
    grid-template-columns: 1fr;
  }

  .pickup-content img {
    width: 100%;
    height: 190px;
  }
}
