:root {
  --kr-deep: #102f35;
  --kr-text: #17353b;
  --kr-muted: #63777d;
  --kr-line: rgba(24, 51, 58, 0.1);
  --kr-surface: #ffffff;
  --kr-sun: #ffb24a;
  --kr-coral: #f46d3d;
  --kr-sea: #008e9a;
  --kr-leaf: #198d63;
  --kr-sky: #2f80ed;
  --kr-soft-blue: #e9f7fb;
  --kr-soft-green: #ecf8f1;
  --kr-soft-sun: #fff6e6;
  --kr-shadow: 0 26px 70px rgba(21, 55, 62, 0.14);
  --kr-soft-shadow: 0 14px 36px rgba(21, 55, 62, 0.08);
  --kr-radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.kr-home {
  margin: 0;
  color: var(--kr-text);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 6% 14%, rgba(47, 128, 237, 0.08) 0, transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(255, 178, 74, 0.14) 0, transparent 24%),
    linear-gradient(180deg, #f5fbfc 0%, #fffdf7 36%, #f3faf5 100%);
  overflow-x: hidden;
}

.kr-home img {
  display: block;
  max-width: 100%;
}

.text-center {
  text-align: center;
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.visible,
.kr-hero-content.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.kr-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.kr-carousel,
.kr-slide,
.kr-hero-overlay {
  position: absolute;
  inset: 0;
}

.kr-carousel {
  z-index: -3;
}

.kr-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 7s linear;
}

.kr-slide.active {
  opacity: 1;
  transform: scale(1);
}

.kr-hero-overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 32, 38, 0.3) 0%, rgba(5, 32, 38, 0.16) 44%, rgba(5, 32, 38, 0.54) 100%),
    linear-gradient(116deg, rgba(3, 58, 64, 0.62) 0%, rgba(13, 115, 127, 0.14) 48%, rgba(244, 109, 61, 0.12) 100%);
}

.kr-topbar {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 5;
  width: min(1180px, calc(100% - 36px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 12px 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(17, 54, 61, 0.32);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(20px) saturate(1.25);
}

.kr-brand,
.kr-nav a,
.kr-top-cta {
  color: #ffffff;
  text-decoration: none;
}

.kr-brand {
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.kr-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.kr-nav a {
  font-size: 0.92rem;
  font-weight: 800;
  opacity: 0.92;
}

.kr-top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  color: #12343b;
  background: #ffffff;
  font-weight: 900;
  white-space: nowrap;
}

.kr-hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 96px auto 56px;
  text-align: center;
}

.kr-hero-subtitle {
  margin: 0 auto 16px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  color: #07313a;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.kr-hero-content h1 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(3.4rem, 7.6vw, 7rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.38);
}

.kr-hero-content > p:not(.kr-hero-subtitle) {
  margin: 22px auto 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.7;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.kr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.kr-btn,
.kr-service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.kr-btn:hover,
.kr-service-btn:hover,
.kr-top-cta:hover {
  transform: translateY(-2px);
}

.kr-btn-core {
  min-height: 50px;
  min-width: 156px;
  padding: 12px 30px;
  color: #1d2d33;
  background: linear-gradient(135deg, #ffd76d 0%, #ffac42 44%, #f36f45 100%);
  font-size: 0.98rem;
  box-shadow: 0 20px 42px rgba(243, 111, 69, 0.38);
}

.kr-btn-glass {
  min-height: 50px;
  min-width: 156px;
  padding: 12px 30px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.98rem;
  backdrop-filter: blur(15px);
}

.kr-btn-telegram {
  min-height: 50px;
  min-width: 156px;
  padding: 12px 30px;
  color: #ffffff;
  background: rgba(36, 155, 215, 0.9);
  font-size: 0.98rem;
  box-shadow: 0 14px 28px rgba(36, 155, 215, 0.22);
}

.kr-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.kr-scroll i {
  width: 18px;
  height: 18px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: kr-bounce 1.6s ease-in-out infinite;
}

@keyframes kr-bounce {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(8px) rotate(45deg);
  }
}

.kr-container {
  width: min(1220px, calc(100% - 34px));
  margin: 0 auto;
  padding: 86px 0 92px;
}

.kr-section {
  margin-top: 92px;
}

.kr-section:first-child {
  margin-top: 0;
}

.kr-section-head {
  max-width: 820px;
  margin: 0 auto 48px;
}

.kr-section-head p {
  margin: 0;
  color: var(--kr-sea);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kr-section-head h2 {
  margin: 12px 0 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.kr-section-head span {
  display: block;
  margin-top: 14px;
  color: var(--kr-muted);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.75;
}

.kr-spots {
  display: grid;
  gap: 38px;
}

.kr-spot-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(24, 51, 58, 0.07);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--kr-shadow);
}

.kr-spot-card.reverse {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.08fr);
}

.kr-spot-card.reverse .kr-spot-img {
  order: 2;
}

.kr-spot-card.reverse .kr-spot-text {
  order: 1;
}

.kr-spot-img {
  overflow: hidden;
  border-radius: 24px;
  background: var(--kr-soft-blue);
}

.kr-spot-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.kr-spot-card:hover .kr-spot-img img {
  transform: scale(1.035);
}

.kr-spot-text {
  padding: 18px 22px;
}

.kr-spot-text strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--kr-sea), var(--kr-leaf));
  font-size: 1.18rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(13, 154, 168, 0.23);
}

.kr-spot-text h3 {
  margin: 22px 0 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: 1.06;
}

.kr-spot-text h4 {
  margin: 10px 0 0;
  color: #c85c34;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kr-spot-text p {
  margin: 18px 0 0;
  color: var(--kr-muted);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.85;
}

.kr-info-board {
  position: relative;
  padding: 50px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 253, 251, 0.88)),
    radial-gradient(circle at 12% 20%, rgba(13, 154, 168, 0.09) 0, transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(255, 178, 74, 0.14) 0, transparent 30%);
  box-shadow: var(--kr-shadow);
}

.kr-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.kr-modern-card {
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--kr-line);
  border-radius: var(--kr-radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--kr-soft-shadow);
}

.kr-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.kr-card-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--kr-sea);
  font-weight: 900;
}

.kr-card-head h3,
.kr-modern-card h3,
.kr-dash-title {
  margin: 0;
  color: var(--kr-deep);
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1.3;
}

.kr-modern-card p {
  margin: 0;
  color: var(--kr-muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
}

.kr-modern-card p + p {
  margin-top: 10px;
}

.kr-modern-card strong {
  color: var(--kr-deep);
}

.kr-modern-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.kr-modern-card li {
  position: relative;
  padding-left: 18px;
  color: #4d6269;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.75;
}

.kr-modern-card li + li {
  margin-top: 7px;
}

.kr-modern-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--kr-coral);
}

.kr-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
}

.kr-pill-group span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #08707c;
  background: var(--kr-soft-blue);
  font-weight: 900;
}

.kr-text-link {
  display: inline-flex;
  margin-top: 15px;
  color: var(--kr-sky);
  font-weight: 900;
  text-decoration: none;
}

.kr-text-link:hover {
  text-decoration: underline;
}

.kr-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

.kr-dash-column {
  display: grid;
  gap: 22px;
  height: 100%;
}

.kr-dash-column > .kr-modern-card,
.kr-photo-card {
  height: 100%;
}

.kr-photo-card {
  padding: 0;
  display: grid;
  grid-template-rows: auto 1fr;
}

.kr-photo-card > img {
  width: 100%;
  height: 258px;
  object-fit: cover;
}

.kr-photo-card > div {
  padding: 26px;
}

.kr-timeline {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.kr-timeline div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4fbfe, #fff9ee);
}

.kr-timeline span {
  color: var(--kr-muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.kr-timeline strong {
  color: var(--kr-deep);
  font-size: 1.06rem;
}

.kr-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.kr-tag-cloud span {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  color: #31515a;
  background: #f1f6f8;
  font-size: 0.94rem;
  font-weight: 900;
}

.kr-tag-cloud .important {
  color: #994818;
  background: #fff0df;
}

.kr-note-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.kr-note-list p {
  padding: 15px 16px;
  border-radius: 18px;
  background: var(--kr-soft-green);
}

.kr-adult-pack-card {
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 215, 168, 0.2), transparent 24%),
    radial-gradient(circle at 92% 18%, rgba(155, 222, 246, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(245, 251, 254, 0.96) 100%);
}

.kr-adult-pack-card-wide {
  margin-top: 22px;
}

.kr-adult-pack-head {
  display: grid;
  gap: 10px;
}

.kr-adult-pack-kicker {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #97501d;
  background: rgba(255, 243, 223, 0.96);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 18px rgba(241, 174, 102, 0.14);
}

.kr-adult-pack-head p {
  margin: 0 !important;
  color: #56707a;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.75;
}

.kr-adult-pack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.kr-adult-pack-card-wide .kr-adult-pack-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kr-adult-pack-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(24, 51, 58, 0.06);
  box-shadow: 0 14px 28px rgba(24, 51, 58, 0.06);
}

.kr-adult-pack-item-priority {
  border-color: rgba(239, 142, 88, 0.24);
  background: linear-gradient(135deg, rgba(255, 245, 232, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow: 0 16px 30px rgba(239, 142, 88, 0.1);
}

.kr-adult-pack-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, #ffdcae 0%, #ffbc7a 100%);
  color: #984516;
  font-size: 1.25rem;
  box-shadow: 0 10px 18px rgba(241, 171, 95, 0.18);
}

.kr-adult-pack-item strong,
.kr-adult-pack-note strong {
  display: block;
  margin: 0 0 6px;
  color: #21404d;
  font-size: 0.98rem;
  font-weight: 900;
}

.kr-adult-pack-item p,
.kr-adult-pack-note p {
  margin: 0;
  color: #5a7079;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.65;
}

.kr-adult-pack-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.kr-adult-pack-note {
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(236, 250, 245, 0.94) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid rgba(116, 196, 154, 0.18);
}

.kr-table-wrap {
  overflow: auto;
  margin-top: 18px;
  border: 1px solid var(--kr-line);
  border-radius: 18px;
}

.kr-table-wrap table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.kr-table-wrap th,
.kr-table-wrap td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(24, 51, 58, 0.09);
}

.kr-table-wrap th {
  color: #12343b;
  background: #eaf8f9;
  font-weight: 900;
}

.kr-table-wrap td {
  color: #425c64;
  font-weight: 700;
}

.kr-table-wrap tr:last-child td {
  border-bottom: 0;
}

.kr-table-wrap tbody tr:nth-child(even) td {
  background: #fbfefd;
}

.kr-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.kr-price-grid div {
  min-height: 118px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff8eb, #eefaf8);
}

.kr-price-grid span,
.kr-price-grid strong {
  display: block;
}

.kr-price-grid span {
  color: var(--kr-muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
}

.kr-price-grid strong {
  margin-top: 12px;
  color: #b94f1f;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
}

.kr-pay-note {
  margin-top: 16px !important;
  padding: 13px 15px;
  border-radius: 16px;
  color: #8a421b !important;
  background: #fff2e4;
  font-weight: 900 !important;
}

.kr-reminder-spot {
  padding: 32px;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 220, 172, 0.18), transparent 22%),
    radial-gradient(circle at 90% 16%, rgba(99, 200, 220, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(245, 251, 253, 0.98) 100%);
}

.kr-reminder-head {
  margin-bottom: 22px;
}

.kr-reminder-head p {
  margin: 0 0 10px;
  color: #1290a3;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kr-reminder-head h2 {
  margin: 0;
  color: var(--kr-deep);
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
}

.kr-reminder-head span {
  display: block;
  max-width: 760px;
  margin-top: 12px;
  color: #5c7079;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}

.kr-deadline-card-standalone {
  padding: 28px;
  border-radius: 30px;
  box-shadow: 0 24px 50px rgba(21, 55, 62, 0.12);
}

.kr-reminder-pins {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.kr-reminder-pins span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  color: #126678;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 144, 163, 0.14);
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(24, 51, 58, 0.06);
}

.kr-deadline-card {
  background:
    linear-gradient(135deg, rgba(255, 246, 230, 0.96), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 90% 16%, rgba(243, 111, 69, 0.12), transparent 28%);
}

.kr-big-date {
  margin-top: 16px;
  padding: 20px;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #0d9aa8, #16a069);
  box-shadow: 0 18px 34px rgba(13, 154, 168, 0.18);
}

.kr-big-date span,
.kr-big-date strong,
.kr-big-date em {
  display: block;
}

.kr-big-date span {
  font-size: 0.9rem;
  font-weight: 800;
  opacity: 0.86;
}

.kr-big-date strong {
  margin-top: 8px;
  font-size: clamp(1.55rem, 3.2vw, 2.5rem);
  font-weight: 900;
  line-height: 1.18;
}

.kr-big-date em {
  margin-top: 10px;
  font-style: normal;
  font-weight: 800;
  opacity: 0.9;
}

.kr-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.kr-mini-grid div {
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(24, 51, 58, 0.08);
}

.kr-mini-grid h4 {
  margin: 0 0 8px;
  color: var(--kr-deep);
  font-size: 1rem;
  font-weight: 900;
}

.kr-mini-grid p {
  font-size: 0.92rem;
  line-height: 1.65;
}

.kr-extra-note {
  margin-top: 16px !important;
}

.kr-submit-confirm-note {
  margin: 14px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid #f08a3e;
  background: linear-gradient(135deg, #fff2e2 0%, #fff8ef 100%);
  color: #9c3f14;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  box-shadow: 0 12px 22px rgba(240, 138, 62, 0.16);
}

.kr-camp-essentials {
  padding: 30px;
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 205, 146, 0.18), transparent 24%),
    radial-gradient(circle at 92% 18%, rgba(111, 198, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 254, 250, 0.98) 0%, rgba(246, 251, 255, 0.96) 100%);
}

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

.kr-camp-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(24, 51, 58, 0.09);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 46px rgba(21, 55, 62, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.kr-camp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(21, 55, 62, 0.16);
}

.kr-camp-card-kids {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 220, 174, 0.28), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(255, 247, 237, 0.96) 100%);
}

.kr-camp-card-youth {
  background:
    radial-gradient(circle at 88% 10%, rgba(146, 223, 255, 0.24), transparent 24%),
    linear-gradient(180deg, rgba(247, 252, 255, 0.98) 0%, rgba(239, 249, 255, 0.96) 100%);
}

.kr-camp-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 236px;
  overflow: hidden;
  padding: 22px 24px 18px;
}

.kr-camp-top-kids {
  background:
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.58), transparent 18%),
    radial-gradient(circle at 16% 22%, rgba(255, 221, 184, 0.95), transparent 20%),
    radial-gradient(circle at 86% 28%, rgba(255, 242, 216, 0.92), transparent 18%),
    linear-gradient(135deg, #fff3d9 0%, #ffe6c4 52%, #fff9ef 100%);
}

.kr-camp-top-youth {
  background:
    radial-gradient(circle at 84% 24%, rgba(119, 205, 255, 0.34), transparent 18%),
    linear-gradient(140deg, #e6f8ff 0%, #d5f0ff 44%, #f4fbff 100%);
}

.kr-camp-top-youth::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -18deg,
      rgba(34, 157, 213, 0.09) 0 18px,
      rgba(34, 157, 213, 0) 18px 44px
    );
}

.kr-camp-top-kids::after,
.kr-camp-top-youth::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 54px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.62) 100%);
}

.kr-camp-cloud {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 20px rgba(230, 173, 96, 0.12);
}

.kr-camp-cloud::before,
.kr-camp-cloud::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: inherit;
}

.kr-camp-cloud-a {
  top: 24px;
  left: 28px;
  width: 74px;
  height: 24px;
}

.kr-camp-cloud-a::before {
  width: 30px;
  height: 30px;
  left: 10px;
  top: -12px;
}

.kr-camp-cloud-a::after {
  width: 28px;
  height: 28px;
  right: 12px;
  top: -10px;
}

.kr-camp-cloud-b {
  top: 44px;
  right: 34px;
  width: 62px;
  height: 20px;
}

.kr-camp-cloud-b::before {
  width: 24px;
  height: 24px;
  left: 8px;
  top: -10px;
}

.kr-camp-cloud-b::after {
  width: 22px;
  height: 22px;
  right: 10px;
  top: -8px;
}

.kr-camp-star {
  position: absolute;
  z-index: 0;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #ffc86d 0%, #ff9d5b 100%);
  clip-path: polygon(50% 0%, 62% 35%, 100% 35%, 70% 57%, 82% 100%, 50% 72%, 18% 100%, 30% 57%, 0% 35%, 38% 35%);
  box-shadow: 0 10px 16px rgba(248, 170, 73, 0.18);
}

.kr-camp-star-a {
  top: 36px;
  right: 112px;
  transform: rotate(10deg);
}

.kr-camp-star-b {
  top: 82px;
  left: 142px;
  width: 14px;
  height: 14px;
  transform: rotate(-12deg);
}

.kr-camp-spark {
  position: absolute;
  border-radius: 999px;
  background: rgba(82, 194, 241, 0.22);
}

.kr-camp-spark-a {
  top: 30px;
  right: 44px;
  width: 96px;
  height: 96px;
}

.kr-camp-spark-b {
  bottom: 20px;
  left: 26px;
  width: 52px;
  height: 52px;
  background: rgba(130, 217, 255, 0.3);
}

.kr-camp-top-copy {
  position: relative;
  z-index: 2;
  flex: 0 0 240px;
  max-width: 240px;
}

.kr-camp-top-copy p {
  margin: 12px 0 0;
  color: rgba(34, 57, 65, 0.72);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.75;
}

.kr-camp-mini-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 22px rgba(24, 51, 58, 0.08);
}

.kr-camp-mini-chip-kids {
  color: #9f4c1f;
  background: rgba(255, 255, 255, 0.94);
}

.kr-camp-mini-chip-youth {
  color: #16526d;
  background: rgba(255, 255, 255, 0.92);
}

.kr-camp-hero-frame {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 320px;
  margin-left: auto;
  padding: 10px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 36px rgba(24, 51, 58, 0.12);
  backdrop-filter: blur(8px);
}

.kr-camp-hero-frame-kids {
  transform: rotate(-2deg);
}

.kr-camp-hero-frame-youth {
  transform: rotate(2deg);
}

.kr-camp-hero-art {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  height: 206px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 10px 24px rgba(24, 51, 58, 0.1);
}

.kr-camp-hero-art-youth {
  object-position: center 56%;
}

.kr-camp-floating {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
}

.kr-camp-floating-kids {
  max-width: 360px;
  padding-top: 58px;
}

.kr-camp-floating-youth {
  max-width: 420px;
  padding-top: 26px;
}

.kr-camp-floating-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: #8f4b17;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 18px rgba(228, 162, 95, 0.16);
  border: 1px solid rgba(232, 171, 108, 0.22);
}

.kr-camp-floating-kids .kr-camp-floating-card:nth-child(2n) {
  transform: translateY(10px);
}

.kr-camp-floating-kids .kr-camp-floating-card:nth-child(3n) {
  transform: rotate(-4deg);
}

.kr-camp-floating-card-youth {
  color: #16536e;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(83, 178, 228, 0.14);
}

.kr-camp-kicker {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.kr-camp-card-kids .kr-camp-kicker {
  color: #a44a1c;
  background: rgba(255, 230, 198, 0.84);
}

.kr-camp-card-youth .kr-camp-kicker {
  color: #15516b;
  background: rgba(218, 244, 255, 0.9);
}

.kr-camp-content {
  padding: 24px 24px 26px;
}

.kr-camp-title-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.kr-camp-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 1.2rem;
  font-weight: 900;
}

.kr-camp-card-kids .kr-camp-no {
  color: #a44919;
  background: linear-gradient(135deg, #ffd28d 0%, #ffb56d 100%);
  box-shadow: 0 12px 24px rgba(242, 162, 86, 0.24);
}

.kr-camp-card-youth .kr-camp-no {
  color: #124d68;
  background: linear-gradient(135deg, #8ee1ff 0%, #5bc2f1 100%);
  box-shadow: 0 12px 24px rgba(91, 194, 241, 0.24);
}

.kr-camp-title-row h3 {
  margin: 2px 0 6px;
  color: var(--kr-deep);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.25;
}

.kr-camp-title-row p {
  margin: 0;
  color: #5b7078;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.75;
}

.kr-camp-panel {
  margin-top: 18px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(237, 166, 99, 0.22);
}

.kr-camp-panel-cool {
  border-color: rgba(89, 182, 237, 0.22);
  background: rgba(248, 253, 255, 0.82);
}

.kr-camp-panel h4 {
  margin: 0 0 8px;
  color: #8f4517;
  font-size: 1rem;
  font-weight: 900;
}

.kr-camp-panel-cool h4 {
  color: #16516c;
}

.kr-camp-kit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.kr-camp-kit-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  height: 100%;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(24, 51, 58, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.kr-camp-kit-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 0 0 1px rgba(24, 51, 58, 0.05),
    0 14px 24px rgba(24, 51, 58, 0.08);
}

.kr-camp-kit-card-youth {
  background: rgba(255, 255, 255, 0.96);
}

.kr-camp-kit-card-wide {
  grid-column: 1 / -1;
}

.kr-camp-kit-card-alert {
  box-shadow:
    inset 0 0 0 2px rgba(239, 135, 73, 0.24),
    0 8px 18px rgba(239, 135, 73, 0.08);
}

.kr-camp-kit-card-focus {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.kr-camp-kit-card-focus::after {
  content: "重点";
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 167, 97, 0.16);
  color: #bf5e20;
  font-size: 0.72rem;
  font-weight: 900;
}

.kr-camp-kit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #9b4318;
  background: linear-gradient(135deg, #ffe1b0 0%, #ffbf80 100%);
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 8px 16px rgba(241, 171, 95, 0.18);
}

.kr-camp-kit-icon-asset {
  display: block;
  width: 28px;
  height: 28px;
}

.kr-camp-kit-icon-youth {
  color: #135069;
  background: linear-gradient(135deg, #bbebff 0%, #87d7fb 100%);
  box-shadow: 0 8px 16px rgba(135, 215, 251, 0.18);
}

.kr-camp-kit-card strong {
  display: block;
  margin: 2px 0 4px;
  color: #21404d;
  font-size: 0.98rem;
  font-weight: 900;
}

.kr-camp-kit-card p {
  margin: 0;
  color: #5a7079;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.6;
}

.kr-camp-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  align-items: stretch;
}

.kr-camp-note-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  height: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(24, 51, 58, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.kr-camp-note-card:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 1px rgba(24, 51, 58, 0.05),
    0 12px 20px rgba(24, 51, 58, 0.07);
}

.kr-camp-note-card-youth {
  background: rgba(255, 255, 255, 0.92);
}

.kr-camp-note-card-wide {
  grid-column: 1 / -1;
}

.kr-camp-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 229, 195, 0.92) 0%, rgba(255, 199, 136, 0.92) 100%);
  font-size: 1.25rem;
  box-shadow: 0 10px 18px rgba(247, 184, 118, 0.18);
}

.kr-camp-note-icon-youth {
  background: linear-gradient(135deg, rgba(198, 239, 255, 0.98) 0%, rgba(128, 214, 250, 0.95) 100%);
  box-shadow: 0 10px 18px rgba(128, 214, 250, 0.18);
}

.kr-camp-note-icon-large {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-size: 1.55rem;
}

.kr-camp-note-card strong {
  display: block;
  margin: 0 0 6px;
  color: #23414e;
  font-size: 0.98rem;
  font-weight: 900;
}

.kr-camp-note-card p {
  margin: 0;
  color: #586f79;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.7;
}

.kr-camp-note {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 18px 16px;
  border-radius: 22px;
}

.kr-camp-note-warm {
  border: 1px solid rgba(241, 137, 68, 0.24);
  background: linear-gradient(135deg, rgba(255, 241, 224, 0.94) 0%, rgba(255, 250, 241, 0.96) 100%);
}

.kr-camp-note strong {
  display: block;
  margin: 0 0 8px;
  color: #a34519;
  font-size: 1.02rem;
  font-weight: 900;
}

.kr-camp-note p {
  margin: 0;
  color: #5d655f;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.75;
}

.kr-camp-sticker-strip {
  position: relative;
  margin-top: 16px;
  padding: 10px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(234, 248, 255, 0.9) 0%, rgba(245, 252, 255, 0.94) 100%);
  border: 1px solid rgba(123, 209, 247, 0.22);
  min-height: 332px;
  overflow: hidden;
}

.kr-camp-sticker-strip::before {
  content: "";
  position: absolute;
  inset: auto auto 16px 20px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(124, 212, 250, 0.14);
}

.kr-camp-sticker-bubble {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #14506b;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(88, 184, 229, 0.16);
}

.kr-camp-sticker-art {
  position: absolute;
  right: 12px;
  bottom: 0;
  width: min(72%, 320px);
  max-width: 320px;
  height: auto;
  animation: krCampFloat 5.4s ease-in-out infinite;
}

.kr-camp-sticker-art-photo {
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  max-width: none;
  border-radius: 20px;
  object-fit: cover;
  object-position: center 56%;
  animation: none;
}

@keyframes krCampFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.kr-bottom-cta {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: center;
  justify-items: start;
  overflow: hidden;
  padding: 44px;
  border-radius: 34px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(6, 38, 45, 0.78) 0%, rgba(6, 38, 45, 0.42) 52%, rgba(6, 38, 45, 0.18) 100%),
    url("../images/korea/attractions/haedong-yonggungsa.jpg?v=20260505-1") center/cover;
  box-shadow: var(--kr-shadow);
}

.kr-bottom-cta h2 {
  max-width: 780px;
  margin: 0 0 24px;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1.05;
}

.kr-service-zone {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.kr-service-btn {
  min-height: 50px;
  min-width: 156px;
  padding: 12px 30px;
  font-size: 0.98rem;
  color: var(--kr-deep);
  background: rgba(255, 255, 255, 0.9);
}

.kr-service-btn.tg-contact {
  color: #ffffff;
  background: #249bd7;
}

@media (max-width: 1120px) {
  .kr-nav {
    display: none;
  }

  .kr-modern-grid,
  .kr-dashboard,
  .kr-price-grid,
  .kr-mini-grid,
  .kr-camp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kr-spot-card,
  .kr-spot-card.reverse {
    grid-template-columns: 1fr;
  }

  .kr-spot-card.reverse .kr-spot-img,
  .kr-spot-card.reverse .kr-spot-text {
    order: initial;
  }

  .kr-spot-img img {
    height: 420px;
  }

  .kr-photo-card > img {
    height: 236px;
  }

  .kr-adult-pack-card-wide .kr-adult-pack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kr-adult-pack-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.kr-home {
    background:
      linear-gradient(180deg, #f5fbfe 0%, #fffdf8 48%, #f6fbf7 100%);
  }

  .kr-hero {
    min-height: 780px;
  }

  .kr-topbar {
    top: 12px;
    width: min(100% - 20px, 420px);
    padding: 10px;
  }

  .kr-brand {
    font-size: 0.86rem;
  }

  .kr-top-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .kr-hero-content {
    width: min(100% - 22px, 540px);
    margin-top: 86px;
  }

  .kr-hero-content h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .kr-hero-actions,
  .kr-service-zone {
    flex-direction: column;
    align-items: stretch;
  }

  .kr-btn,
  .kr-service-btn {
    width: 100%;
  }

  .kr-modern-grid,
  .kr-dashboard,
  .kr-price-grid,
  .kr-mini-grid,
  .kr-modern-grid,
  .kr-camp-grid {
    grid-template-columns: 1fr;
  }

  .kr-camp-essentials {
    padding: 18px;
  }

  .kr-reminder-spot {
    padding: 18px;
  }

  .kr-photo-card > img {
    height: 240px;
  }

  .kr-camp-card {
    border-radius: 24px;
  }

  .kr-camp-top {
    min-height: 0;
    padding: 18px 18px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .kr-camp-top-copy {
    flex: none;
    max-width: none;
    margin-bottom: 0;
  }

  .kr-camp-top-copy p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .kr-camp-hero-frame {
    max-width: none;
    margin-left: 0;
    padding: 8px;
    transform: none;
  }

  .kr-camp-hero-art,
  .kr-camp-hero-art-youth {
    width: 100%;
    height: 194px;
    max-width: none;
  }

  .kr-camp-content {
    padding: 18px 18px 20px;
  }

  .kr-camp-title-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .kr-camp-no {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .kr-camp-kit-grid {
    grid-template-columns: 1fr;
  }

  .kr-adult-pack-grid,
  .kr-adult-pack-notes {
    grid-template-columns: 1fr;
  }

  .kr-camp-note-grid {
    grid-template-columns: 1fr;
  }

  .kr-camp-note-card-wide {
    grid-column: auto;
  }

  .kr-camp-note,
  .kr-camp-note-card {
    grid-template-columns: 1fr;
  }

  .kr-camp-note-icon,
  .kr-camp-note-icon-large {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 1.1rem;
  }

  .kr-camp-sticker-strip {
    min-height: 248px;
    padding: 10px;
  }

  .kr-camp-sticker-art {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    width: min(100%, 260px);
    margin: 14px auto 0;
  }

  .kr-camp-sticker-art-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: 228px;
    margin: 0;
  }

  .kr-container {
    width: min(100% - 22px, 560px);
    padding-top: 46px;
  }

  .kr-section {
    margin-top: 54px;
  }

  .kr-section-head {
    margin-bottom: 28px;
  }

  .kr-section-head h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .kr-spot-card,
  .kr-info-board {
    padding: 14px;
    border-radius: 24px;
  }

  .kr-spot-img {
    border-radius: 20px;
  }

  .kr-spot-img img {
    height: 280px;
    min-height: 280px;
  }

  .kr-spot-text {
    padding: 6px 6px 12px;
  }

  .kr-spot-text strong {
    width: 52px;
    height: 52px;
    font-size: 1.08rem;
  }

  .kr-modern-card {
    padding: 20px;
  }

  .kr-deadline-card-standalone {
    padding: 20px;
    border-radius: 24px;
  }

  .kr-photo-card {
    padding: 0;
  }

  .kr-photo-card > img {
    height: 240px;
  }

  .kr-photo-card > div {
    padding: 20px;
  }

  .kr-timeline div {
    display: grid;
    gap: 5px;
  }

  .kr-bottom-cta {
    min-height: 390px;
    padding: 24px;
    justify-items: stretch;
  }

  .kr-bottom-cta h2 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }
}
