:root {
  --bg: #f7f8f9;
  --navy: #0f172a;
  --navy-soft: #172033;
  --teal: #0ea5a4;
  --gold: #f5b841;
  --sand: #e9dfcf;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 22px 55px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Pretendard", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  word-break: keep-all;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}

.skip-link,
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 100;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.85rem 1rem;
  clip: auto;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(226, 232, 240, 0.72);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 40px, 1380px);
  min-height: 78px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  overflow: visible;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 1.15rem;
  font-weight: 800;
}

.brand small {
  margin-top: 0.36rem;
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.85rem, 1.7vw, 1.85rem);
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
}

.site-nav a {
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--teal);
}

.header-actions {
  display: flex;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 58px;
  padding: 0 32px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn img,
.sticky-cta img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn-small {
  height: 46px;
  padding: 0 22px;
  font-size: 0.92rem;
}

.btn-gold,
.btn-soft,
.sticky-kakao {
  background: var(--gold);
  color: #17120a;
  box-shadow: 0 14px 28px rgba(245, 184, 65, 0.24);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal), #087f7c);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(14, 165, 164, 0.26);
}

.btn-navy,
.sticky-quote {
  background: var(--navy);
  color: var(--white);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: clamp(620px, 57.14vw, 1024px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
  background-image: url("./assets/hero-package-main-20260531.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.hero-overlay {
  z-index: 1;
  display: none;
  background:
    linear-gradient(90deg, rgba(7, 18, 37, 0.76) 0%, rgba(7, 18, 37, 0.46) 34%, rgba(7, 18, 37, 0.08) 68%),
    linear-gradient(180deg, rgba(7, 18, 37, 0.24) 0%, rgba(7, 18, 37, 0) 46%, rgba(7, 18, 37, 0.2) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 32%;
  background: linear-gradient(180deg, rgba(7, 18, 37, 0) 0%, rgba(7, 18, 37, 0.92) 70%, #071225 100%);
  pointer-events: none;
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  min-height: clamp(620px, 57.14vw, 1024px);
  padding: 0;
}

.hero-copy {
  position: relative;
  min-height: clamp(620px, 57.14vw, 1024px);
  padding-top: clamp(110px, 8.8vw, 168px);
}

.eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-teal {
  color: var(--teal);
}

.hero-copy h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  max-width: 640px;
  margin: 1rem 0 1.1rem;
  color: #ffffff;
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.34);
}

.hero-lead {
  display: none;
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}

.hero-actions {
  display: none;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.hero-copy > .eyebrow {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  display: block;
  white-space: nowrap;
  color: var(--gold);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.38);
}

.hero-quick-actions {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 3.2vw, 56px);
  z-index: 4;
  width: min(calc(100% - 48px), 1120px);
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.5vw, 24px);
  margin: 0;
  transform: translateX(-50%);
}

.hero-quick-actions .btn {
  min-width: clamp(230px, 20vw, 300px);
  height: clamp(56px, 4vw, 66px);
  padding-inline: 28px;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.hero-quick-actions .btn-gold {
  background: linear-gradient(135deg, #f5b841, #ffd978);
}

.hero-quick-actions .btn-teal {
  background: rgba(14, 165, 164, 0.92);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.hero-quick-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  backdrop-filter: blur(14px);
}

@media (min-width: 861px) {
  .hero-quick-actions .btn {
    border: 0;
    background: transparent !important;
    box-shadow: none;
    color: transparent;
    font-size: 0;
    text-shadow: none;
    backdrop-filter: none;
  }

  .hero-quick-actions .btn:hover {
    transform: none;
  }
}

.product-flight-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(245, 184, 59, 0.45);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 235, 0.96));
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.product-flight-notice strong {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.product-flight-notice span {
  color: #334155;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.55;
}

.hero-flight-note {
  position: absolute;
  left: 52.8%;
  right: auto;
  bottom: calc(clamp(180px, 14vw, 240px) + 22px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: clamp(24px, 1.8vw, 30px);
  padding: 0 clamp(10px, 0.8vw, 14px);
  border: 1px solid rgba(245, 184, 65, 0.58);
  border-radius: 999px;
  margin: 0;
  background: rgba(7, 18, 37, 0.66);
  color: var(--gold);
  font-size: clamp(13px, 0.88vw, 16px);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  text-shadow: none;
  white-space: nowrap;
}

.hero-trust-strip {
  background: #ffffff;
  border-bottom: 1px solid #e5eaf0;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.hero-trust-inner {
  width: min(100% - 48px, 1320px);
  min-height: 128px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.hero-trust-item {
  display: grid;
  grid-template-columns: 58px minmax(0, auto);
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: 94px;
  padding: 22px 34px;
  color: var(--navy);
}

.hero-trust-item + .hero-trust-item {
  border-left: 1px solid #dfe5ec;
}

.hero-trust-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--navy);
}

.hero-trust-icon svg {
  width: 48px;
  height: 48px;
}

.hero-trust-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-trust-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.hero-card-label {
  margin: 0 0 0.8rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-card h2 {
  margin: 0 0 0.75rem;
  font-size: 32px;
  font-weight: 800;
}

.hero-card > p:not(.hero-card-label) {
  margin: 0 0 1.45rem;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.hero-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.hero-service-grid div {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-service-grid div:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.hero-service-grid strong {
  font-size: 0.95rem;
  font-weight: 800;
}

.line-icon,
.feature-icon {
  display: grid;
  place-items: center;
  color: var(--teal);
}

.line-icon svg {
  width: 30px;
  height: 30px;
}

.feature-icon {
  width: 66px;
  height: 66px;
  border-radius: 24px;
  background: rgba(14, 165, 164, 0.1);
}

.feature-icon svg {
  width: 34px;
  height: 34px;
}

.line-icon path,
.feature-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.hero-stats span {
  display: grid;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-stats strong {
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 820px;
  margin: 0 0 2.25rem;
}

.section-heading.compact {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0.65rem 0 0.8rem;
  color: var(--navy);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.18;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.services {
  padding-bottom: 60px;
  background: linear-gradient(180deg, #f8fafc 0%, #f3f6fa 100%);
}

.services .container {
  width: min(100% - 48px, 1320px);
}

.services .section-heading {
  max-width: none;
}

.services .section-heading h2 {
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  height: 100%;
  min-height: 500px;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-media {
  height: 178px;
  overflow: hidden;
  background: #d8dde3;
  flex: 0 0 178px;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.04);
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.category {
  min-height: 18px;
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.service-card h3,
.fleet-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.service-card h3 {
  min-height: 54px;
  font-size: 23px;
  line-height: 1.22;
  white-space: normal;
}

.summary {
  min-height: 60px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.service-price {
  min-height: 26px;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.35rem;
  min-height: 54px;
  margin-bottom: 0.9rem;
}

.tag-row span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin-top: auto;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease;
}

.card-btn:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.reveal-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

html.reveal-ready .reveal-up {
  opacity: 0;
  transform: translateY(28px);
}

html.reveal-ready .reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.marine-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 86px;
  padding: 0 0 86px;
  background:
    linear-gradient(180deg, #effaff 0%, #ffffff 58%, #f7fbff 100%);
}

.marine-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(90deg, rgba(14, 165, 164, 0.08), rgba(255, 255, 255, 0), rgba(3, 105, 161, 0.08));
}

.marine-showcase {
  position: relative;
  z-index: 1;
}

.marine-container {
  position: relative;
  z-index: 4;
  width: min(100% - 48px, 1320px);
}

.marine-hero-banner {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #e7f7ff;
}

.marine-hero-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.03) brightness(1.03);
}

.marine-hero-banner::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: -8%;
  bottom: -70px;
  left: -8%;
  height: 150px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: #ffffff;
}

.marine-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(241, 250, 255, 0.96) 0%, rgba(241, 250, 255, 0.68) 34%, rgba(255, 255, 255, 0.08) 72%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.12) 28%, rgba(255, 255, 255, 0) 72%);
}

.marine-hero-copy {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 520px;
  padding: clamp(52px, 7vw, 76px) 24px 120px;
  color: #063b78;
  text-align: center;
}

.marine-script {
  margin: 0 0 18px;
  color: #0b78cf;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 500;
  line-height: 1;
}

.marine-hero-copy h2 {
  max-width: min(100%, 960px);
  margin: 0;
  color: #08366f;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.marine-hero-copy > p:not(.marine-script) {
  max-width: 720px;
  margin: 24px 0 28px;
  color: #314866;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
  line-height: 1.65;
}

.marine-banner-btn,
.marine-card-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.marine-banner-btn {
  width: max-content;
  min-height: 58px;
  gap: 10px;
  padding: 0 34px;
  background: linear-gradient(180deg, #0f85d8 0%, #0567b6 100%);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(5, 103, 182, 0.28);
}

.marine-banner-btn svg,
.marine-benefit-item svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.marine-banner-btn:hover {
  background: linear-gradient(180deg, #10a8df 0%, #0873c9 100%);
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(5, 103, 182, 0.34);
}

.marine-location {
  position: absolute;
  right: 24px;
  bottom: 96px;
  left: 24px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-shadow: 0 2px 10px rgba(8, 32, 58, 0.28);
}

.marine-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: -78px;
}

.marine-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(14, 116, 144, 0.08);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.marine-card:hover {
  border-color: rgba(14, 165, 164, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 26px 58px rgba(3, 105, 161, 0.16);
}

.marine-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #dcecf5;
  flex: 0 0 220px;
}

.marine-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 37, 0.03) 20%, rgba(7, 18, 37, 0.08) 100%);
}

.marine-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.marine-card:hover .marine-card-media img {
  transform: scale(1.05);
}

.marine-card-media span {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  max-width: calc(100% - 36px);
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #0786bd;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 24px rgba(8, 47, 73, 0.1);
}

.marine-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 22px 22px;
}

.marine-card-body h3 {
  margin: 0;
  color: #082f63;
  font-size: clamp(22px, 1.55vw, 28px);
  font-weight: 900;
  line-height: 1.22;
}

.marine-card-body > p {
  margin: 16px 0 24px;
  color: #516274;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.marine-card-body a {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  gap: 10px;
  border: 1px solid #0f8dd6;
  background: var(--white);
  color: #0872bd;
  font-size: 15px;
}

.marine-card-body a:hover {
  border-color: #0872bd;
  background: #0872bd;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(8, 114, 189, 0.2);
}

.marine-benefit-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 1050px);
  margin: 20px auto 0;
  overflow: hidden;
  border: 1px solid rgba(14, 116, 144, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

.marine-benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 20px 24px;
  color: #0b5a99;
}

.marine-benefit-item + .marine-benefit-item {
  border-left: 1px solid rgba(8, 47, 73, 0.12);
}

.marine-benefit-item strong,
.marine-benefit-item small {
  display: block;
  line-height: 1.3;
}

.marine-benefit-item strong {
  color: #123c67;
  font-size: 15px;
  font-weight: 900;
}

.marine-benefit-item small {
  margin-top: 5px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  html.reveal-ready .reveal-up,
  html.reveal-ready .reveal-up.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marine-card,
  .marine-card-media img,
  .marine-banner-btn,
  .marine-card-body a {
    transition: none;
  }
}

.fleet {
  position: relative;
  padding-top: 60px;
  border-top: 1px solid #dfe6ee;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

.fleet::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(100% - 48px, 1320px);
  height: 1px;
  background: linear-gradient(90deg, rgba(14, 165, 164, 0), rgba(14, 165, 164, 0.45), rgba(245, 184, 65, 0.45), rgba(14, 165, 164, 0));
  transform: translateX(-50%);
}

.fleet .container {
  position: relative;
  z-index: 1;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.fleet-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.fleet-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.fleet-body {
  padding: 1.6rem;
}

.fleet-body dl {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
}

.fleet-body div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.fleet-body div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fleet-body dt,
.fleet-body dd {
  margin: 0;
  font-size: 0.96rem;
}

.fleet-body dt {
  color: var(--muted);
  font-weight: 600;
}

.fleet-body dd {
  color: var(--navy);
  text-align: right;
  font-weight: 800;
}

.review-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 88px 24px;
}

.review-container {
  max-width: 1320px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #0ea5a4;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.section-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-head p {
  margin-top: 18px;
  color: #64748b;
  font-size: 17px;
  line-height: 1.7;
}

.review-section .review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.13);
}

.review-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.review-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.05) 0%,
    rgba(15, 23, 42, 0.28) 100%
  );
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card:nth-child(3) .review-image img {
  object-position: center bottom;
}

.review-badge {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.68);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.quote-icon {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.review-body {
  padding: 30px 30px 34px;
}

.stars {
  color: #f5b841;
  font-size: 20px;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.review-body h3 {
  margin: 0;
  color: #0f172a;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.review-body p {
  margin: 18px 0 28px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ccfbf1;
  color: #0f766e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.review-user strong {
  display: block;
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 4px;
}

.review-user span {
  display: block;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
}

.cta-section {
  padding: 64px 0;
  background: var(--navy);
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.cta-inner h2 {
  margin: 0.65rem 0 1rem;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.18;
}

.cta-inner p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 0.8rem;
}

.quote {
  background: var(--bg);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 3rem;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 110px;
  padding-top: 1rem;
}

.quote-copy h2 {
  margin: 0.7rem 0 1rem;
  color: var(--navy);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.18;
}

.quote-copy p:not(.eyebrow) {
  margin: 0 0 1.8rem;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.quote-flight-notice {
  margin: 0 0 1.5rem;
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.date-range {
  display: grid;
  grid-column: span 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.quote-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input,
.quote-form select {
  min-height: 54px;
  padding: 0 1rem;
}

.quote-form textarea {
  padding: 1rem;
  resize: vertical;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
}

.form-flight-note {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(245, 184, 59, 0.45);
  border-radius: 16px;
  background: #fff9eb;
  color: var(--navy);
}

.form-flight-note strong {
  font-size: 0.94rem;
  font-weight: 900;
}

.form-flight-note span {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
}

.form-status[data-tone="pending"] {
  color: #0f766e;
}

.form-status[data-tone="success"] {
  color: #047857;
}

.form-status[data-tone="error"] {
  color: #b91c1c;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.12);
}

.btn-submit {
  width: 100%;
}

.site-footer {
  background: #ffffff;
  color: #0f172a;
  padding: 44px 48px 22px;
  margin-top: 56px;
}

.footer-inner {
  max-width: 1540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.12fr 1.08fr 0.92fr;
  gap: 0;
  align-items: stretch;
}

.footer-logo {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #08204a;
  font-size: clamp(28px, 2.55vw, 40px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer-logo img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  background: transparent;
}

.footer-logo span {
  white-space: nowrap;
}

.footer-brand p {
  margin: 0;
  color: #1f2937;
  line-height: 1.65;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.footer-column {
  padding-left: 34px;
  border-left: 1px solid #dfe5ec;
}

.footer-column h4 {
  position: relative;
  margin: 0 0 30px;
  color: #08204a;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: #08204a;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  min-height: 42px;
  display: grid;
  grid-template-columns: 26px 64px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  border-bottom: 1px solid #e5eaf0;
  color: #111827;
  font-size: 13px;
  line-height: 1.35;
}

.footer-column strong {
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.footer-column li > span:not(.footer-item-icon) {
  min-width: 0;
  color: #1f2937;
  white-space: nowrap;
  overflow-wrap: normal;
}

.footer-column .footer-link-item {
  display: block;
  padding: 0;
}

.footer-contact-link {
  min-height: 42px;
  display: grid;
  grid-template-columns: 26px 64px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  color: #111827;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-contact-link:hover {
  color: #0ea5a4;
  transform: translateX(2px);
}

.footer-contact-link span:not(.footer-item-icon) {
  min-width: 0;
  color: currentColor;
  white-space: nowrap;
  overflow-wrap: normal;
}

.footer-contact-link strong {
  color: currentColor;
}

.footer-item-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #08204a;
}

.footer-item-icon svg {
  width: 23px;
  height: 23px;
}

.footer-item-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-kakao-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.footer-column:nth-child(4) li {
  min-height: 42px;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 0;
}

.footer-column a {
  color: #1f2937;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.25s ease;
}

.footer-column a:hover {
  color: #0ea5a4;
}

.footer-notice {
  max-width: 1540px;
  margin: 26px auto 0;
  padding-top: 14px;
  border-top: 1px solid #dfe5ec;
}

.footer-notice p {
  color: #64748b;
  font-size: 11px;
  line-height: 1.65;
  margin: 0 0 5px;
}

.footer-bottom {
  max-width: 1540px;
  margin: 12px auto 0;
  color: #64748b;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.legal-page {
  background: #f7f8f9;
}

.legal-header {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.legal-brand {
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.legal-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: transparent;
}

.legal-corp-logo {
  width: min(32vw, 280px);
  max-height: 42px;
  object-fit: contain;
}

.legal-back {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 800;
}

.legal-main {
  width: min(100% - 48px, 980px);
  margin: 0 auto;
}

.legal-hero {
  padding: 68px 0 34px;
}

.legal-kicker {
  margin: 0 0 14px;
  color: #0ea5a4;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.legal-hero h1 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.12;
}

.legal-hero p:not(.legal-kicker) {
  max-width: 760px;
  margin: 20px 0 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.8;
}

.legal-card {
  padding: 42px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
}

.legal-card section + section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid #e5e7eb;
}

.legal-card h2 {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: 1.45rem;
  font-weight: 900;
}

.legal-card h3 {
  margin: 24px 0 10px;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 900;
}

.legal-card p,
.legal-card li {
  color: #475569;
  font-size: 15px;
  line-height: 1.85;
}

.legal-card ul,
.legal-card ol {
  padding-left: 1.2rem;
  margin: 0;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-note {
  margin: 0 0 28px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #ecfeff;
  color: #0f766e;
  font-weight: 800;
  line-height: 1.7;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
}

.legal-table th,
.legal-table td {
  padding: 16px;
  border: 1px solid #e5e7eb;
  color: #475569;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.7;
}

.legal-table th {
  width: 28%;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 900;
}

.source-note {
  margin-top: 28px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.8;
}

.sticky-cta {
  position: fixed;
  z-index: 60;
  right: 50%;
  bottom: 1.25rem;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  width: min(100% - 40px, 520px);
  padding: 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.18);
  transform: translateX(50%);
  backdrop-filter: blur(14px);
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 800;
}

@media (max-width: 1200px) {
  .site-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-footer {
    padding: 44px 32px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column {
    padding-left: 24px;
  }
}

@media (max-width: 1024px) {
  .service-grid,
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marine-card-grid,
  .marine-benefit-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marine-hero-banner,
  .marine-hero-copy {
    min-height: 470px;
  }

  .package-hotel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .container,
  .header-inner,
  .marine-container {
    width: min(100% - 32px, 1240px);
  }

  .site-header {
    position: sticky;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero-bg {
    background-position: 18% center;
    background-size: auto 100%;
  }

  .hero-overlay {
    display: block;
    background:
      linear-gradient(180deg, rgba(7, 18, 37, 0.72) 0%, rgba(7, 18, 37, 0.48) 44%, rgba(7, 18, 37, 0.92) 100%),
      linear-gradient(90deg, rgba(7, 18, 37, 0.68) 0%, rgba(7, 18, 37, 0.18) 100%);
  }

  .hero::after {
    height: 58%;
    background: linear-gradient(180deg, rgba(7, 18, 37, 0.16) 0%, rgba(7, 18, 37, 0.96) 54%, #071225 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: center;
    min-height: 640px;
    padding: 92px 0 190px;
  }

  .hero-copy {
    min-height: auto;
    padding-top: 0;
  }

  .hero-copy > .eyebrow {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    display: inline-flex;
    white-space: normal;
  }

  .hero-trust-inner {
    width: min(100% - 32px, 1320px);
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 12px 0;
  }

  .hero-trust-item {
    justify-content: flex-start;
    min-height: 86px;
    padding: 18px 8px;
  }

  .hero-trust-item + .hero-trust-item {
    border-left: 0;
    border-top: 1px solid #dfe5ec;
  }

  .hero-trust-item strong {
    font-size: 19px;
  }

  .hero-copy h1 {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    max-width: 420px;
    font-size: 38px;
  }

  .hero-lead {
    display: block;
    max-width: 400px;
    font-size: 17px;
  }

  .hero-actions {
    display: none;
    margin-top: 0.8rem;
  }

  .hero-quick-actions {
    left: 16px;
    right: 16px;
    bottom: 26px;
    width: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    transform: none;
  }

  .hero-quick-actions .btn {
    width: 100%;
    min-width: 0;
    height: 54px;
    padding-inline: 18px;
    font-size: 16px;
  }

  .hero-flight-note {
    left: 16px;
    bottom: 208px;
    min-height: 26px;
    padding: 0 11px;
    font-size: 13px;
  }

  .product-flight-notice {
    flex-direction: column;
    gap: 9px;
  }

  .marine-section.section {
    padding: 0 0 68px;
  }

  .marine-hero-banner {
    border-radius: 0;
  }

  .marine-hero-copy {
    padding: 62px 20px 98px;
  }

  .marine-hero-copy > p:not(.marine-script) {
    font-size: 17px;
  }

  .marine-card-media {
    height: 210px;
    flex-basis: 210px;
  }

  .btn-large {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading h2,
  .quote-copy h2 {
    font-size: 34px;
  }

  .services .section-heading h2 {
    width: auto;
    white-space: normal;
  }

  .service-card h3 {
    white-space: normal;
  }

  .service-card {
    min-height: auto;
  }

  .fleet-grid,
  .marine-card-grid,
  .package-hotel-grid,
  .review-grid,
  .quote-grid,
  .form-grid,
  .date-range,
  .cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }

  .cta-actions {
    display: grid;
  }

  .sticky-cta {
    display: grid;
  }
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .review-section .review-grid {
    grid-template-columns: 1fr;
  }

  .review-image {
    height: 260px;
  }

}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-column {
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid #dfe5ec;
  }
}

@media (max-width: 640px) {
  .brand small {
    font-size: 0.52rem;
  }

  .marine-hero-banner,
  .marine-hero-copy {
    min-height: 430px;
  }

  .marine-hero-copy {
    padding: 68px 18px 88px;
  }

  .marine-hero-copy h2 {
    font-size: 38px;
  }

  .marine-hero-copy > p:not(.marine-script) {
    margin: 14px 0 22px;
    font-size: 16px;
  }

  .marine-banner-btn {
    width: 100%;
  }

  .marine-card-grid {
    gap: 16px;
    margin-top: -58px;
  }

  .marine-card {
    min-height: auto;
  }

  .marine-card-body {
    padding: 20px;
  }

  .marine-benefit-bar {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .marine-benefit-item + .marine-benefit-item {
    border-top: 1px solid rgba(8, 47, 73, 0.12);
    border-left: 0;
  }

  .marine-location {
    bottom: 72px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .review-section {
    padding: 56px 20px;
  }

  .section-head h2 {
    font-size: 34px;
  }

  .section-head p {
    font-size: 15px;
  }

  .review-section .review-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow-x: visible;
    padding: 0;
  }

  .review-body {
    padding: 26px 22px 30px;
  }

  .review-body h3 {
    font-size: 20px;
  }

  .site-footer {
    padding: 36px 20px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-logo {
    gap: 14px;
    margin-bottom: 14px;
    font-size: 26px;
  }

.footer-logo img {
    width: 80px;
    height: 80px;
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-column h4 {
    margin-bottom: 32px;
    font-size: 19px;
  }

  .footer-column li {
    grid-template-columns: 28px 68px minmax(0, 1fr);
    gap: 10px;
    min-height: 52px;
    font-size: 13px;
  }

  .footer-column li > span:not(.footer-item-icon) {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .footer-contact-link {
    grid-template-columns: 28px 68px minmax(0, 1fr);
    gap: 10px;
    min-height: 52px;
    font-size: 13px;
  }

  .footer-contact-link span:not(.footer-item-icon) {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .footer-column strong {
    font-size: 13px;
  }

  .footer-item-icon,
  .footer-kakao-icon img {
    width: 25px;
    height: 25px;
  }

  .footer-item-icon svg {
    width: 25px;
    height: 25px;
  }

  .footer-column:nth-child(4) li {
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: 50px;
  }

  .footer-column a {
    font-size: 15px;
  }

  .footer-notice {
    margin-top: 28px;
  }

  .legal-header,
  .legal-main {
    width: min(100% - 32px, 980px);
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .hero-card {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .hero-service-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .services .container,
  .fleet .container,
  .reviews .container {
    width: 100%;
  }

  .services .section-heading,
  .fleet .section-heading,
  .reviews .section-heading {
    width: min(100% - 32px, 1240px);
    margin-inline: auto;
  }

  .fleet-grid,
  .review-grid {
    display: grid;
    grid-auto-columns: minmax(82%, 1fr);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding: 0 16px 18px;
    scroll-snap-type: x mandatory;
  }

  .service-grid {
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }

  .service-card,
  .fleet-card,
  .review-card {
    scroll-snap-align: start;
  }

  .fleet-card img {
    height: 240px;
  }

  .quote-form {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .quote-form .form-grid,
  .quote-form .date-range {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .quote-form .form-grid > label,
  .quote-form .date-range,
  .quote-form > label {
    grid-column: 1 / -1;
    min-width: 0;
  }

  .quote-form label {
    gap: 0.7rem;
    font-size: 1rem;
    line-height: 1.35;
  }

  .quote-form input,
  .quote-form select {
    min-height: 64px;
    border-radius: 18px;
    padding: 0 18px;
    font-size: 1.08rem;
  }

  .quote-form input[type="date"] {
    min-width: 100%;
    text-align: left;
  }

  .quote-form textarea {
    min-height: 150px;
    border-radius: 18px;
    padding: 18px;
    font-size: 1.08rem;
  }

  .quote-form input::placeholder,
  .quote-form textarea::placeholder {
    font-size: 1rem;
  }

  .quote-form .btn-submit {
    min-height: 62px;
    font-size: 1.05rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    bottom: 0.85rem;
    width: min(100% - 24px, 520px);
    border-radius: 18px;
  }

  .sticky-cta a {
    border-radius: 14px;
  }
}

.detail-page {
  background:
    radial-gradient(circle at top left, rgba(14, 165, 164, 0.09), transparent 34rem),
    #f7f8f9;
}

.detail-main {
  padding: 118px 24px 90px;
}

.detail-hero {
  width: min(100%, 1180px);
  margin: 0 auto 34px;
  text-align: center;
}

.detail-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.detail-hero p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.7;
}

.detail-flight-notice {
  width: min(100%, 760px);
  margin: 22px auto 0;
  text-align: left;
}

.service-flight-inline {
  margin-inline: 0;
}

.golf-flight-notice {
  max-width: 560px;
  margin: 24px 0 0;
}

.detail-price-basis {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: min(100%, 760px);
  margin: 12px auto 0;
  padding: 15px 18px;
  border: 1px solid rgba(31, 166, 160, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  text-align: left;
}

.detail-price-basis strong {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(31, 166, 160, 0.14);
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.detail-price-basis span {
  color: #475569;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.55;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.detail-outline {
  border-color: rgba(15, 23, 42, 0.18);
  background: rgba(15, 23, 42, 0.04);
  color: var(--navy);
}

.detail-image-section {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.detail-stack {
  display: grid;
  gap: 34px;
}

.detail-poster {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  image-rendering: auto;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.package-hotel-section {
  width: min(100%, 1180px);
  margin: 48px auto 0;
}

.package-hotel-head {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.package-hotel-head h2 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.package-hotel-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.7;
}

.package-hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.package-hotel-card {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12);
}

.package-hotel-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  background: #dbe7ef;
}

.package-hotel-body {
  padding: 24px;
}

.package-hotel-body span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.package-hotel-body h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.package-hotel-body p {
  margin: 0 0 18px;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.65;
}

.package-hotel-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-hotel-body li {
  position: relative;
  padding-left: 18px;
  color: #1f2937;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
}

.package-hotel-body li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.package-hotel-note {
  margin: 22px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.65;
  text-align: center;
}

.detail-bottom-cta {
  width: min(100%, 960px);
  margin: 42px auto 0;
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
  text-align: center;
}

.detail-bottom-cta h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.detail-cta-note {
  margin: -8px auto 22px;
  color: #64748b;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.65;
}

.service-detail-page {
  background:
    linear-gradient(180deg, #eef9f9 0%, #f7f8f9 34%, #ffffff 100%);
}

.service-detail-main {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 116px 0 86px;
}

.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: stretch;
  min-height: 520px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 249, 249, 0.92)),
    #ffffff;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.13);
}

.service-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}

.service-detail-copy h1 {
  margin: 14px 0 18px;
  color: var(--navy);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.service-detail-copy p:not(.eyebrow) {
  margin: 0;
  color: #475569;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.72;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.service-detail-outline {
  border-color: rgba(15, 23, 42, 0.16);
  background: rgba(15, 23, 42, 0.04);
  color: var(--navy);
}

.service-detail-media {
  min-height: 100%;
  overflow: hidden;
  background: #dbeafe;
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-section {
  padding-top: 64px;
}

.service-detail-heading {
  margin-bottom: 24px;
  text-align: center;
}

.service-detail-heading span,
.service-detail-note span,
.service-detail-final span {
  display: block;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-detail-heading h2,
.service-detail-note h2,
.service-detail-final h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(29px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.service-detail-card-grid,
.service-feature-grid,
.service-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-detail-card,
.service-feature-card,
.service-price-grid article,
.service-flow-list article,
.service-vehicle-grid article {
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.service-detail-card {
  min-height: 190px;
  padding: 30px;
  border-radius: 28px;
}

.service-detail-card strong,
.service-feature-card h3,
.service-flow-list strong,
.service-vehicle-grid h3,
.service-price-grid span {
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.service-detail-card strong {
  display: block;
  font-size: 24px;
}

.service-detail-card p,
.service-feature-card p,
.service-flow-list p,
.service-vehicle-grid p,
.service-price-grid p {
  margin: 12px 0 0;
  color: #64748b;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.72;
}

.service-feature-card {
  overflow: hidden;
  border-radius: 28px;
}

.service-feature-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #dce6ef;
}

.service-feature-card div {
  padding: 26px;
}

.service-feature-card h3 {
  margin: 0;
  font-size: 24px;
}

.service-flow-list {
  display: grid;
  gap: 14px;
}

.service-flow-list article {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 128px;
  padding: 24px 28px;
  border-radius: 26px;
}

.service-flow-list span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #ecfeff;
  color: var(--teal);
  font-size: 19px;
  font-weight: 900;
}

.service-flow-list strong {
  display: block;
  font-size: 22px;
}

.service-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-vehicle-grid article {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  border-radius: 28px;
}

.service-vehicle-grid img {
  width: 100%;
  height: 154px;
  border-radius: 22px;
  object-fit: cover;
  background: #dce6ef;
}

.service-vehicle-grid h3 {
  margin: 0;
  font-size: 26px;
}

.service-price-grid article {
  min-height: 168px;
  padding: 28px 24px;
  border-radius: 28px;
}

.service-price-grid span {
  display: block;
  font-size: 21px;
  line-height: 1.36;
}

.service-price-grid strong {
  display: block;
  margin-top: 18px;
  color: #0a7c78;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.service-detail-note {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 30px;
  align-items: center;
  margin-top: 64px;
  padding: 32px;
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(8, 99, 96, 0.88)),
    url("./assets/hero-kouri-bridge.jpg") center / cover no-repeat;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.service-detail-note h2,
.service-detail-final h2 {
  color: #ffffff;
}

.service-detail-note ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-note li {
  color: #e2e8f0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.62;
}

.service-detail-note li::before {
  content: "✓";
  display: inline-block;
  margin-right: 10px;
  color: var(--gold);
  font-weight: 900;
}

.service-detail-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin-top: 44px;
  padding: 42px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(5, 95, 90, 0.9)),
    url("./img/공항.골프장픽드랍.png") center / cover no-repeat;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.service-detail-final h2 {
  font-size: clamp(28px, 4vw, 38px);
}

.chauffeur-detail-page .service-detail-final {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(5, 95, 90, 0.9)),
    url("./assets/service-hourly-chauffeur-20260531.jpg") center / cover no-repeat;
}

.marine-detail-page {
  background:
    radial-gradient(circle at 16% 8%, rgba(125, 211, 252, 0.32), rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, #effaff 0%, #ffffff 44%, #f7fbff 100%);
}

.marine-detail-main {
  width: min(100% - 40px, 1240px);
}

.marine-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: stretch;
  padding-top: 0;
}

.marine-detail-copy,
.marine-booking-panel,
.marine-detail-quick article,
.marine-option-card,
.marine-info-grid article,
.marine-faq-list article {
  border: 1px solid rgba(14, 116, 144, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.marine-detail-copy {
  min-height: 520px;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 249, 255, 0.9)),
    url("./assets/marine-kerama-showcase-hero-20260626.jpg") center / cover no-repeat;
  overflow: hidden;
  position: relative;
}

.marine-detail-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 48%, rgba(255, 255, 255, 0.42) 100%),
    linear-gradient(180deg, rgba(240, 249, 255, 0.72), rgba(255, 255, 255, 0.06));
}

.marine-detail-copy > * {
  position: relative;
  z-index: 1;
}

.marine-detail-copy h1 {
  max-width: 790px;
  margin: 14px 0 20px;
  color: #07366c;
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.marine-detail-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: #334155;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.78;
}

.marine-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.marine-hero-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(14, 116, 144, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #0369a1;
  font-size: 14px;
  font-weight: 900;
}

.marine-booking-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
}

.marine-booking-panel img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  background: #dbeafe;
}

.marine-booking-panel div {
  display: grid;
  align-content: center;
  min-height: 250px;
  padding: 30px;
}

.marine-booking-panel span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.marine-booking-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.marine-booking-panel p {
  margin: 14px 0 0;
  color: #64748b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.marine-detail-quick {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.marine-detail-quick article {
  min-height: 150px;
  padding: 24px;
  border-radius: 24px;
}

.marine-detail-quick span,
.marine-option-card span {
  display: block;
  color: #0284c7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.marine-detail-quick strong {
  display: block;
  margin-top: 9px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.marine-detail-quick p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.62;
}

.marine-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.marine-option-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 28px;
}

.marine-option-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  background: #dbeafe;
}

.marine-option-card div {
  padding: 30px;
}

.marine-option-card h3,
.marine-info-grid h3,
.marine-faq-list strong {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.marine-option-card p,
.marine-faq-list p {
  margin: 13px 0 0;
  color: #64748b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.marine-option-card ul,
.marine-info-grid ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.marine-option-card li,
.marine-info-grid li {
  color: #334155;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.marine-option-card li::before,
.marine-info-grid li::before {
  content: "✓";
  display: inline-block;
  margin-right: 9px;
  color: var(--teal);
  font-weight: 900;
}

.marine-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.marine-info-grid article {
  padding: 32px;
  border-radius: 28px;
}

.marine-info-grid h3 {
  margin-top: 0;
}

.marine-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.marine-gallery-grid img {
  width: 100%;
  height: 240px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.11);
}

.marine-detail-note {
  background:
    linear-gradient(90deg, rgba(4, 47, 77, 0.95), rgba(14, 116, 144, 0.86)),
    url("./assets/marine-kerama-showcase-hero-20260626.jpg") center / cover no-repeat;
}

.marine-detail-final {
  background:
    linear-gradient(135deg, rgba(3, 37, 65, 0.94), rgba(8, 145, 178, 0.84)),
    url("./assets/marine-card-snorkeling-showcase-20260626.jpg") center / cover no-repeat;
}

.marine-faq-list {
  display: grid;
  gap: 14px;
}

.marine-faq-list article {
  padding: 26px 30px;
  border-radius: 24px;
}

.marine-faq-list strong {
  display: block;
  margin: 0;
  font-size: 21px;
}

@media (max-width: 860px) {
  .detail-main {
    padding: 96px 14px 76px;
  }

  .detail-actions {
    flex-direction: column;
  }

  .detail-actions .btn,
  .detail-bottom-cta .btn {
    width: 100%;
  }

  .detail-poster {
    border-radius: 18px;
  }

  .detail-flight-notice,
  .detail-price-basis {
    flex-direction: column;
    gap: 9px;
  }

  .package-hotel-section {
    margin-top: 34px;
  }

  .package-hotel-head {
    margin-bottom: 20px;
  }

  .package-hotel-card {
    border-radius: 22px;
  }

  .package-hotel-body {
    padding: 20px;
  }

  .detail-stack {
    gap: 22px;
  }

  .detail-bottom-cta {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .service-detail-main {
    width: min(100% - 24px, 1180px);
    padding: 22px 0 60px;
  }

  .service-detail-hero,
  .service-detail-card-grid,
  .service-feature-grid,
  .service-price-grid,
  .service-detail-note,
  .service-detail-final {
    grid-template-columns: 1fr;
  }

  .service-detail-hero {
    min-height: auto;
    border-radius: 24px;
  }

  .service-detail-copy {
    padding: 34px 22px 10px;
  }

  .service-detail-copy h1 {
    font-size: 42px;
  }

  .service-detail-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .service-detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-detail-actions .btn,
  .service-detail-final .btn {
    width: 100%;
  }

  .service-detail-media {
    min-height: 260px;
  }

  .service-detail-section {
    padding-top: 48px;
  }

  .service-detail-card {
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }

  .service-feature-card,
  .service-price-grid article {
    border-radius: 24px;
  }

  .service-flow-list article {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .service-flow-list span {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .service-flow-list strong {
    font-size: 18px;
  }

  .service-vehicle-grid {
    grid-template-columns: 1fr;
  }

  .service-vehicle-grid article {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .service-vehicle-grid img {
    height: 220px;
  }

  .service-detail-note,
  .service-detail-final {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .marine-detail-main {
    width: min(100% - 24px, 1240px);
  }

  .marine-detail-hero,
  .marine-detail-quick,
  .marine-option-grid,
  .marine-info-grid,
  .marine-gallery-grid {
    grid-template-columns: 1fr;
  }

  .marine-detail-copy {
    min-height: auto;
    border-radius: 24px;
  }

  .marine-detail-copy h1 {
    font-size: 38px;
  }

  .marine-detail-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .marine-booking-panel {
    border-radius: 24px;
  }

  .marine-booking-panel img {
    height: 220px;
  }

  .marine-booking-panel div {
    min-height: auto;
    padding: 24px;
  }

  .marine-booking-panel strong {
    font-size: 28px;
  }

  .marine-option-card {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .marine-option-card img {
    min-height: 240px;
    height: 240px;
  }

  .marine-option-card div,
  .marine-info-grid article,
  .marine-faq-list article {
    padding: 24px;
  }

  .marine-gallery-grid img {
    height: 220px;
  }
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.golf-detail-page {
  background:
    radial-gradient(circle at 12% 12%, rgba(14, 165, 164, 0.13), transparent 28rem),
    linear-gradient(180deg, #eef9f9 0%, #f7f8f9 38%, #ffffff 100%);
}

.golf-detail-main {
  padding: 92px 20px 80px;
}

.golf-detail-canvas {
  width: min(100%, 1180px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.1);
}

.golf-hero-premium {
  position: relative;
  min-height: 520px;
  padding: 42px 42px 36px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #ffffff;
}

.golf-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 31%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0.08) 66%, rgba(255, 255, 255, 0) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.24) 100%);
  pointer-events: none;
}

.golf-hero-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: 62px;
  z-index: 1;
  width: 250px;
  height: 130px;
  background: linear-gradient(130deg, rgba(15, 23, 42, 0.08), transparent 62%);
  clip-path: polygon(0 0, 100% 0, 62% 100%, 0 36%);
  opacity: 0.22;
  pointer-events: none;
}

.golf-hero-copy {
  position: relative;
  z-index: 2;
  width: min(44%, 520px);
  min-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.golf-hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.golf-hero-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: transparent;
}

.golf-eyebrow,
.golf-section-head span,
.golf-check-kicker,
.golf-final-cta span {
  display: block;
  margin: 0;
  color: #0ea5a4;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.golf-hero-copy h1 {
  margin: 10px 0 14px;
  color: #0f172a;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.golf-hero-copy h1 span {
  color: #137f82;
}

.golf-hero-sub {
  margin: 0 0 22px;
  color: #071225;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.42;
}

.golf-hero-desc {
  margin: 0;
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
}

.golf-hero-actions,
.golf-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.golf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.golf-btn:hover {
  transform: translateY(-2px);
}

.golf-btn-primary {
  background: linear-gradient(135deg, #0ea5a4, #087f7c);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(14, 165, 164, 0.28);
}

.golf-btn-kakao {
  background: #f5b841;
  color: #17120a;
  box-shadow: 0 16px 30px rgba(245, 184, 65, 0.26);
}

.golf-btn-light {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.golf-hero-media {
  position: absolute;
  inset: 0 0 0 34%;
  z-index: 0;
  overflow: hidden;
}

.golf-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.golf-hero-feature-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 610px);
  margin-top: 24px;
}

.golf-hero-feature-item {
  min-height: 76px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(245, 184, 65, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.golf-hero-feature-item .golf-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff6df;
  color: #d29722;
}

.golf-hero-feature-item .golf-icon svg {
  width: 18px;
  height: 18px;
}

.golf-hero-feature-item strong {
  display: block;
  color: #8a5a05;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.golf-hero-feature-item p {
  margin: 5px 0 0;
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.golf-section {
  padding: 54px 46px 0;
}

.golf-section-head {
  margin-bottom: 26px;
  text-align: center;
}

.golf-section-head h2 {
  margin: 9px 0 0;
  color: #0f172a;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.golf-recommend-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.golf-recommend-item {
  min-height: 132px;
  padding: 20px 14px;
  border: 1px solid rgba(14, 165, 164, 0.13);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fdfd 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.golf-recommend-item:hover,
.golf-feature-card:hover,
.golf-course-card:hover,
.golf-vehicle-card:hover,
.golf-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
}

.golf-recommend-item strong {
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.golf-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #ecfeff;
  color: #0ea5a4;
}

.golf-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.golf-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.golf-feature-card,
.golf-vehicle-card,
.golf-price-card,
.golf-check-card {
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.golf-feature-card {
  overflow: hidden;
  border-radius: 28px;
}

.golf-card-image {
  height: 190px;
  overflow: hidden;
  background: #e2e8f0;
}

.golf-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.golf-support-frame img {
  object-position: center;
}

.golf-feature-body {
  padding: 24px;
}

.golf-feature-body .golf-icon {
  margin-bottom: 16px;
}

.golf-feature-body h3,
.golf-itinerary-card h3,
.golf-vehicle-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.golf-itinerary-card h3 small,
.golf-price-card span small {
  display: inline-block;
  margin-left: 4px;
  color: #0ea5a4;
  font-size: 0.68em;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.golf-feature-body ul,
.golf-check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.golf-feature-body li {
  color: #475569;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.8;
}

.golf-itinerary-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.golf-itinerary-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.golf-itinerary-card-featured {
  border-color: rgba(14, 165, 164, 0.28);
  background: linear-gradient(180deg, #f2fdfa 0%, #ffffff 100%);
}

.golf-day-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
}

.golf-day-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.golf-day-row b {
  color: #0ea5a4;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.golf-day-row p {
  margin: 0;
  color: #0f172a;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.golf-course-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.golf-course-card {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.golf-course-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.golf-course-card strong {
  min-height: 64px;
  padding: 15px 13px 17px;
  display: flex;
  align-items: center;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.36;
}

.golf-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.golf-vehicle-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 22px;
  padding: 18px;
  border-radius: 28px;
}

.golf-vehicle-card img {
  width: 100%;
  height: 138px;
  border-radius: 22px;
  object-fit: cover;
}

.golf-vehicle-card p {
  margin: 12px 0 0;
  color: #475569;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.golf-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.golf-price-card {
  min-height: 170px;
  padding: 26px 22px;
  border-radius: 28px;
}

.golf-price-card-featured {
  border-color: rgba(14, 165, 164, 0.32);
  background: linear-gradient(180deg, #f2fdfa 0%, #ffffff 100%);
}

.golf-price-card span {
  display: block;
  color: #0f172a;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
}

.golf-price-card p {
  margin: 8px 0 18px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.golf-price-card strong {
  display: block;
  color: #0a7c78;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.golf-check-section {
  padding-bottom: 0;
}

.golf-check-card {
  padding: 30px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.78)),
    url("./assets/golf.jpg") center / cover no-repeat;
}

.golf-check-card h2 {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 31px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.golf-check-list {
  margin: 0;
  display: grid;
  gap: 12px;
}

.golf-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
  font-size: 16px;
  font-weight: 800;
}

.golf-check-list svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: #f5b841;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.golf-final-cta {
  margin-top: 54px;
  padding: 44px 46px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(5, 95, 90, 0.9)),
    url("./assets/service-golf-tour-photo-20260601.jpg") center / cover no-repeat;
}

.golf-final-cta h2 {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.05em;
}

.golf-final-actions {
  max-width: 360px;
  justify-content: flex-end;
  margin-top: 0;
}

.golf-final-actions .golf-btn {
  width: 100%;
}

@media (max-width: 1100px) {
  .golf-detail-canvas {
    border-radius: 28px;
  }
}

@media (max-width: 860px) {
  .golf-detail-main {
    padding: 22px 12px 54px;
  }

  .golf-detail-canvas {
    border-radius: 24px;
  }

  .golf-hero-premium {
    min-height: auto;
    display: block;
    padding: 34px 22px 28px;
  }

  .golf-hero-premium::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0.2) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.18) 100%);
  }

  .golf-hero-copy {
    width: 100%;
    min-width: 0;
  }

  .golf-hero-logo {
    margin-bottom: 18px;
  }

  .golf-hero-logo img {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .golf-hero-copy h1 {
    font-size: 45px;
  }

  .golf-hero-sub {
    font-size: 19px;
  }

  .golf-hero-desc {
    font-size: 16px;
  }

  .golf-hero-actions,
  .golf-final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .golf-hero-media {
    position: relative;
    inset: auto;
    height: 260px;
    margin-top: 26px;
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
  }

  .golf-hero-feature-strip {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 26px;
  }

  .golf-hero-feature-item {
    min-height: 72px;
  }

  .golf-section {
    padding: 42px 18px 0;
  }

  .golf-section-head h2 {
    font-size: 29px;
  }

  .golf-recommend-grid,
  .golf-feature-grid,
  .golf-itinerary-grid,
  .golf-vehicle-grid,
  .golf-price-grid,
  .golf-check-card,
  .golf-final-cta {
    grid-template-columns: 1fr;
  }

  .golf-recommend-grid {
    gap: 10px;
  }

  .golf-recommend-item {
    min-height: 104px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .golf-course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .golf-vehicle-card {
    grid-template-columns: 1fr;
  }

  .golf-vehicle-card img {
    height: 210px;
  }

  .golf-check-card,
  .golf-final-cta {
    padding: 28px 20px;
  }

  .golf-check-card h2,
  .golf-final-cta h2 {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .golf-detail-main {
    padding-inline: 0;
  }

  .golf-detail-canvas {
    border-radius: 0;
    box-shadow: none;
  }

  .golf-hero-copy h1 {
    font-size: 36px;
    letter-spacing: -0.055em;
  }

  .golf-hero-feature-item {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 12px;
  }

  .golf-section-head h2 {
    font-size: 26px;
    letter-spacing: -0.04em;
  }

  .golf-hero-actions .golf-btn,
  .golf-final-actions .golf-btn {
    width: 100%;
  }

  .golf-card-image {
    height: 210px;
  }

  .golf-course-grid {
    grid-template-columns: 1fr;
  }
}
