:root {
  --navy-950: #071526;
  --navy-900: #0b2038;
  --navy-800: #143454;
  --gold-500: #c99a42;
  --gold-300: #e5c47e;
  --cream: #f8f5ef;
  --white: #ffffff;
  --ink: #142033;
  --muted: #647083;
  --line: #dfe4eb;
  --success: #247253;
  --shadow: 0 18px 50px rgba(12, 31, 52, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --page-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(201, 154, 66, 0.45);
  outline-offset: 3px;
}

.container {
  width: min(var(--page-width), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 21, 38, 0.96);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  place-items: center;
  background-color: var(--gold-500);
  background-image: url("assets/maroa%20logo.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 31px auto;
  background-blend-mode: multiply;
  color: var(--navy-950);
  font-size: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-300);
}

.nav-booking {
  padding: 9px 15px;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.35rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 76vh;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(201, 154, 66, 0.28), transparent 24rem),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -9rem;
  bottom: -14rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(229, 196, 126, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.025), 0 0 0 10rem rgba(255, 255, 255, 0.02);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 110px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-300);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold-500);
  color: var(--navy-950);
}

.button-primary:hover {
  background: var(--gold-300);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--gold-300);
  color: var(--gold-300);
}

.button-outline {
  border-color: var(--navy-800);
  background: transparent;
  color: var(--navy-900);
}

.button-outline:hover {
  border-color: var(--gold-500);
  color: #8c641f;
}

.contact-social-note {
  margin: 22px 0 12px;
  color: var(--navy-700);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-social-button {
  min-width: 56px;
  padding: 12px 14px;
  justify-content: center;
}

.social-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--cream);
}

.section-dark {
  background: var(--navy-950);
  color: var(--white);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 14px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-dark .section-heading h2,
.section-dark .section-heading p {
  color: var(--white);
}

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

.feature-card,
.package-card,
.review-card,
.summary-card,
.form-card,
.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 30px;
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-5px);
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  border-radius: 16px;
  place-items: center;
  background: var(--cream);
  font-size: 1.5rem;
}

.feature-card h3,
.package-card h3 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 1.3rem;
}

.feature-card p,
.package-card p,
.review-card p {
  color: var(--muted);
}

.card-link {
  margin-top: auto;
  color: #956b23;
  font-weight: 850;
}

.page-hero {
  padding: 100px 0 88px;
  background:
    radial-gradient(circle at 78% 20%, rgba(201, 154, 66, 0.25), transparent 25rem),
    var(--navy-950);
  color: var(--white);
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.page-hero p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

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

.medical-tourism-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(151, 225, 210, 0.46), transparent 30rem),
    radial-gradient(circle at 80% 10%, rgba(73, 158, 162, 0.22), transparent 22rem),
    linear-gradient(180deg, #dff7f0 0%, #b5ebe0 28%, #82cfc7 62%, #0f4255 100%);
}

.medical-hero {
  background:
    linear-gradient(180deg, rgba(223, 247, 240, 0.82), rgba(11, 46, 62, 0.14)),
    linear-gradient(135deg, #dff7f0 0%, #a7e4d7 40%, #74c8ca 72%, #184c5c 100%);
}

.medical-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 28px;
}

.medical-intro-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
  padding: 24px 28px;
  border: 1px solid rgba(11, 46, 62, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 44px rgba(7, 56, 65, 0.08);
}

.medical-intro-band h2 {
  margin: 8px 0 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.medical-intro-band p {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.medical-tourism-page .section-heading {
  max-width: 62rem;
  margin-bottom: 22px;
  padding: 0 4px;
}

.medical-tourism-page .section-heading p {
  max-width: 56rem;
}

.medical-tourism-page .section-heading h2 {
  display: none;
}

.medical-tourism-page .asia-product-card {
  border-color: rgba(11, 46, 62, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(7, 56, 65, 0.16);
}

.medical-tourism-page .asia-product-card:hover {
  box-shadow: 0 30px 72px rgba(7, 56, 65, 0.2);
}

.medical-feature-card {
  grid-column: 1 / -1;
}

.medical-feature-card .asia-product-visual {
  min-height: 340px;
  height: 340px;
}

.medical-square-card {
  grid-template-columns: minmax(280px, 42%) minmax(0, 58%);
  grid-template-rows: auto 1fr;
}

.medical-square-card .asia-product-visual {
  grid-column: 1;
  grid-row: 1;
  min-height: 320px;
  height: 100%;
}

.medical-square-card .asia-product-body {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 0;
  padding: 24px 28px 26px;
}

.medical-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.medical-card-meta span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.medical-card-meta .button {
  width: auto;
  min-width: 150px;
}

.medical-square-card .medical-card-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  justify-content: flex-end;
}

.medical-square-card .medical-card-meta .button {
  min-width: 220px;
  width: auto;
}

.medical-feature-card .medical-card-meta {
  justify-content: flex-end;
}

.medical-checkup {
  background: #9de4d5 url("health-checkup.png") center / cover no-repeat;
}

.medical-eye {
  background: #98d9df url("ophthalmology.png") center / cover no-repeat;
}

.medical-dental {
  background: #e4dccf url("dentistry.png") center / cover no-repeat;
}

.medical-plastic {
  background: #d7c4d8 url("plastic-surgery.png") center / cover no-repeat;
}

.medical-skin {
  background: #efc7c4 url("cosmetology.png") center / cover no-repeat;
}

.medical-partners {
  background: #c6ddd6 url("assets/medical-tourism/our-partners.png") center / cover no-repeat;
}

.medical-partners-section {
  grid-column: 1 / -1;
  padding: 30px 32px 28px;
  border: 1px solid rgba(11, 46, 62, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(7, 56, 65, 0.16);
}

.medical-partners-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.medical-partners-header h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 500;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.partner-logo {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 18px 14px;
  border-radius: 18px;
  color: var(--navy-950);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(7, 21, 38, 0.06);
}

.partner-logo-tta {
  background: linear-gradient(135deg, #f2efe8, #d7e7f0);
  color: #18485e;
}

.partner-logo-bgn {
  background: linear-gradient(135deg, #eaf5ef, #d6eef5);
  color: #0e6d7f;
  text-transform: none;
}

.partner-logo-wbc {
  background: linear-gradient(135deg, #f4eadf, #f0d9d1);
  color: #9c5d45;
  text-transform: none;
}

.partner-logo-bumin {
  background: linear-gradient(135deg, #edf3ec, #d6e6d9);
  color: #2f6a46;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  text-transform: none;
}

.partner-logo-line {
  background: linear-gradient(135deg, #f7efe4, #f2ddcf);
  color: #9c5841;
  text-transform: none;
}

.service-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 11px;
  border: 1px solid rgba(201, 154, 66, 0.35);
  border-radius: 999px;
  color: #8f6826;
  background: rgba(255, 250, 241, 0.9);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-highlights {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-highlights li::before {
  margin-right: 8px;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.form-card,
.summary-card,
.content-card {
  padding: 32px;
}

.summary-card {
  position: sticky;
  top: 100px;
  background: var(--navy-900);
  color: var(--white);
}

.summary-card h2 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.summary-list {
  display: grid;
  gap: 15px;
  margin: 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.summary-row dt {
  color: rgba(255, 255, 255, 0.6);
}

.summary-row dd {
  margin: 0;
  text-align: right;
  font-weight: 750;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.fieldset-title {
  color: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
}

.readonly-field {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbfa;
  color: var(--navy-900);
  font-weight: 700;
}

.readonly-field-selected {
  color: var(--navy-950);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-500);
  outline: 3px solid rgba(201, 154, 66, 0.14);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.radio-option {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.notice {
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid #ead8ae;
  border-radius: 14px;
  background: #fff8e7;
  color: #76551e;
  font-size: 0.9rem;
}

.form-message {
  margin: 18px 0 0;
  color: var(--success);
  font-weight: 750;
}

.form-message.error-message {
  color: #a33e38;
}

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

.reviews-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.reviews-video-section {
  padding: 0;
}

.reviews-video-section > .container > .eyebrow {
  margin-bottom: 6px;
}

.review-video-card {
  overflow: hidden;
  padding: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 230, 0.98));
  border: 1px solid rgba(20, 39, 78, 0.08);
  box-shadow: 0 16px 34px rgba(18, 29, 55, 0.12);
}

.review-video-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.review-video-trigger img,
.review-video-player iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.review-video-overlay {
  position: relative;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 18px;
  margin-top: -66px;
  min-height: 66px;
  background: linear-gradient(180deg, rgba(11, 24, 53, 0), rgba(11, 24, 53, 0.76));
  color: var(--cream);
  font-weight: 750;
  letter-spacing: 0.02em;
}

.review-video-play {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(201, 156, 47, 0.96);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 10px 24px rgba(201, 156, 47, 0.35);
}

.review-video-label {
  font-size: 0.95rem;
}

.review-video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.review-video-player iframe {
  border: 0;
}

.review-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
}

.review-video-modal[hidden] {
  display: none;
}

.review-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 32, 0.74);
  backdrop-filter: blur(10px);
}

.review-video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1000px, calc(100vw - 32px));
  padding: 22px;
  border-radius: 24px;
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.review-video-modal-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.review-video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

.review-video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.review-video-modal-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.review-video-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.review-card {
  padding: 28px;
}

.stars {
  margin-bottom: 18px;
  color: var(--gold-500);
  letter-spacing: 0.12em;
}

.travel-review-spread {
  display: grid;
  gap: 28px;
}

.travel-review-intro {
  max-width: 760px;
}

.travel-review-intro h2 {
  margin-bottom: 14px;
  color: #166f68;
}

.travel-review-intro p:last-child {
  margin-bottom: 0;
  color: rgba(22, 111, 104, 0.82);
}

.travel-review-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.travel-review-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(248, 255, 252, 0.9);
  border: 1px solid rgba(22, 111, 104, 0.12);
  box-shadow: 0 18px 40px rgba(19, 63, 61, 0.12);
}

.travel-review-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.travel-review-link:hover {
  color: inherit;
}

.travel-review-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.travel-review-placeholder {
  width: 100%;
  height: 220px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.48), transparent 30%),
    linear-gradient(135deg, #c8f2ea, #8fd8cb 52%, #5daea4);
}

.travel-review-card-feature img {
  height: 320px;
}

.travel-review-copy {
  padding: 22px;
}

.travel-review-region {
  margin-bottom: 10px;
  color: #1ca695;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.travel-review-copy h3 {
  margin-bottom: 12px;
  color: #166f68;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.travel-review-copy p:last-child {
  margin-bottom: 0;
  color: rgba(22, 111, 104, 0.84);
}

.travel-review-card-quote {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(22, 111, 104, 0.06), rgba(22, 111, 104, 0.14)),
    rgba(248, 255, 252, 0.9);
}

.travel-review-quote {
  margin-bottom: 0;
  color: #166f68;
  font-size: clamp(1.15rem, 1.9vw, 1.6rem);
  line-height: 1.55;
  font-weight: 700;
}

.travel-review-author {
  color: rgba(22, 111, 104, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.medical-review-video-grid,
.medical-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.medical-video-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  aspect-ratio: 16 / 9;
  min-height: 0;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(20, 39, 78, 0.08);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 230, 0.98));
  color: #166f68;
  text-align: center;
  box-shadow: 0 16px 34px rgba(18, 29, 55, 0.12);
}

.medical-video-number {
  position: absolute;
  top: 16px;
  left: 18px;
  color: rgba(22, 111, 104, 0.7);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.medical-video-play {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding-left: 3px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(18, 29, 55, 0.14);
}

.medical-video-placeholder p {
  margin: 0;
  font-weight: 750;
}

.medical-testimonial-grid {
  margin-top: 0;
}

.medical-testimonial-placeholder {
  padding: 24px;
  border: 1px solid rgba(22, 111, 104, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(19, 63, 61, 0.08);
}

.medical-testimonial-label {
  margin-bottom: 10px;
  color: #1ca695;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.medical-testimonial-placeholder h3 {
  margin-bottom: 10px;
  color: #166f68;
  font-size: 1.2rem;
}

.medical-testimonial-placeholder p:last-child {
  margin-bottom: 0;
  color: rgba(22, 111, 104, 0.82);
}

.reviewer {
  margin-bottom: 0;
  color: var(--navy-900) !important;
  font-weight: 850;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.stat {
  padding: 24px;
  border-left: 3px solid var(--gold-500);
  background: var(--cream);
}

.stat strong {
  display: block;
  color: var(--navy-900);
  font-size: 1.5rem;
}

.site-footer {
  padding: 54px 0 26px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
}

/* Home page ocean theme */
.home-page {
  background:
    linear-gradient(180deg, #e2f8f1 0%, #d4f2e9 30%, #c2e9df 66%, #addfd5 100%);
  color: var(--navy-950);
}

.home-page main {
  background: transparent;
}

.home-page .site-header {
  border-bottom-color: transparent;
  background: rgba(226, 248, 241, 0.86);
  color: var(--navy-950);
  box-shadow: none;
}

.home-page .brand,
.home-page .site-nav a {
  color: var(--navy-900);
}

.home-page .site-nav a:hover,
.home-page .site-nav a[aria-current="page"] {
  color: #8a611c;
}

.home-page .menu-button {
  border-color: rgba(7, 32, 51, 0.2);
  color: var(--navy-900);
}

.home-page .hero {
  min-height: clamp(440px, 52vh, 540px);
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.75), transparent 18rem),
    radial-gradient(circle at 88% 68%, rgba(16, 126, 119, 0.18), transparent 24rem),
    transparent;
  color: var(--navy-950);
}

.home-page .hero-content {
  padding: 58px 0 64px;
}

.home-page .hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

.home-page .hero-copy {
  margin-bottom: 26px;
}

.home-page .hero::before {
  content: none;
}

.home-page .hero::after {
  content: none;
}

.home-page .hero .eyebrow {
  color: #87601c;
}

.home-page .hero-copy {
  color: rgba(7, 35, 52, 0.74);
}

.home-page .hero .button-secondary {
  border-color: rgba(7, 35, 52, 0.35);
  color: var(--navy-900);
}

.home-page .hero .button-secondary:hover {
  border-color: var(--navy-900);
  color: var(--navy-900);
}

.home-page #experiences {
  background: transparent;
}

.home-page #experiences .section-heading h2 {
  color: var(--navy-900);
}

.home-page #experiences .section-heading p {
  color: var(--muted);
}

.home-page #experiences .section-heading .eyebrow {
  color: #87601c;
}

.home-page .card-grid {
  gap: 26px;
}

.home-page .home-feature-card {
  min-height: 0;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(3, 42, 49, 0.22);
}

.home-page .home-feature-card:hover {
  border-color: var(--gold-300);
  box-shadow: 0 28px 70px rgba(3, 36, 45, 0.32);
}

.feature-visual {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 220px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  padding: 22px;
  color: var(--white);
  isolation: isolate;
}

.feature-visual::before,
.feature-visual::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.feature-visual::before {
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(3, 20, 32, 0.72));
}

.feature-visual::after {
  top: 28px;
  right: -42px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 26px rgba(255, 255, 255, 0.05);
}

.visual-cruise {
  background-color: #258d91;
  background-image:
    linear-gradient(155deg, rgba(4, 35, 52, 0.02), rgba(3, 30, 45, 0.3)),
    url("https://images.unsplash.com/photo-1767602280402-8fc0e7f092e7?auto=format&fit=crop&w=1200&q=82"),
    linear-gradient(155deg, #8ee0da 0%, #258d91 46%, #073c55 100%);
  background-position: center;
  background-size: cover;
}

.visual-medical {
  background-color: #7ecdc1;
  background-image:
    linear-gradient(145deg, rgba(8, 44, 55, 0.02), rgba(5, 37, 52, 0.3)),
    url("https://images.unsplash.com/photo-1666886573531-48d2e3c2b684?auto=format&fit=crop&w=1200&q=82"),
    linear-gradient(145deg, #eefcf8 0%, #7ecdc1 48%, #205b6d 100%);
  background-position: center;
  background-size: cover;
}

.visual-busan {
  background-color: #176e79;
  background-image:
    linear-gradient(155deg, rgba(28, 22, 18, 0.03), rgba(3, 31, 43, 0.32)),
    url("https://images.unsplash.com/photo-1777497477976-50ad28357c0c?auto=format&fit=crop&w=1200&q=82"),
    linear-gradient(155deg, #f2c886 0%, #bf765b 42%, #176e79 72%, #064155 100%);
  background-position: center;
  background-size: cover;
}

.visual-tennis {
  background-color: #247895;
  background-image:
    linear-gradient(155deg, rgba(10, 48, 40, 0.03), rgba(4, 34, 50, 0.3)),
    url("https://images.unsplash.com/photo-1730121108521-0d8e2373e127?auto=format&fit=crop&w=1200&q=82"),
    linear-gradient(155deg, #bce8d3 0%, #4eaa77 40%, #247895 68%, #21455c 100%);
  background-position: center;
  background-size: cover;
}

.visual-about {
  background-color: #365f68;
  background-image:
    linear-gradient(145deg, rgba(34, 28, 20, 0.02), rgba(5, 34, 44, 0.32)),
    url("https://images.unsplash.com/photo-1769739576456-0aefcff3f4b9?auto=format&fit=crop&w=1200&q=82"),
    linear-gradient(145deg, #e8d7b2 0%, #bf9a67 42%, #365f68 100%);
  background-position: center;
  background-size: cover;
}

.visual-reviews {
  background-color: #746191;
  background-image:
    linear-gradient(145deg, rgba(39, 25, 23, 0.02), rgba(8, 27, 47, 0.34)),
    url("https://images.unsplash.com/photo-1752650143267-57c2491f5ba2?auto=format&fit=crop&w=1200&q=82"),
    linear-gradient(145deg, #f6d79b 0%, #e1896e 43%, #746191 72%, #253d59 100%);
  background-position: center;
  background-size: cover;
}

.visual-icon {
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 20px;
  place-items: center;
  background: rgba(6, 31, 43, 0.3);
  font-size: 2rem;
  backdrop-filter: blur(8px);
}

.visual-caption {
  position: relative;
  max-width: 180px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.feature-body {
  display: flex;
  min-height: 250px;
  flex: 1;
  flex-direction: column;
  padding: 26px 28px 28px;
}

.home-feature-card .feature-body p {
  margin-bottom: 24px;
}

.feature-action {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 9px 16px;
  border: 1px solid var(--navy-800);
  border-radius: 999px;
  color: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 850;
  transition: background 160ms ease, color 160ms ease;
}

.home-feature-card:hover .feature-action {
  border-color: var(--gold-500);
  background: var(--gold-500);
  color: var(--navy-950);
}

.home-page main > .section:last-child {
  background: transparent;
}

.home-page main > .section:last-child .section-heading h2 {
  color: var(--navy-900);
}

.home-page main > .section:last-child .section-heading p {
  color: var(--muted);
}

.home-page main > .section:last-child .section-heading .eyebrow {
  color: #87601c;
}

.home-page .site-footer {
  background: transparent;
  color: rgba(7, 32, 51, 0.72);
}

.home-page .footer-title {
  color: var(--navy-900);
}

.home-page .footer-links a:hover {
  color: #8a611c;
}

.home-page .copyright {
  border-top: 0;
}

/* Cruise category and detail flow */
.cruise-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #d9f5ec 0%, #b7e7dc 48%, #88cfc3 100%);
  color: var(--navy-950);
}

.reviews-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #d9f5ec 0%, #b7e7dc 48%, #88cfc3 100%);
  color: #166f68;
}

.about-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #d9f5ec 0%, #b7e7dc 48%, #88cfc3 100%);
  color: var(--navy-950);
}

.contact-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #d9f5ec 0%, #b7e7dc 48%, #88cfc3 100%);
  color: #166f68;
}

.cruise-page .site-header {
  border-bottom-color: transparent;
  background: rgba(225, 248, 241, 0.86);
  box-shadow: none;
}

.reviews-page .site-header {
  border-bottom-color: transparent;
  background: rgba(225, 248, 241, 0.86);
  box-shadow: none;
}

.contact-page .site-header {
  border-bottom-color: transparent;
  background: rgba(225, 248, 241, 0.86);
  box-shadow: none;
}

.cruise-page .brand,
.cruise-page .site-nav a {
  color: var(--navy-900);
}

.reviews-page .brand,
.reviews-page .site-nav a {
  color: #166f68;
}

.contact-page .brand,
.contact-page .site-nav a {
  color: #166f68;
}

.cruise-page .site-nav a:hover,
.cruise-page .site-nav a[aria-current="page"] {
  color: #8a611c;
}

.reviews-page .site-nav a:hover,
.reviews-page .site-nav a[aria-current="page"] {
  color: #1ca695;
}

.contact-page .site-nav a:hover,
.contact-page .site-nav a[aria-current="page"] {
  color: #1ca695;
}

.cruise-page .menu-button {
  border-color: rgba(7, 32, 51, 0.2);
  color: var(--navy-900);
}

.reviews-page .menu-button {
  border-color: rgba(7, 32, 51, 0.2);
  color: #166f68;
}

.contact-page .menu-button {
  border-color: rgba(7, 32, 51, 0.2);
  color: #166f68;
}

.contact-page main {
  background: linear-gradient(180deg, #d9f5ec 0%, #b7e7dc 48%, #88cfc3 100%);
}

.reviews-page main {
  background: linear-gradient(180deg, #d9f5ec 0%, #b7e7dc 48%, #88cfc3 100%);
}

.contact-page .page-hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(120, 224, 207, 0.28), transparent 25rem),
    linear-gradient(180deg, #dffbf5 0%, #a6ddd2 100%);
  color: #166f68;
}

.contact-page .page-hero p:last-child {
  color: rgba(22, 111, 104, 0.8);
}

.contact-page .page-hero .eyebrow {
  color: #1ca695;
}

.contact-page .page-hero h1 {
  color: #166f68;
}

.contact-page .section-soft {
  background: transparent;
}

.reviews-page .page-hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(120, 224, 207, 0.28), transparent 25rem),
    linear-gradient(180deg, #dffbf5 0%, #a6ddd2 100%);
  color: #166f68;
}

.reviews-page .page-hero p:last-child {
  color: rgba(22, 111, 104, 0.8);
}

.reviews-page .page-hero .eyebrow {
  color: #1ca695;
}

.reviews-page .page-hero h1 {
  color: #166f68;
}

.reviews-page .site-footer {
  background: linear-gradient(180deg, rgba(3, 25, 39, 0.94), rgba(3, 25, 39, 0.98));
}

.contact-page .site-footer {
  background: linear-gradient(180deg, rgba(3, 25, 39, 0.94), rgba(3, 25, 39, 0.98));
}

.cruise-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(223, 250, 242, 0.94), rgba(110, 201, 191, 0.52)),
    linear-gradient(180deg, #d9f5ec, #9bd8ce);
}

.cruise-hero::after {
  position: absolute;
  right: -12%;
  bottom: -48%;
  width: min(48vw, 620px);
  aspect-ratio: 1;
  border-radius: 44% 56% 62% 38%;
  background: rgba(255, 255, 255, 0.17);
  content: "";
  transform: rotate(18deg);
}

.cruise-hero-content {
  position: relative;
  z-index: 1;
  padding: 76px 0 82px;
}

.cruise-hero h1 {
  margin-bottom: 16px;
  color: var(--navy-950);
  font-size: clamp(3.2rem, 8vw, 6rem);
}

.cruise-hero p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(7, 32, 51, 0.7);
  font-size: 1.15rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--navy-800);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.back-link:hover {
  color: #8a611c;
}

.cruise-categories {
  background: transparent;
}

.cruise-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.cruise-category-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 52px rgba(7, 56, 65, 0.14);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cruise-category-card:hover {
  border-color: var(--gold-500);
  box-shadow: 0 26px 62px rgba(7, 56, 65, 0.22);
  transform: translateY(-5px);
}

.cruise-category-visual {
  position: relative;
  display: flex;
  min-height: 280px;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 18px;
  overflow: hidden;
  padding: 26px;
  color: var(--white);
  isolation: isolate;
}

.cruise-category-visual::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 25, 39, 0.04) 30%, rgba(3, 25, 39, 0.76));
  content: "";
}

.cruise-category-visual span {
  font-size: 3rem;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.22));
}

.cruise-category-visual small {
  max-width: 220px;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.cruise-asia {
  background: #178e91 url("assets/cruise-regions/asia-japan-shrine-v2.jpg") center / cover no-repeat;
}

.cruise-europe {
  background: #78b9d8 url("assets/cruise-regions/europe-trevi-fountain-day-v3.jpg") center / cover no-repeat;
}

.cruise-caribbean {
  background: #126394 url("assets/cruise-regions/usa-miami.jpg") center / cover no-repeat;
}

.cruise-australia {
  background: #3a7282 url("assets/cruise-regions/australia-kangaroo-island.jpg") center / cover no-repeat;
}

.cruise-deals {
  background: #efce82 url("assets/cruise-regions/hot-deals.png") center / cover no-repeat;
}

.cruise-category-body {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 30px 30px;
}

.cruise-category-body h3 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 1.45rem;
}

.cruise-category-body p {
  margin-bottom: 24px;
  color: var(--muted);
}

.cruise-category-body .button {
  width: auto;
  margin-top: auto;
}

.cruise-deal-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.busan-tour-page .busan-hero {
  background:
    linear-gradient(105deg, rgba(223, 250, 242, 0.94), rgba(110, 201, 191, 0.5)),
    linear-gradient(180deg, #d9f5ec, #9bd8ce);
}

.busan-tour-page .busan-hero::after {
  right: -10%;
  bottom: -42%;
  width: min(44vw, 560px);
}

.tennis-page .tennis-hero {
  background:
    linear-gradient(105deg, rgba(223, 250, 242, 0.94), rgba(110, 201, 191, 0.5)),
    linear-gradient(180deg, #d9f5ec, #9bd8ce);
}

.tennis-page .tennis-hero::after {
  right: -12%;
  bottom: -42%;
  width: min(42vw, 540px);
}

.tennis-experience-page .tennis-experience-hero {
  background:
    linear-gradient(105deg, rgba(223, 250, 242, 0.92), rgba(110, 201, 191, 0.5)),
    url("assets/tennis/Experience.jpeg") center 22% / cover no-repeat;
}

.tennis-experience-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.tennis-experience-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.tennis-experience-section .content-card,
.tennis-experience-section .summary-card {
  height: 100%;
}

.tennis-experience-section .summary-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.tennis-experience-section .summary-card .button {
  width: 100%;
}

.tennis-experience-price {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1;
}

.tennis-experience-price small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tennis-experience-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.tennis-highlight-card {
  min-height: 100%;
}

.tennis-highlight-icon {
  margin-bottom: 16px;
  font-size: 1.8rem;
}

.tennis-highlight-card h3 {
  margin-bottom: 10px;
}

.tennis-itinerary-card ul {
  margin: 14px 0 0 20px;
  display: grid;
  gap: 8px;
}

.tennis-itinerary-card h3 {
  margin-bottom: 10px;
}

.tennis-experience-cta {
  background:
    linear-gradient(135deg, rgba(223, 250, 242, 0.82), rgba(110, 201, 191, 0.4)),
    rgba(255, 255, 255, 0.9);
}

.kth-page .kth-hero {
  background:
    linear-gradient(105deg, rgba(223, 250, 242, 0.93), rgba(110, 201, 191, 0.52)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02));
}

.kth-trip-section {
  padding-top: 18px;
}

.kth-trip-stack {
  display: grid;
  gap: 28px;
}

.kth-trip-card {
  display: grid;
  gap: 12px;
}

.kth-trip-head {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.72fr);
  gap: 18px;
  align-items: start;
}

.kth-trip-media-inline {
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.kth-trip-media-inline img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.kth-trip-banner {
  overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 16 / 3.4;
  background: linear-gradient(135deg, rgba(110, 201, 191, 0.2), rgba(7, 32, 51, 0.08));
  box-shadow: var(--shadow-soft);
}

.kth-trip-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
}

.kth-trip-top {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.kth-trip-subtitle {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 850;
}

.kth-trip-dates {
  margin: 0 0 16px;
  color: var(--navy-800);
  font-weight: 850;
}

.kth-trip-lead {
  margin-bottom: 0;
  color: var(--navy-700);
}

.kth-trip-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.kth-trip-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(7, 32, 51, 0.06);
  color: var(--navy-900);
  font-size: 0.83rem;
  font-weight: 850;
}

.kth-trip-summary {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 32, 51, 0.08);
  box-shadow: var(--shadow-soft);
}

.kth-trip-summary .button {
  width: 100%;
}

.kth-trip-summary .tennis-experience-price {
  font-size: clamp(1.25rem, 2vw, 1.85rem);
}

.kth-trip-summary .summary-list {
  gap: 4px;
}

.kth-trip-summary .summary-row {
  padding: 6px 0;
}

.kth-trip-summary .summary-row-inline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.kth-trip-summary .summary-row-inline dt {
  flex: 0 0 auto;
  min-width: 72px;
}

.kth-trip-summary .summary-row-inline dd {
  flex: 1 1 auto;
  text-align: left;
}

.kth-trip-summary .summary-inline-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-weight: 750;
  white-space: nowrap;
}

.kth-trip-summary .summary-inline-sep {
  color: rgba(7, 32, 51, 0.36);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.kth-trip-card:last-child .summary-inline-text {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  gap: 14px;
  margin-left: -75px;
}

.kth-summary-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: -8px;
}

.kth-trip-body {
  display: grid;
  gap: 0;
  padding-top: 0;
  margin-top: -6px;
}

.kth-trip-card:first-child .kth-trip-body {
  margin-top: 24px;
}

.kth-trip-body .kth-trip-subtitle {
  margin-top: 0;
}

.kth-trip-meta-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.kth-trip-meta-sep {
  color: rgba(7, 32, 51, 0.36);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.kth-trip-body h2 {
  margin-bottom: 6px;
}

.kth-trip-body .kth-trip-dates {
  margin-bottom: 12px;
}

.kth-trip-body .kth-trip-lead {
  max-width: 72ch;
}

.kth-trip-card:first-child .kth-trip-lead {
  white-space: nowrap;
  max-width: none;
}

.kth-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.kth-mini-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 32, 51, 0.08);
}

.kth-mini-card h3 {
  margin-bottom: 10px;
}

.kth-mini-card ul {
  margin: 0 0 0 20px;
  display: grid;
  gap: 8px;
  color: var(--navy-700);
}

.kth-mini-card strong {
  color: var(--navy-900);
}

.kth-details-panel {
  display: block;
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    transform 0.35s ease,
    margin-top 0.35s ease,
    padding-top 0.35s ease,
    padding-bottom 0.35s ease;
}

.kth-details-panel.is-open {
  max-height: 1500px;
  margin-top: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
  opacity: 1;
  transform: translateY(0);
}

.kth-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.kth-details-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

@media (max-width: 960px) {
  .kth-trip-head {
    grid-template-columns: 1fr;
  }

  .kth-trip-media-inline {
    height: 210px;
  }

  .kth-trip-top,
  .kth-mini-grid,
  .kth-details-grid {
    grid-template-columns: 1fr;
  }
}

.about-page .site-header {
  border-bottom-color: transparent;
  background: rgba(225, 248, 241, 0.86);
  box-shadow: none;
}

.about-page .brand,
.about-page .site-nav a {
  color: var(--navy-900);
}

.about-page .site-nav a:hover,
.about-page .site-nav a[aria-current="page"] {
  color: #8a611c;
}

.about-page .menu-button {
  border-color: rgba(7, 32, 51, 0.2);
  color: var(--navy-900);
}

.about-page .page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(223, 250, 242, 0.94), rgba(110, 201, 191, 0.52)),
    linear-gradient(180deg, #d9f5ec, #9bd8ce);
}

.about-page .page-hero::after {
  position: absolute;
  right: -12%;
  bottom: -42%;
  width: min(42vw, 540px);
  height: min(42vw, 540px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(201, 154, 66, 0.3), rgba(201, 154, 66, 0));
  content: "";
}

.about-page .page-hero .container {
  position: relative;
  z-index: 1;
  color: var(--navy-950);
}

.about-page .page-hero h1,
.about-page .page-hero p:last-child {
  color: var(--navy-950);
}

.tennis-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.tennis-product-card {
  grid-template-columns: minmax(320px, 38%) minmax(0, 62%);
}

.tennis-product-seoul {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(3, 25, 39, 0.16)),
    url("assets/tennis/camp.jpeg") center bottom 18% / cover no-repeat;
  filter: brightness(1.08) saturate(1.05);
}

.tennis-product-seoul::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(3, 25, 39, 0.18));
}

.tennis-product-busan {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(3, 25, 39, 0.14)),
    url("assets/tennis/lesson.jpeg") center / cover no-repeat;
  filter: brightness(1.1) saturate(1.08);
}

.tennis-product-busan::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(3, 25, 39, 0.16));
}

.tennis-product-rental {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08)),
    url("assets/tennis/rentals2.png") center bottom 18% / cover no-repeat;
  filter: brightness(1.22) saturate(1.14) contrast(0.92);
}

.tennis-product-experience {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(3, 25, 39, 0.14)),
    url("assets/tennis/Experience.jpeg") center / cover no-repeat;
  filter: brightness(1.08) saturate(1.05);
}

.tennis-product-experience::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(3, 25, 39, 0.16));
}

.tennis-page .tennis-product-card .asia-product-visual::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 18%, rgba(3, 25, 39, 0.16));
}

.tennis-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.tennis-detail-layout-split {
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 20px;
}

.tennis-detail-media {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 240px;
  margin-bottom: 18px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #d8e6e2;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(6, 23, 37, 0.12), rgba(6, 23, 37, 0.34)),
    linear-gradient(135deg, #c5f1e8 0%, #77c9c0 34%, #1f8296 69%, #163d53 100%);
  box-shadow: 0 16px 32px rgba(7, 56, 65, 0.12);
}

.tennis-detail-media::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(5, 20, 30, 0.28)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 28%);
  content: "";
  pointer-events: none;
}

.tennis-detail-media-busan {
  background:
    linear-gradient(140deg, rgba(5, 20, 32, 0.06), rgba(5, 20, 32, 0.32)),
    linear-gradient(135deg, #d1f2ea 0%, #8cd0c1 34%, #3e94a6 68%, #15394f 100%);
}

.tennis-detail-media-copy {
  position: relative;
  z-index: 1;
  max-width: 420px;
  color: var(--white);
}

.tennis-detail-media-copy h4 {
  margin: 10px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 500;
}

.tennis-detail-media-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.tennis-selection-column {
  display: grid;
  gap: 18px;
}

.tennis-selection-group {
  display: grid;
  gap: 12px;
}

.tennis-selection-group .eyebrow {
  margin-bottom: -3px;
  color: #8a611c;
}

.tennis-selection-group h4 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.tennis-option-list {
  display: grid;
  gap: 12px;
}

.tennis-option-card {
  position: relative;
  width: 100%;
  padding: 16px 16px 14px;
  border: 1px solid #d4e2dd;
  border-radius: 16px;
  background: var(--white);
  color: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(7, 56, 65, 0.08);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.tennis-option-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

.tennis-option-card.selected {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 154, 66, 0.16), 0 12px 28px rgba(7, 56, 65, 0.13);
}

.tennis-option-card.selected::after {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  place-items: center;
  background: var(--gold-500);
  color: var(--navy-950);
  content: "✓";
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
}

.tennis-option-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tennis-option-head h5 {
  margin: 0 0 5px;
  color: var(--navy-900);
  font-size: 0.98rem;
}

.tennis-option-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.tennis-option-badge,
.tennis-session-number {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  place-items: center;
  background: linear-gradient(135deg, #f8efe2, #efd08f);
  color: #8b5d1e;
  font-size: 1.15rem;
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(139, 93, 30, 0.12);
}

.tennis-session-number {
  background: linear-gradient(135deg, #def4ef, #b4e3db);
  color: #0f5f6c;
  font-size: 1rem;
}

.tennis-option-card strong {
  display: block;
  margin-top: 12px;
  color: #986b20;
  font-size: 0.98rem;
}

.tennis-session-list .tennis-option-card strong {
  color: #0f6b78;
}

.tennis-info-column {
  display: grid;
  gap: 16px;
}

.tennis-info-grid {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.tennis-detail-note {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #d7e5e0;
  border-radius: 14px;
  background: #f6fbf9;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.tennis-booking-control {
  margin-top: 22px;
}

.tennis-booking-control .detail-book-button {
  min-width: 170px;
}

.busan-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.busan-hot-card {
  grid-column: 1 / -1;
}

.busan-hot-card .asia-product-visual {
  min-height: 420px;
}

.busan-product-old {
  position: relative;
  background: url('assets/busan-tour-details/gamcheon.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.busan-product-old::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02));
  content: "";
  pointer-events: none;
}

.busan-product-old::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

.busan-product-old small {
  position: relative;
  z-index: 3;
}

.busan-product-east {
  background: linear-gradient(155deg, rgba(4, 27, 39, 0.02), rgba(3, 25, 39, 0.16));
  overflow: hidden;
}

.busan-product-east .busan-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.busan-product-east::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04));
  content: "";
  pointer-events: none;
}

.busan-product-east::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02));
  content: "";
  pointer-events: none;
}

.busan-product-east small {
  position: relative;
  z-index: 3;
}

.busan-product-hidden {
  background: url('assets/busan-tour-details/seokbulsa-temple.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.busan-product-hidden::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02));
  content: "";
  pointer-events: none;
}

.busan-product-hidden::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

.busan-product-hidden small {
  position: relative;
  z-index: 3;
}

.busan-product-south {
  background: url('assets/busan-tour-details/gwangalli-beach.jpeg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.busan-product-south::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
  content: "";
  pointer-events: none;
}

.busan-product-south::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: none;
  content: "";
  pointer-events: none;
}

.busan-product-south::before,
.busan-product-south::after {
  background-image: none !important;
}

.busan-product-south small {
  position: relative;
  z-index: 3;
}

.busan-product-hot {
  background: url('assets/busan-tour-details/haeundae-beach.jpeg');
  background-position: center 18%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.busan-product-hot::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02));
  content: "";
  pointer-events: none;
}

.busan-product-hot::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: none;
  content: "";
  pointer-events: none;
}

.busan-product-hot small {
  position: relative;
  z-index: 3;
}

.busan-product-hot::before {
  background: linear-gradient(180deg, rgba(3, 25, 39, 0.12), rgba(3, 25, 39, 0.12)) !important;
}

.details-panel {
  width: 100%;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid #d8e5e1;
  border-radius: 18px;
  background: linear-gradient(180deg, #f6fbf9, #edf7f3);
  color: var(--muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.busan-detail-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(7, 56, 65, 0.12);
}

.busan-detail-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.busan-detail-gallery-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.busan-detail-card {
  overflow: hidden;
  margin: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 56, 65, 0.12);
}

.busan-detail-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.busan-detail-card figcaption {
  padding: 10px 10px 11px;
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.details-panel p {
  margin: 0;
  color: var(--muted);
}

.cruise-detail-hero .cruise-hero-content {
  padding-top: 66px;
  padding-bottom: 72px;
}

.cruise-detail-card h2 {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
}

.cruise-detail-card h3 {
  margin-top: 30px;
  color: var(--navy-900);
}

.cruise-reserve-button {
  width: 100%;
  margin-top: 28px;
}

.cruise-page .site-footer {
  background: rgba(6, 41, 54, 0.96);
}

.asia-products,
.asia-consultation {
  background: transparent;
}

.asia-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.asia-product-card {
  display: grid;
  grid-template-columns: minmax(320px, 38%) minmax(0, 62%);
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 52px rgba(7, 56, 65, 0.14);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.asia-product-card:hover {
  border-color: var(--gold-500);
  box-shadow: 0 26px 62px rgba(7, 56, 65, 0.21);
  transform: translateY(-5px);
}

.asia-product-visual {
  position: relative;
  display: flex;
  min-height: 440px;
  height: 440px;
  align-self: start;
  grid-column: 1;
  grid-row: 1;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  padding: 25px;
  color: var(--white);
  isolation: isolate;
}

.asia-product-visual::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(3, 25, 39, 0.68)),
    repeating-linear-gradient(165deg, transparent 0 34px, rgba(255, 255, 255, 0.08) 35px 37px);
  content: "";
}

.asia-product-visual span {
  font-size: 2.2rem;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.2));
}

.asia-product-visual small {
  max-width: 220px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.asia-product-taiwan {
  background: #258e98 url("assets/asia-cruises/costa-busan-keelung.jpg") center / cover no-repeat;
}

.asia-product-tokyo {
  background: #314f71 url("assets/asia-cruises/msc-shanghai-tokyo.jpg") center / cover no-repeat;
}

.asia-product-tropical {
  background: #166c8a url("assets/asia-cruises/royal-singapore-phuket.jpg") center / cover no-repeat;
}

.asia-product-jeju {
  background: #39687b url("assets/asia-cruises/princess-tokyo-jeju.jpg") center / cover no-repeat;
}

.asia-product-disney {
  background: #396b8d url("assets/asia-cruises/disney-singapore.jpg") center / cover no-repeat;
}

.asia-cruises-page .asia-product-visual::before,
.hot-deals-page .asia-product-visual::before {
  background: linear-gradient(180deg, rgba(3, 25, 39, 0.02) 45%, rgba(3, 25, 39, 0.28));
}

.europe-product-diadema {
  background: #d7c59f url("assets/europe-cruises/costa-diadema.png") center / cover no-repeat;
}

.europe-product-world-europa {
  background: #93d4df url("assets/europe-cruises/msc-world-europa.png") center / cover no-repeat;
}

.europe-product-sinfonia {
  background: #d8c4a2 url("assets/europe-cruises/msc-sinfonia.png") center / cover no-repeat;
}

.europe-product-fortuna {
  background: #f0cf96 url("assets/europe-cruises/costa-fortuna.png") center / cover no-repeat;
}

.europe-product-euribia {
  background: #d8ece8 url("assets/europe-cruises/msc-euribia.png") center / cover no-repeat;
}

.caribbean-product-icon {
  background: #9ce7dc url("assets/caribbean-cruises/Carnival%20Panorama%20%20.jpeg") center / cover no-repeat;
}

.caribbean-product-icon .image-credit {
  display: none;
}

.caribbean-product-card .image-credit {
  display: none;
}

.caribbean-product-star {
  background: #badff2 url("assets/cruise-regions/MSC%20Meraviglia%20Caribbean%20%26%20Antilles%20%20.jpeg") center / cover no-repeat;
}

.caribbean-product-luna {
  background: #d4cbed url("assets/caribbean-cruises/MSC%20World%20America%20Caribbean%20%26%20Antilles%20%20.jpeg") center / cover no-repeat;
}

.caribbean-product-celebration {
  background: #f5cd89 url("assets/caribbean-cruises/Adventure%20of%20the%20Seas%20Western%20Caribbean%20%20.jpeg") center / cover no-repeat;
}

.caribbean-product-escape {
  background: #9be6cb url("assets/caribbean-cruises/discovery-princess.jpg") center 52% / cover no-repeat;
}

.australia-product-spirit {
  background: #d0eee6 url("assets/australia-cruises/norwegian-spirit.png") center / cover no-repeat;
}

.australia-product-splendor {
  background: #9ce8d8 url("assets/australia-cruises/carnival-splendor.png") center / cover no-repeat;
}

.australia-product-navigator {
  background: #e5d7ae url("assets/australia-cruises/seven-seas-navigator.png") center / cover no-repeat;
}

.australia-product-silver-moon {
  background: #dce8ea url("assets/australia-cruises/silver-moon.png") center / cover no-repeat;
}

.australia-product-crown {
  background: #f0d5a2 url("assets/australia-cruises/crown-princess.png") center / cover no-repeat;
}

.asia-product-body {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  align-items: flex-start;
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 28px 30px 30px;
}

.cruise-line-badge {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 6px 11px;
  border: 1px solid #dec48d;
  border-radius: 999px;
  background: #fff8e8;
  color: #805b1e;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asia-product-body h3 {
  margin-bottom: 20px;
  color: var(--navy-900);
  font-size: 1.4rem;
  line-height: 1.25;
}

.product-facts {
  display: grid;
  width: 100%;
  gap: 10px;
  margin: 0 0 20px;
}

.product-facts div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.product-facts dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.product-facts dd {
  margin: 0;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 750;
}

.asia-product-body > p {
  margin-bottom: 24px;
  color: var(--muted);
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.product-highlights li {
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf6f3;
  color: #426563;
  font-size: 0.76rem;
  font-weight: 700;
}

.product-card-footer {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 22px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.product-price {
  margin: 0;
  color: #9a6d20 !important;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.product-price small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.tennis-detail-actions {
  margin-top: 18px;
}

.product-actions .button {
  width: auto;
}

.product-detail-drawer {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-14px);
  transition: max-height 650ms ease, opacity 260ms ease, transform 350ms ease;
}

.product-detail-drawer.open {
  max-height: 4600px;
  opacity: 1;
  transform: translateY(0);
}

.detail-drawer-inner {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid #d8e5e1;
  border-radius: 18px;
  background: linear-gradient(180deg, #f6fbf9, #edf7f3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.detail-drawer-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.detail-drawer-heading .eyebrow {
  margin-bottom: 7px;
  color: #8a611c;
}

.detail-drawer-heading h4 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 500;
}

.detail-drawer-heading > p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.detail-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 30px;
}

.detail-photo {
  position: relative;
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 16px;
  border-radius: 14px;
  color: var(--white);
  isolation: isolate;
  background-position: center;
  background-size: cover;
}

.detail-photo::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(3, 26, 40, 0.65));
  content: "";
}

.detail-photo:nth-child(1) {
  background: linear-gradient(145deg, #8dded1, #238f98 55%, #15485f);
}

.detail-photo:nth-child(2) {
  background: linear-gradient(145deg, #efc988, #ca7d61 48%, #3c6174);
}

.detail-photo:nth-child(3) {
  background: linear-gradient(145deg, #b7d9cc, #658e83 45%, #304c69);
}

.detail-photo span {
  position: relative;
  z-index: 2;
  font-size: 1.7rem;
}

.detail-photo small {
  position: relative;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
}

.detail-photo-credit {
  margin: -20px 0 28px;
  color: var(--muted);
  font-size: 0.66rem;
}

.detail-photo-credit a {
  color: inherit;
}

.itinerary-timeline {
  display: grid;
  gap: 0;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.itinerary-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 17px;
  padding: 0 0 24px;
}

.itinerary-timeline li:not(:last-child)::after {
  position: absolute;
  top: 31px;
  bottom: 3px;
  left: 31px;
  width: 1px;
  background: #bed8d1;
  content: "";
}

.day-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 64px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 850;
}

.hot-deals-page .itinerary-timeline li {
  grid-template-columns: 104px minmax(0, 1fr);
}

.hot-deals-page .itinerary-timeline li:not(:last-child)::after {
  left: 47px;
}

.hot-deals-page .day-badge {
  width: 96px;
  padding: 0 8px;
  white-space: nowrap;
}

.asia-cruises-page .itinerary-timeline li {
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: start;
}

.asia-cruises-page .itinerary-timeline li:not(:last-child)::after {
  left: 47px;
}

.asia-cruises-page .day-badge {
  width: 96px;
  padding: 0 8px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.caribbean-cruises-page .itinerary-timeline li {
  grid-template-columns: 112px minmax(0, 1fr);
}

.caribbean-cruises-page .itinerary-timeline li:not(:last-child)::after {
  left: 51px;
}

.caribbean-cruises-page .day-badge {
  width: 104px;
  padding: 0 8px;
  white-space: nowrap;
}

.caribbean-cruises-page .detail-photo img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hot-deals-page .detail-photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hot-deals-page .detail-photo img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hot-deals-page .detail-photo:nth-child(3) img {
  object-position: left center;
  transform: scale(1.06);
  transform-origin: left center;
}

.itinerary-timeline h5 {
  margin: 3px 0 7px;
  color: var(--navy-900);
  font-size: 0.97rem;
}

.itinerary-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.inclusion-panel {
  padding: 20px;
  border: 1px solid #d7e5e0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
}

.inclusion-panel h5 {
  margin: 0 0 13px;
  color: var(--navy-900);
  font-size: 0.9rem;
}

.included-panel h5 {
  color: var(--success);
}

.excluded-panel h5 {
  color: #8d5d4b;
}

.inclusion-panel ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.8rem;
}

.detail-booking-control {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #d7e5e0;
  text-align: right;
}

.detail-book-button {
  min-width: 190px;
}

.detail-book-button:disabled {
  border-color: #b9c4c5;
  background: #c9d0d0;
  color: #6e797a;
  cursor: not-allowed;
  opacity: 1;
  pointer-events: none;
}

.detail-book-button:disabled:hover {
  background: #c9d0d0;
  transform: none;
}

.detail-booking-control small {
  color: #7b8788;
  font-size: 0.72rem;
}

.detail-booking-control small.selection-confirmed {
  color: var(--success);
  font-weight: 750;
}

.cabin-options {
  width: 100%;
  max-height: 0;
  grid-column: 1;
  grid-row: 2;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-14px);
  transition: max-height 650ms ease, opacity 260ms ease, transform 350ms ease;
}

.cabin-options.open {
  max-height: 1800px;
  opacity: 1;
  transform: translateY(0);
}

.cabin-options-inner {
  padding: 26px 22px 30px;
  border-top: 1px solid var(--line);
  background: #f5faf8;
}

.cabin-options-heading {
  margin-bottom: 18px;
}

.cabin-options-heading .eyebrow {
  margin-bottom: 5px;
  color: #8a611c;
}

.cabin-options-heading h4 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.cabin-option-list {
  display: grid;
  gap: 16px;
}

.cabin-option-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid #d4e2dd;
  border-radius: 16px;
  background: var(--white);
  color: inherit;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 12px 28px rgba(7, 56, 65, 0.1);
  transition: border-color 180ms ease, transform 180ms ease;
}

.cabin-option-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-3px);
}

.cabin-option-card.selected {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 154, 66, 0.2), 0 15px 32px rgba(7, 56, 65, 0.14);
}

.cabin-option-card.selected::after {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  place-items: center;
  background: var(--gold-500);
  color: var(--navy-950);
  content: "✓";
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
}

.cabin-room-image {
  position: relative;
  display: flex;
  min-height: 150px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
  padding: 16px;
  color: var(--white);
  isolation: isolate;
}

.cabin-room-image::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(3, 23, 36, 0.7));
  content: "";
}

.cabin-interior {
  background:
    linear-gradient(90deg, transparent 0 62%, rgba(229, 192, 119, 0.22) 63% 66%, transparent 67%),
    linear-gradient(145deg, #4d5965 0%, #273849 48%, #101f30 100%);
}

.cabin-exterior {
  background:
    radial-gradient(circle at 78% 26%, #9eddd9 0 32px, #e2c17e 33px 39px, #345269 40px 43px, transparent 44px),
    linear-gradient(145deg, #8ba9a3 0%, #456c78 48%, #1e3b51 100%);
}

.cabin-balcony {
  background:
    linear-gradient(90deg, transparent 0 45%, rgba(187, 231, 227, 0.72) 46% 74%, rgba(30, 83, 99, 0.55) 75% 78%, transparent 79%),
    linear-gradient(145deg, #a9c7bc 0%, #5a8d8c 42%, #275670 72%, #19374d 100%);
}

.asia-cruises-page .cabin-interior,
.europe-cruises-page .cabin-interior,
.hot-deals-page .cabin-interior {
  background: #4d5965 url("assets/cabin-rooms/europe-interior.png") center / cover no-repeat;
}

.asia-cruises-page .cabin-exterior,
.europe-cruises-page .cabin-exterior,
.hot-deals-page .cabin-exterior {
  background: #8ba9a3 url("assets/cabin-rooms/europe-exterior.png") center / cover no-repeat;
}

.asia-cruises-page .cabin-balcony,
.europe-cruises-page .cabin-balcony,
.hot-deals-page .cabin-balcony {
  background: #a9c7bc url("assets/cabin-rooms/europe-balcony.png") center / cover no-repeat;
}

.caribbean-cruises-page .cabin-interior {
  background: #4d5965 url("assets/cabin-rooms/caribbean-interior.png") center / cover no-repeat;
}

.caribbean-cruises-page .cabin-exterior {
  background: #8ba9a3 url("assets/cabin-rooms/caribbean-exterior.png") center / cover no-repeat;
}

.caribbean-cruises-page .cabin-balcony {
  background: #a9c7bc url("assets/cabin-rooms/caribbean-balcony.png") center / cover no-repeat;
}

.australia-cruises-page .cabin-interior {
  background: #4d5965 url("assets/cabin-rooms/australia-interior.png") center / cover no-repeat;
}

.australia-cruises-page .cabin-exterior {
  background: #8ba9a3 url("assets/cabin-rooms/australia-exterior.png") center / cover no-repeat;
}

.australia-cruises-page .cabin-balcony {
  background: #a9c7bc url("assets/cabin-rooms/australia-balcony.png") center / cover no-repeat;
}

.cabin-bed-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.22));
}

.cabin-room-feature {
  max-width: 170px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.cabin-option-copy {
  padding: 17px 18px 19px;
}

.cabin-option-copy h5 {
  margin: 0 0 7px;
  color: var(--navy-900);
  font-size: 1rem;
}

.cabin-option-copy p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

.cabin-option-copy strong {
  display: block;
  color: #986b20;
  font-size: 1.05rem;
}

.cruise-route-card {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid #d4e2dd;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 56, 65, 0.1);
}

.route-map-heading {
  margin-bottom: 18px;
}

.route-map-heading .eyebrow {
  margin-bottom: 4px;
  color: #8a611c;
}

.route-map-heading h4 {
  margin: 0 0 6px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.route-map-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.route-map-layout {
  display: block;
}

.route-map-visual {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #d7dfdc;
  border-radius: 14px;
  background-color: #e8eff0;
  background-image:
    linear-gradient(rgba(38, 70, 78, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 70, 78, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

.route-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-land {
  fill: #e7e2d9;
}

.route-baja {
  fill: #e7e2d9;
  stroke: #9ba7a4;
  stroke-linejoin: round;
  stroke-width: 0.7;
}

.route-island {
  fill: #e7e2d9;
  stroke: #9ba7a4;
  stroke-linejoin: round;
  stroke-width: 0.55;
}

.route-coastline {
  fill: none;
  stroke: #9ba7a4;
  stroke-width: 0.8;
}

.route-sailing-shadow {
  fill: none;
  stroke: rgba(255, 255, 255, 0.88);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.route-sailing-line {
  fill: none;
  stroke: #173f57;
  stroke-dasharray: 0.35 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 0.85;
}

#route-arrow path {
  fill: #173f57;
}

.route-map-ocean-label {
  position: absolute;
  left: 9%;
  bottom: 9%;
  color: rgba(31, 67, 76, 0.35);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.route-map-marker {
  position: absolute;
  z-index: 2;
  top: var(--route-y);
  left: var(--route-x);
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.route-map-marker span {
  display: block;
  width: 11px;
  height: 11px;
  margin: auto;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--navy-900);
  box-shadow: 0 3px 8px rgba(4, 42, 57, 0.24);
  transition: transform 180ms ease, background-color 180ms ease;
}

.route-map-marker em {
  position: absolute;
  top: 50%;
  left: 27px;
  width: max-content;
  padding: 4px 7px;
  border: 1px solid rgba(93, 111, 109, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  color: #284853;
  font-size: 0.57rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.01em;
  pointer-events: none;
  transform: translateY(-50%);
  white-space: nowrap;
}

.route-map-marker[data-route-key="cabo"] em,
.route-map-marker[data-route-key="mazatlan"] em,
.route-map-marker[data-route-key="puerto-vallarta"] em {
  right: 27px;
  left: auto;
}

.route-map-marker.route-label-left em {
  right: 27px;
  left: auto;
}

.route-map-marker.route-active span,
.route-map-marker:hover span,
.route-map-marker:focus-visible span {
  background: var(--gold-500);
  transform: scale(1.42);
}

.route-stop-list {
  display: grid;
  align-content: center;
  gap: 10px;
}

.route-stop-button {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d1e0dc;
  border-radius: 12px;
  background: #fafcfb;
  color: var(--navy-900);
  cursor: pointer;
  text-align: left;
  transform-origin: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.route-stop-button small,
.route-stop-button strong {
  display: block;
}

.route-stop-button small {
  margin-bottom: 4px;
  color: #8a611c;
  font-size: 0.66rem;
  font-weight: 850;
}

.route-stop-button strong {
  font-size: 0.78rem;
}

.route-stop-button.route-active,
.route-stop-button:hover,
.route-stop-button:focus-visible {
  border-color: var(--gold-500);
  box-shadow: 0 7px 16px rgba(7, 56, 65, 0.1);
  transform: scale(1.035);
}

.cruise-route-card:hover {
  transform: none;
}

.button-coming-soon:disabled {
  border-color: #a8b7ba;
  background: #edf3f1;
  color: #758487;
  cursor: not-allowed;
  opacity: 1;
}

.button-coming-soon:disabled:hover {
  transform: none;
}

.consultation-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 38px 42px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 22px 55px rgba(7, 56, 65, 0.2);
}

.consultation-panel h2 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 500;
}

.consultation-panel p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.consultation-panel .button {
  width: auto;
  flex: 0 0 auto;
}

.cruise-request-section {
  background: transparent;
}

.request-form-actions {
  align-items: flex-end;
  flex-direction: column;
  gap: 9px;
}

.request-form-actions small {
  max-width: 380px;
  color: var(--muted);
  font-size: 0.74rem;
  text-align: right;
}

.request-summary-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}

.footer-title {
  color: var(--white);
  font-weight: 850;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-300);
}

.copyright {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

@media (max-width: 940px) {
  .menu-button {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    align-items: stretch;
    padding: 28px 20px;
    background: var(--navy-950);
  }

  .site-nav.open {
    display: grid;
    gap: 8px;
  }

  .home-page .site-nav {
    background: rgba(218, 243, 236, 0.98);
  }

  .cruise-page .site-nav {
    background: rgba(218, 243, 236, 0.98);
  }

  .site-nav a {
    padding: 13px 10px;
    font-size: 1rem;
  }

  .nav-booking {
    margin-top: 8px;
    text-align: center;
  }

  .card-grid,
  .review-grid,
  .reviews-video-grid,
  .travel-review-grid,
  .medical-review-video-grid,
  .medical-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 560px);
  }

  .hero {
    min-height: 72vh;
  }

  .hero-content {
    padding: 80px 0;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero {
    padding: 72px 0 64px;
  }

  .card-grid,
  .package-grid,
  .review-grid,
  .reviews-video-grid,
  .travel-review-grid,
  .medical-review-video-grid,
  .medical-testimonial-grid,
  .two-column,
  .form-grid,
  .footer-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 240px;
  }

  .home-page .hero {
    min-height: 460px;
  }

  .home-page .hero-content {
    padding: 48px 0 54px;
  }

  .home-page .hero::before {
    right: -22%;
    bottom: 10%;
    width: 68vw;
    opacity: 0.55;
  }

  .home-page .home-feature-card {
    min-height: 0;
  }

  .feature-visual {
    min-height: 190px;
  }

  .feature-body {
    min-height: 225px;
  }

  .cruise-hero-content,
  .cruise-detail-hero .cruise-hero-content {
    padding: 54px 0 60px;
  }

  .back-link {
    margin-bottom: 26px;
  }

  .cruise-category-grid {
    grid-template-columns: 1fr;
  }

  .cruise-deal-card {
    grid-column: auto;
    display: block;
  }

  .cruise-category-visual {
    min-height: 220px;
  }

  .cruise-category-body {
    min-height: 230px;
    padding: 24px;
  }

  .asia-product-grid {
    grid-template-columns: 1fr;
  }

  .asia-product-card {
    display: block;
  }

  .medical-card-grid {
    grid-template-columns: 1fr;
  }

  .medical-feature-card,
  .medical-square-card {
    grid-column: auto;
  }

  .medical-square-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .medical-square-card .asia-product-visual {
    grid-column: 1;
    grid-row: 1;
    min-height: 210px;
    height: 210px;
  }

  .medical-square-card .asia-product-body {
    grid-column: 1;
    grid-row: 2;
    padding: 22px 24px 24px;
  }

  .medical-square-card .medical-card-meta {
    margin-top: auto;
  }

  .medical-square-card .medical-card-meta .button {
    min-width: 0;
    width: 100%;
  }

  .medical-intro-band {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 20px 22px;
  }

  .medical-card-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .medical-partners-section {
    padding: 22px 20px 20px;
  }

  .medical-partners-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asia-product-visual {
    min-height: 210px;
    height: 210px;
  }

  .asia-product-body {
    min-height: 0;
    padding: 24px;
  }

  .product-card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .product-price {
    text-align: right;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .button {
    width: 100%;
  }

  .detail-drawer-inner {
    margin-top: 24px;
    padding: 20px;
  }

  .detail-drawer-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .detail-drawer-heading > p {
    max-width: none;
    text-align: left;
  }

  .detail-photo-grid,
  .inclusion-grid {
    grid-template-columns: 1fr;
  }

  .route-map-visual {
    min-height: 0;
  }

  .route-stop-button.route-active,
  .route-stop-button:hover,
  .route-stop-button:focus-visible {
    transform: scale(1.025);
  }

  .tennis-detail-layout-split {
    grid-template-columns: 1fr;
  }

  .tennis-detail-media {
    min-height: 200px;
    padding: 20px;
  }

  .busan-detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .busan-detail-gallery-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-booking-control {
    align-items: stretch;
    text-align: center;
  }

  .detail-book-button {
    width: 100%;
  }

  .detail-photo {
    min-height: 130px;
  }

  .itinerary-timeline li {
    grid-template-columns: 68px 1fr;
    gap: 12px;
  }

  .consultation-panel {
    align-items: stretch;
    flex-direction: column;
    padding: 30px 24px;
  }

  .consultation-panel .button {
    width: 100%;
  }

  .request-form-actions {
    align-items: stretch;
  }

  .request-form-actions small {
    max-width: none;
    text-align: center;
  }

  .summary-card {
    position: static;
  }

  .field-full {
    grid-column: auto;
  }

  .radio-group {
    grid-template-columns: 1fr;
  }

  .button-row,
  .package-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
