:root {
  --green: #0f7a4d;
  --green-dark: #075437;
  --green-light: #e9f5ef;
  --navy: #132b3d;
  --text: #18242d;
  --muted: #5f6c73;
  --line: #dce3df;
  --paper: #f7f8f6;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(20, 47, 37, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 106px 0; }

.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;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: #fff;
  background: #000;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.notice-bar { color: #eaf8f1; background: #083d2a; font-size: 14px; }
.notice-inner { height: 38px; display: flex; align-items: center; justify-content: space-between; }
.notice-inner p { margin: 0; letter-spacing: -0.01em; }
.notice-inner > span { color: #badcca; font-size: 13px; font-weight: 700; }

.site-header {
  position: relative;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.header-inner { height: 88px; display: flex; align-items: center; gap: 36px; }
.brand { display: block; width: 118px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; object-fit: contain; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 44px; flex: 1; }
.main-nav a { padding: 28px 2px; font-weight: 750; font-size: 17px; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--green); }
.header-cta {
  display: inline-flex;
  min-height: 48px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--green);
  border-radius: 9px;
  font-weight: 800;
}
.header-cta:hover { background: var(--green-dark); }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 620px; display: grid; place-items: center; overflow: hidden; color: #fff; }
.hero-image { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 54%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 24, 17, 0.82) 0%, rgba(4, 26, 18, 0.61) 42%, rgba(5, 21, 16, 0.11) 73%),
    linear-gradient(0deg, rgba(5, 24, 16, 0.22), transparent 44%);
}
.hero-content { position: relative; padding: 78px 0 88px; }
.eyebrow { margin: 0 0 15px; color: #c7f2dc; font-size: 14px; font-weight: 850; letter-spacing: 0.16em; }
.hero h1 { margin: 0; font-size: clamp(44px, 4.4vw, 64px); line-height: 1.22; letter-spacing: -0.055em; font-weight: 700; }
.hero h1 strong { color: #8ee5b4; font-weight: 850; }
.hero-copy { margin: 24px 0 32px; color: #f4f7f5; font-size: 20px; line-height: 1.7; letter-spacing: -0.025em; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  min-height: 58px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 850;
  transition: transform 0.18s ease, background 0.18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: #0f915c; box-shadow: 0 10px 28px rgba(3, 36, 23, 0.3); }
.button-primary:hover { background: #0b774c; }
.button-light { color: var(--text); background: rgba(255, 255, 255, 0.94); }
.button-light:hover { background: #fff; }
.hero-note { margin: 19px 0 0; color: #e3ede8; font-size: 15px; }
.hero-note span { display: inline-grid; width: 20px; height: 20px; margin-right: 5px; place-items: center; color: #063e29; background: #98e8bc; border-radius: 50%; font-size: 12px; font-weight: 900; }

.quick-menu { position: relative; z-index: 5; margin-top: -36px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-radius: 15px; box-shadow: var(--shadow); overflow: hidden; }
.quick-item { min-height: 112px; padding: 23px 24px; display: flex; align-items: center; gap: 15px; border-right: 1px solid var(--line); }
.quick-item:last-child { border-right: 0; }
.quick-item:hover { color: var(--green); background: #fbfdfc; }
.quick-icon { width: 48px; height: 48px; display: grid; flex: 0 0 auto; place-items: center; background: var(--green-light); border-radius: 50%; font-size: 23px; }
.quick-item span:nth-child(2) { display: flex; min-width: 0; flex: 1; flex-direction: column; }
.quick-item b { font-size: 18px; line-height: 1.35; }
.quick-item small { margin-top: 3px; color: var(--muted); font-size: 14px; }
.quick-item i { color: #85918c; font-size: 29px; font-style: normal; font-weight: 300; }

.packages-section { padding-top: 132px; }
.section-heading { margin-bottom: 38px; display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.section-kicker { margin: 0 0 8px; color: var(--green); font-size: 14px; font-weight: 900; letter-spacing: 0.12em; }
.section-heading h2, .service-copy h2, .consult-inner h2 { margin: 0; font-size: clamp(34px, 3.2vw, 45px); line-height: 1.3; letter-spacing: -0.045em; }
.section-heading > p { max-width: 450px; margin: 0 0 4px; color: var(--muted); font-size: 17px; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package-card { overflow: hidden; background: #fff; border: 1px solid #e1e6e3; border-radius: var(--radius); box-shadow: 0 9px 30px rgba(20, 47, 37, 0.06); }
.package-card > a { display: block; height: 100%; }
.card-image-wrap { position: relative; height: 244px; overflow: hidden; }
.card-image-wrap img { height: 100%; object-fit: cover; transition: transform 0.38s ease; }
.package-card:hover .card-image-wrap img { transform: scale(1.035); }
.card-tag { position: absolute; top: 16px; left: 16px; padding: 6px 11px; color: #fff; background: var(--green); border-radius: 7px; font-size: 13px; font-weight: 800; }
.card-tag-blue { background: #176c98; }
.card-tag-dark { background: #263a47; }
.card-body { padding: 25px 25px 27px; }
.card-category { margin: 0 0 5px; color: var(--green); font-size: 12px; font-weight: 900; letter-spacing: 0.1em; }
.card-body h3 { margin: 0 0 10px; font-size: 25px; line-height: 1.4; letter-spacing: -0.035em; }
.card-body > p:not(.card-category) { min-height: 57px; margin: 0 0 19px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.card-link { display: inline-flex; align-items: center; gap: 12px; color: var(--green-dark); font-weight: 850; }
.card-link b { font-size: 20px; }

.places-section { background: #eef5f1; }
.places-heading { margin-bottom: 52px; }
.place-group { padding: 38px; scroll-margin-top: 28px; background: #fff; border: 1px solid #dfe8e3; border-radius: 24px; box-shadow: 0 12px 36px rgba(20, 47, 37, 0.06); }
.place-group + .place-group { margin-top: 30px; }
.place-group-title { margin-bottom: 27px; display: flex; align-items: center; gap: 15px; }
.place-group-icon { width: 54px; height: 54px; display: grid; flex: 0 0 auto; place-items: center; background: var(--green-light); border-radius: 50%; font-size: 25px; }
.place-group-icon.blue { background: #e7f4f9; }
.place-group-icon.sand { background: #fbf2df; }
.place-group-title p { margin: 0 0 1px; color: var(--green); font-size: 12px; font-weight: 900; letter-spacing: 0.1em; }
.place-group-title h3 { margin: 0; font-size: 29px; line-height: 1.35; letter-spacing: -0.035em; }
.golf-place-layout { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 30px; }
.golf-place-photo { position: relative; min-height: 528px; margin: 0; overflow: hidden; border-radius: 16px; }
.golf-place-photo::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(4, 24, 17, 0.85)); }
.golf-place-photo img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.golf-place-photo figcaption { position: absolute; z-index: 2; right: 24px; bottom: 22px; left: 24px; display: flex; flex-direction: column; color: #fff; }
.golf-place-photo figcaption b { font-size: 20px; }
.golf-place-photo figcaption span { color: #e2ece7; font-size: 13px; }
.place-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 21px; border-top: 1px solid var(--line); }
.place-row { padding: 17px 0; display: flex; align-items: flex-start; gap: 16px; border-bottom: 1px solid var(--line); }
.place-number { width: 39px; height: 39px; display: grid; flex: 0 0 auto; place-items: center; color: var(--green-dark); background: #e5f2eb; border-radius: 50%; font-size: 12px; font-weight: 900; }
.place-info { min-width: 0; flex: 1; }
.place-info h4, .tour-place-body h4, .stay-place-card h4 { margin: 0; font-size: 20px; line-height: 1.4; letter-spacing: -0.025em; }
.place-info > p { margin: 3px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.place-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.place-meta > span, .pending-price { display: inline-flex; min-height: 27px; padding: 3px 9px; align-items: center; color: var(--green-dark); background: #e4f2ea; border-radius: 6px; font-size: 12px; font-weight: 850; }
.place-meta > span.status-warning { color: #7a4d00; background: #fff0cf; }
.place-meta a { color: var(--green); font-size: 13px; font-weight: 850; }
.tour-place-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tour-place-card { overflow: hidden; background: #fff; border: 1px solid #dfe5e2; border-radius: 16px; }
.tour-place-card > img { height: 218px; object-fit: cover; }
.tour-place-body { padding: 21px 21px 22px; }
.place-label { margin: 0 0 4px; color: var(--green); font-size: 12px; font-weight: 900; }
.tour-place-body > p:not(.place-label) { min-height: 52px; margin: 7px 0 16px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.activity-place-grid { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.activity-place-card { min-height: 108px; padding: 16px; display: flex; align-items: center; gap: 13px; background: #f8faf9; border: 1px solid var(--line); border-radius: 13px; }
.activity-place-card:hover { color: var(--green-dark); background: #f1f7f4; border-color: #bcd2c6; }
.activity-icon { width: 41px; height: 41px; display: grid; flex: 0 0 auto; place-items: center; background: #fff; border-radius: 10px; box-shadow: 0 3px 10px rgba(20, 47, 37, 0.06); font-size: 20px; }
.activity-copy { display: flex; min-width: 0; flex: 1; flex-direction: column; }
.activity-copy small { color: var(--green); font-size: 11px; font-weight: 850; }
.activity-copy b { margin: 1px 0 4px; font-size: 15px; line-height: 1.45; }
.activity-copy em { color: #68756e; font-size: 11px; font-style: normal; }
.activity-place-card > i { color: #86a092; font-size: 15px; font-style: normal; }
.place-disclosure { margin: -13px 0 25px; padding: 13px 16px; color: #56655d; background: #f6f8f7; border-left: 3px solid #9eb8aa; border-radius: 0 8px 8px 0; font-size: 14px; }
.stay-place-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.stay-place-card { min-height: 168px; padding: 23px 21px; display: flex; align-items: flex-start; flex-direction: column; border: 1px solid var(--line); border-radius: 15px; }
.stay-icon { width: 43px; height: 43px; margin-bottom: 14px; display: grid; place-items: center; background: #f0f5f2; border-radius: 11px; font-size: 21px; }
.stay-place-card > div:not(.stay-card-actions) { flex: 1; }
.stay-place-card p { margin: 5px 0 16px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.stay-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.stay-card-actions a { color: var(--green); font-size: 12px; font-weight: 850; }
.place-source-link { margin-top: 22px; display: inline-flex; align-items: center; gap: 10px; color: var(--green); font-size: 15px; font-weight: 850; border-bottom: 2px solid var(--green); }
.vehicle-options { margin-top: 23px; padding: 18px; display: flex; align-items: center; flex-wrap: wrap; gap: 9px; background: #f5f8f6; border-radius: 13px; }
.vehicle-options strong { margin-right: 5px; color: var(--green-dark); font-size: 15px; }
.vehicle-options span { padding: 7px 11px; color: #42534a; background: #fff; border: 1px solid #d9e4de; border-radius: 8px; font-size: 13px; font-weight: 750; }

.service-section { background: var(--paper); }
.service-layout { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr); align-items: center; gap: clamp(54px, 7vw, 92px); }
.service-photo { position: relative; }
.service-photo img { height: 530px; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow); }
.photo-badge { position: absolute; right: -28px; bottom: 32px; width: 124px; height: 124px; display: flex; align-items: center; justify-content: center; flex-direction: column; color: #fff; background: var(--green); border: 7px solid var(--paper); border-radius: 50%; }
.photo-badge strong { font-size: 16px; }
.photo-badge span { font-size: 14px; }
.service-copy h2 { margin-bottom: 20px; }
.service-lead { margin: 0 0 29px; color: var(--muted); font-size: 18px; line-height: 1.8; }
.check-list { margin: 0 0 28px; padding: 0; list-style: none; }
.check-list li { padding: 16px 0; display: flex; align-items: center; gap: 18px; border-top: 1px solid #d9dfdc; }
.check-list li:last-child { border-bottom: 1px solid #d9dfdc; }
.check-list li > span { display: grid; width: 40px; height: 40px; place-items: center; flex: 0 0 auto; color: var(--green-dark); background: #dfeee6; border-radius: 50%; font-size: 13px; font-weight: 900; }
.check-list div { display: flex; flex-direction: column; }
.check-list b { font-size: 18px; }
.check-list small { color: var(--muted); font-size: 15px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--green); font-weight: 850; border-bottom: 2px solid var(--green); }

.clark-guide-section { background: #fff; scroll-margin-top: 28px; }
.travel-tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.travel-tool-card { min-height: 184px; padding: 25px; display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 16px; background: #f8faf9; border: 1px solid var(--line); border-radius: 16px; transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease; }
.travel-tool-card:hover { transform: translateY(-3px); border-color: #a9c8b8; box-shadow: 0 14px 34px rgba(20, 47, 37, 0.09); }
.travel-tool-icon { width: 47px; height: 47px; display: grid; place-items: center; color: var(--green-dark); background: var(--green-light); border-radius: 12px; font-size: 22px; }
.travel-tool-card small { color: var(--green); font-size: 12px; font-weight: 900; }
.travel-tool-card h3 { margin: 2px 0 6px; font-size: 21px; line-height: 1.35; }
.travel-tool-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.travel-tool-card > b { color: #8aa096; font-size: 16px; }
.exchange-panel { margin-top: 25px; padding: 31px; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 28px 38px; color: #fff; background: linear-gradient(130deg, #102f27, #0a5d3f); border-radius: 20px; box-shadow: var(--shadow); }
.exchange-intro .section-kicker { color: #9fe0bc; }
.exchange-intro h3 { margin: 0 0 10px; font-size: 29px; line-height: 1.35; letter-spacing: -0.035em; }
.exchange-intro > p:last-child { margin: 0; color: #d5e7de; font-size: 15px; }
.exchange-rates { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.rate-card { padding: 20px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 14px; }
.rate-card > span { display: block; margin-bottom: 10px; color: #c9ddd4; font-size: 12px; font-weight: 800; }
.rate-card strong { display: flex; align-items: baseline; flex-wrap: wrap; gap: 5px; line-height: 1.2; }
.rate-card strong small { font-size: 14px; font-weight: 750; }
.rate-card strong b { color: #9eebbf; font-size: 27px; letter-spacing: -0.025em; }
.rate-card strong em { color: #d5e7de; font-size: 13px; font-style: normal; }
.exchange-footer { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px 18px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.exchange-footer p { margin: 0; color: #dcebe4; font-size: 13px; }
.exchange-footer button { min-height: 38px; padding: 0 14px; color: #103c2d; background: #b8f0ce; border: 0; border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 850; }
.exchange-footer button:disabled { cursor: wait; opacity: 0.65; }
.exchange-footer small { grid-column: 1 / -1; color: #adc8bb; font-size: 12px; }

.gallery-heading a { margin-bottom: 6px; color: var(--green); font-weight: 850; }
.gallery-grid { display: grid; grid-template-columns: 1.35fr 0.75fr; grid-template-rows: repeat(2, 250px); gap: 18px; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; border-radius: 16px; background: #ddd; }
.gallery-grid .gallery-large { grid-row: 1 / span 2; }
.gallery-grid img { height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figure::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(3, 21, 14, 0.82)); }
.gallery-grid figcaption { position: absolute; z-index: 2; right: 24px; bottom: 21px; left: 24px; display: flex; flex-direction: column; color: #fff; }
.gallery-grid figcaption b { font-size: 21px; }
.gallery-grid figcaption span { color: #e8efeb; font-size: 14px; }

.refund-section { background: #f6f2e9; scroll-margin-top: 28px; }
.refund-layout { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr); gap: clamp(42px, 7vw, 88px); }
.refund-heading h2 { margin: 0 0 15px; font-size: clamp(34px, 3.2vw, 45px); line-height: 1.3; letter-spacing: -0.045em; }
.refund-heading > p:not(.section-kicker) { margin: 0 0 16px; color: var(--muted); font-size: 16px; }
.refund-heading > span { color: #7b6e53; font-size: 13px; font-weight: 800; }
.refund-list { background: #fff; border: 1px solid #e4dccb; border-radius: 18px; overflow: hidden; }
.refund-list article { padding: 22px 24px; display: grid; grid-template-columns: auto 1fr; gap: 17px; border-bottom: 1px solid #ebe4d7; }
.refund-list article:last-child { border-bottom: 0; }
.refund-list article > b { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; background: #8c7141; border-radius: 50%; font-size: 12px; }
.refund-list h3 { margin: 0 0 4px; font-size: 19px; }
.refund-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }
.refund-note { margin-top: 22px; padding: 18px 22px; display: flex; align-items: center; gap: 16px; color: #513f21; background: #fff8e9; border: 1px solid #e5d5b6; border-radius: 13px; }
.refund-note strong { flex: 0 0 auto; }
.refund-note p { margin: 0; font-size: 14px; }

.consult-section { padding: 70px 0; color: #fff; background: linear-gradient(115deg, #075437, #0d7c4e 68%, #178c5c); }
.consult-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.section-kicker.light { color: #b9f0d1; }
.consult-inner h2 { margin-bottom: 8px; font-size: 37px; }
.consult-inner p:last-child { margin: 0; color: #dbece3; }
.button-kakao { flex: 0 0 auto; color: #2d2500; background: #fee500; }
.button-kakao:hover { background: #ffed38; }
.button-kakao span { margin-left: 12px; font-size: 21px; }

.site-footer { padding: 44px 0 92px; background: #f2f4f2; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-brand img { width: 118px; height: auto; object-fit: contain; }
.footer-brand p { margin: 9px 0 0; color: var(--muted); font-size: 14px; }
.footer-info { max-width: 560px; text-align: right; }
.footer-info a { color: var(--green); font-weight: 850; }
.footer-info p { margin: 6px 0 0; color: #7b8580; font-size: 13px; }
.footer-links { display: flex; justify-content: flex-end; gap: 22px; }

.floating-consult {
  position: fixed;
  z-index: 90;
  right: 25px;
  bottom: 24px;
  min-width: 116px;
  min-height: 54px;
  padding: 0 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #14331f;
  background: #fee500;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 27px;
  box-shadow: 0 10px 25px rgba(25, 35, 29, 0.25);
  font-size: 15px;
}

body.modal-open { overflow: hidden; }
.kakao-modal { position: fixed; z-index: 300; inset: 0; display: grid; padding: 24px; place-items: center; }
.kakao-backdrop { position: absolute; inset: 0; background: rgba(6, 17, 11, 0.68); backdrop-filter: blur(3px); }
.kakao-dialog { position: relative; z-index: 1; width: min(455px, 100%); max-height: calc(100vh - 48px); padding: 29px; overflow-y: auto; background: #fff; border-radius: 22px; box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35); }
.kakao-close { position: absolute; top: 15px; right: 15px; width: 42px; height: 42px; padding: 0; color: #4d5651; background: #f0f2f1; border: 0; border-radius: 50%; cursor: pointer; font-size: 28px; line-height: 1; }
.kakao-dialog-copy { padding-right: 43px; }
.kakao-badge { color: #7d6e00; font-size: 12px; font-weight: 900; letter-spacing: 0.1em; }
.kakao-dialog h2 { margin: 3px 0 8px; font-size: 27px; line-height: 1.35; letter-spacing: -0.035em; }
.kakao-dialog-copy p { margin: 0 0 20px; color: var(--muted); font-size: 15px; }
.kakao-qr { width: min(265px, 75%); margin: 0 auto 19px; border: 1px solid #f0dfb8; border-radius: 14px; }
.kakao-id-row { padding: 13px 15px; display: grid; grid-template-columns: 1fr auto; align-items: center; background: #fff8d8; border-radius: 11px; }
.kakao-id-row span { color: #736928; font-size: 12px; font-weight: 700; }
.kakao-id-row strong { grid-row: 2; font-size: 20px; }
.kakao-id-row button { grid-row: 1 / span 2; grid-column: 2; min-height: 38px; padding: 0 13px; color: #3b3300; background: #fee500; border: 0; border-radius: 7px; cursor: pointer; font-size: 13px; font-weight: 850; }
.kakao-open-button { width: 100%; margin-top: 13px; color: #2d2500; background: #fee500; }
.kakao-help { margin: 11px 0 0; color: #7d8581; text-align: center; font-size: 12px; }

@media (max-width: 960px) {
  .notice-bar { display: none; }
  .header-inner { height: 76px; }
  .brand { width: 108px; }
  .header-cta { display: none; }
  .menu-toggle { width: 46px; height: 46px; margin-left: auto; padding: 10px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 5px; color: var(--text); background: transparent; border: 0; }
  .menu-toggle span:not(.sr-only) { width: 23px; height: 2px; background: currentColor; transition: transform 0.2s ease; }
  .main-nav { position: absolute; top: 76px; right: 0; left: 0; padding: 13px 24px 21px; display: none; align-items: stretch; flex-direction: column; gap: 0; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 16px 25px rgba(20, 40, 30, 0.12); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 2px; border-bottom: 1px solid #edf0ee; }
  .hero { min-height: 610px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(4, 24, 17, 0.82), rgba(4, 26, 18, 0.47)); }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-item:nth-child(2) { border-right: 0; }
  .quick-item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .golf-place-layout { grid-template-columns: 1fr; }
  .golf-place-photo { min-height: 390px; }
  .tour-place-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-place-card:last-child { grid-column: 1 / span 2; }
  .activity-place-grid { grid-template-columns: repeat(2, 1fr); }
  .stay-place-grid { grid-template-columns: 1fr; }
  .stay-place-card { min-height: auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; }
  .stay-icon { margin-bottom: 0; }
  .stay-place-card p { margin-bottom: 0; }
  .service-layout { grid-template-columns: 1fr; }
  .service-photo img { height: 470px; }
  .photo-badge { right: 24px; }
  .travel-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .travel-tool-card:last-child { grid-column: 1 / -1; }
  .exchange-panel { grid-template-columns: 1fr; }
  .exchange-footer { grid-column: 1; }
  .refund-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { width: min(100% - 36px, 1180px); }
  .section { padding: 76px 0; }
  .hero { min-height: 610px; align-items: end; }
  .hero-image { object-position: 61% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(3, 22, 15, 0.88), rgba(4, 24, 17, 0.55)), linear-gradient(0deg, rgba(3, 20, 14, 0.55), transparent); }
  .hero-content { padding: 68px 0 78px; }
  .eyebrow { font-size: 12px; letter-spacing: 0.12em; }
  .hero h1 { font-size: 40px; }
  .hero-copy { margin: 19px 0 27px; font-size: 17px; }
  .desktop-only { display: none; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; min-height: 56px; padding: 0 20px; }
  .quick-menu { margin-top: -26px; }
  .quick-grid { border-radius: 13px; }
  .quick-item { min-height: 99px; padding: 16px 14px; gap: 10px; }
  .quick-icon { width: 40px; height: 40px; font-size: 19px; }
  .quick-item b { font-size: 16px; }
  .quick-item small { font-size: 12px; }
  .quick-item i { display: none; }
  .packages-section { padding-top: 99px; }
  .section-heading { margin-bottom: 27px; display: block; }
  .section-heading > p { margin-top: 13px; }
  .section-heading h2, .service-copy h2, .consult-inner h2 { font-size: 31px; }
  .package-grid { grid-template-columns: 1fr; gap: 20px; }
  .card-image-wrap { height: 235px; }
  .card-body > p:not(.card-category) { min-height: 0; }
  .places-heading { margin-bottom: 35px; }
  .place-group { padding: 24px 20px; border-radius: 18px; }
  .place-group + .place-group { margin-top: 22px; }
  .place-group-title { margin-bottom: 22px; }
  .place-group-icon { width: 48px; height: 48px; font-size: 22px; }
  .place-group-title h3 { font-size: 24px; }
  .golf-place-photo { min-height: 260px; }
  .golf-place-photo figcaption { right: 18px; bottom: 17px; left: 18px; }
  .place-row { gap: 12px; }
  .place-list { grid-template-columns: 1fr; }
  .place-number { width: 35px; height: 35px; }
  .place-info h4, .tour-place-body h4, .stay-place-card h4 { font-size: 18px; }
  .place-meta { align-items: flex-start; flex-direction: column; gap: 7px; }
  .tour-place-grid { grid-template-columns: 1fr; }
  .tour-place-card:last-child { grid-column: auto; }
  .tour-place-card > img { height: 220px; }
  .tour-place-body > p:not(.place-label) { min-height: 0; }
  .activity-place-grid { grid-template-columns: 1fr; }
  .stay-place-card { padding: 19px 17px; grid-template-columns: auto 1fr; align-items: flex-start; }
  .stay-card-actions { grid-column: 2; justify-content: flex-start; }
  .vehicle-options { align-items: flex-start; flex-direction: column; }
  .service-layout { gap: 45px; }
  .service-photo img { height: 390px; }
  .photo-badge { right: 14px; bottom: -25px; width: 105px; height: 105px; border-width: 5px; }
  .photo-badge strong { font-size: 14px; }
  .photo-badge span { font-size: 12px; }
  .service-lead { font-size: 17px; }
  .check-list li { align-items: flex-start; }
  .check-list b { font-size: 17px; }
  .check-list small { font-size: 14px; line-height: 1.6; }
  .gallery-heading a { display: inline-block; margin-top: 13px; }
  .travel-tools-grid { grid-template-columns: 1fr; }
  .travel-tool-card:last-child { grid-column: auto; }
  .exchange-panel { padding: 24px 20px; gap: 24px; }
  .exchange-rates { grid-template-columns: 1fr; }
  .exchange-footer { grid-template-columns: 1fr; }
  .exchange-footer button { width: 100%; }
  .refund-list article { padding: 20px 17px; gap: 13px; }
  .refund-note { align-items: flex-start; flex-direction: column; gap: 4px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 300px 220px 220px; }
  .gallery-grid .gallery-large { grid-row: auto; }
  .consult-inner { align-items: stretch; flex-direction: column; }
  .consult-inner h2 { font-size: 30px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-info { text-align: left; }
  .footer-links { align-items: flex-start; justify-content: flex-start; flex-direction: column; gap: 6px; }
  .floating-consult { right: 17px; bottom: 16px; }
  .kakao-modal { padding: 13px; }
  .kakao-dialog { max-height: calc(100vh - 26px); padding: 25px 19px 21px; border-radius: 18px; }
  .kakao-dialog h2 { font-size: 23px; }
  .kakao-qr { width: min(245px, 78%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
