@font-face {
  font-family: "Pretendard";
  src: url("fonts/PretendardVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("fonts/Paperlogy-6SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("fonts/Paperlogy-7Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("fonts/Paperlogy-8ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --font-body: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  --font-display: "Paperlogy", "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  --paper: #f2ebe5;
  --paper-warm: #fbf3ec;
  --surface: #fffaf4;
  --surface-strong: #ffffff;
  --ink: #211b17;
  --charcoal: #36322e;
  --muted: #6c655e;
  --line: rgba(33, 27, 23, 0.16);
  --line-light: rgba(255, 255, 255, 0.36);
  --orange: #f37021;
  --orange-deep: #b94812;
  --orange-soft: #fff0e5;
  --rose-soft: #f7dede;
  --sage: #536756;
  --cream: #fff0e5;
  --forest: #536756;
  --blue-gray: #e7ecec;
  --shadow: 0 22px 55px rgba(33, 27, 23, 0.14);
  --radius: 8px;
  --radius-lg: 18px;
  --header-height: 166px;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--header-height);
  padding: 14px max(18px, calc((100% - 1240px) / 2)) 12px;
  border-bottom: 1px solid var(--line-light);
  background: linear-gradient(180deg, rgba(33, 27, 23, 0.34), rgba(33, 27, 23, 0.08));
  color: #fff;
  backdrop-filter: blur(10px);
}

.menu-link {
  display: none;
  gap: 6px;
  width: 42px;
  height: 42px;
  align-content: center;
  justify-content: start;
  color: #fff;
  text-decoration: none;
}

.menu-link span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.brand-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.brand-logo-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: min(340px, 76vw);
}

.brand-symbol,
.brand-wordmark {
  display: block;
  filter: brightness(0) invert(1);
}

.brand-symbol {
  width: 60px;
  height: 52px;
  object-fit: contain;
}

.brand-wordmark {
  width: min(250px, 34vw);
  height: 48px;
  object-fit: contain;
}

.brand-korean-name {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px 10px;
  width: 100%;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.nav-home { order: 0; }
.nav-about { order: 1; }
.nav-one-day { order: 2; }
.nav-corporate { order: 3; }
.nav-gifts { order: 4; }
.nav-portfolio { order: 5; }
.nav-contact { order: 6; }

.about-hero .subpage-hero-content {
  display: grid;
  align-content: end;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.about-hero .subpage-hero-content > p:last-child {
  max-width: 650px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 800;
}

.quick-actions {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 25;
  display: grid;
  gap: 10px;
}

.quick-actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: rgba(243, 112, 33, 0.92);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(33, 27, 23, 0.22);
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.quick-actions a:hover,
.quick-actions a:focus-visible {
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(33, 27, 23, 0.28);
}

.quick-icon {
  display: block;
  width: 34px;
  height: 34px;
}

.quick-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.quick-actions .kakao {
  border-color: rgba(33, 27, 23, 0.14);
  background: #fee500;
  color: #251b16;
}

.quick-actions .instagram {
  background: linear-gradient(145deg, #f37021 0%, #d94d57 48%, #7b3db8 100%);
}

.quick-actions .blog {
  background: #03c75a;
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: min(100svh, 860px);
  overflow: hidden;
  isolation: isolate;
  background: #f4ede7;
}

.subpage-hero {
  position: relative;
  min-height: 58svh;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  left: max(18px, calc((100% - 1240px) / 2));
  right: max(18px, calc((100% - 1240px) / 2));
  bottom: 72px;
  height: 1px;
  background: rgba(61, 43, 33, 0.18);
}

.hero > picture {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  min-height: 0;
  padding: 96px 6vw 72px 0;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 52% center;
}

.hero > picture .hero-image {
  position: relative;
  z-index: 0;
  inset: auto;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 690px;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  background: #eadbd4;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(33, 27, 23, 0.74) 0%, rgba(33, 27, 23, 0.46) 34%, rgba(33, 27, 23, 0.12) 72%),
    linear-gradient(0deg, rgba(33, 27, 23, 0.62) 0%, rgba(33, 27, 23, 0.06) 54%);
}

.hero-content {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  align-content: end;
  width: min(590px, calc(100% - 72px));
  min-height: min(100svh, 860px);
  margin: 0 0 0 auto;
  padding: 124px 0 112px;
}

.subpage-hero-content {
  min-height: 58svh;
  padding: 120px 0 72px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--orange-deep);
  font-size: 15px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  color: #fff;
  font-size: 74px;
  font-weight: 800;
}

.hero h1 {
  color: var(--ink);
}

h2 {
  color: var(--ink);
  font-size: 44px;
  font-weight: 800;
}

h3 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.hero-copy {
  max-width: 650px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.42;
}

.hero .hero-copy {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-helper {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--orange);
  color: #fff;
}

.button.primary:hover {
  background: var(--orange-deep);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero .button.secondary {
  border-color: rgba(61, 43, 33, 0.42);
  background: transparent;
  color: var(--ink);
}

.hero .button.secondary:hover {
  background: rgba(61, 43, 33, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(760px, 100%);
  margin: 46px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-stats div {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats dt {
  display: flex;
  align-items: baseline;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.stat-number {
  display: inline-block;
  min-width: 3.8ch;
  font-family: var(--font-display);
  font-weight: 800;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 104px 0;
}

.youtube-feature-section {
  background: var(--paper-warm);
}

.youtube-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.youtube-feature-frame {
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.youtube-feature-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-feature-copy {
  display: grid;
  min-width: 0;
  gap: 18px;
  max-width: 560px;
  overflow-wrap: normal;
  word-break: keep-all;
}

.youtube-feature-copy p {
  font-size: 16px;
}

.youtube-feature-copy .youtube-feature-lede {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--charcoal);
}

.youtube-feature-copy .youtube-feature-proof {
  color: var(--muted);
}

.instagram-reels-section {
  overflow: hidden;
  background: var(--paper-warm);
}

.instagram-reels-header {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.instagram-reels-header .section-heading {
  margin: 0;
}

.instagram-profile-link {
  flex: 0 0 auto;
  padding: 12px 18px;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  color: var(--orange-deep);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.instagram-reels-grid {
  --instagram-reels-per-view: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hero .hero-shade {
  display: none;
}

.instagram-reel-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fffaf4;
  color: var(--ink);
  text-decoration: none;
}

.instagram-reel-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--forest);
}

.instagram-reel-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}

.instagram-reel-status {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(33, 27, 23, 0.74);
  color: #fffaf4;
  font-size: 15px;
  font-weight: 800;
}

.instagram-reel-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  max-width: 352px;
  gap: 5px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(33, 27, 23, 0.82);
  color: #fffaf4;
}

.instagram-reel-copy strong {
  display: -webkit-box;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.instagram-reel-copy > span:last-child {
  font-size: 13px;
}

.instagram-reel-tag {
  color: #f6b17b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.instagram-reel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px 20px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.instagram-reel-footer strong {
  color: var(--orange-deep);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}

.instagram-reel-card:hover .instagram-reel-video,
.instagram-reel-card:focus-visible .instagram-reel-video {
  transform: scale(1.015);
}

.instagram-reel-card:focus-visible,
.instagram-profile-link:focus-visible,
.instagram-reels-arrow:focus-visible,
.instagram-reels-dot:focus-visible,
.instagram-reels-note a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.instagram-reels-controls {
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.instagram-reels-arrow {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffaf4;
  color: var(--orange-deep);
  cursor: pointer;
  font-size: 21px;
  font-weight: 900;
}

.instagram-reels-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.instagram-reels-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.instagram-reels-dot {
  display: grid;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.instagram-reels-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c9bbae;
}

.instagram-reels-dot[aria-current="true"]::before {
  width: 20px;
  background: var(--orange);
}

.instagram-reels-count {
  min-width: 70px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.instagram-reels-note {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf4;
}

.instagram-reels-note p {
  margin: 0;
  font-size: 16px;
}

.instagram-reels-note a {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.program-intro-section {
  overflow: hidden;
  scroll-margin-top: var(--header-height);
  padding: 96px 0 86px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(235, 231, 228, 0.92)),
    var(--paper);
}

.program-intro-layout {
  display: grid;
  gap: 42px;
  align-items: start;
}

.program-intro-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.program-intro-copy h2 {
  margin-top: 8px;
  font-size: clamp(36px, 4.3vw, 62px);
  line-height: 1.08;
}

.program-intro-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.75;
}

.program-slider-toolbar {
  position: relative;
  display: grid;
  min-height: 44px;
  place-items: center;
  margin-top: 24px;
}

.program-slider-actions {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
}

.program-intro-copy .program-slider-instruction {
  width: 100%;
  margin-top: 0;
  padding: 0 96px;
  color: rgba(33, 27, 23, 0.72);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.program-slider-more {
  flex: 0 0 auto;
  color: var(--orange-deep);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
  text-decoration: none;
  text-underline-offset: 4px;
}

.program-slider-more:hover {
  text-decoration: underline;
}

.program-slider-more:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(221, 93, 26, 0.32);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.program-slider {
  position: relative;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 6px 56px 38px;
  --program-carousel-gap: 16px;
  --program-cards-per-view: 4;
  --program-carousel-offset: 0px;
}

.program-carousel-viewport {
  overflow: hidden;
  border-radius: 8px;
}

.program-slide-track {
  display: flex;
  width: 100%;
  gap: var(--program-carousel-gap);
  transform: translate3d(calc(-1 * var(--program-carousel-offset)), 0, 0);
  transition: transform 200ms ease;
  will-change: transform;
}

.program-slider[data-dragging="true"] .program-slide-track {
  transition: none;
}

.program-carousel-control {
  position: absolute;
  top: calc(50% - 16px);
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(33, 27, 23, 0.3);
  border-radius: 50%;
  place-items: center;
  background: rgba(255, 253, 250, 0.96);
  color: var(--ink);
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 8px 24px rgba(33, 27, 23, 0.12);
}

.program-carousel-prev {
  left: 2px;
}

.program-carousel-next {
  right: 2px;
}

.program-carousel-pagination {
  position: absolute;
  right: 56px;
  bottom: 8px;
  left: 56px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.program-carousel-mobile-count {
  display: none;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.program-carousel-dot {
  width: 8px;
  min-width: 8px;
  height: 8px;
  min-height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(33, 27, 23, 0.28);
  cursor: pointer;
  transition: width 200ms ease, background-color 200ms ease;
}

.program-carousel-dot[aria-current="true"] {
  width: 24px;
  background: var(--orange);
}

.program-carousel-control:focus-visible,
.program-carousel-dot:focus-visible {
  outline: 3px solid rgba(221, 93, 26, 0.4);
  outline-offset: 3px;
}

.program-slide {
  position: relative;
  display: block;
  flex: 0 0 calc(
    (100% - (var(--program-cards-per-view) - 1) * var(--program-carousel-gap))
    / var(--program-cards-per-view)
  );
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(33, 27, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(33, 27, 23, 0.12);
}

.program-slide:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 4px;
}

.program-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-slide.program-slide-portrait img {
  object-position: center 56%;
}

.program-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 62px 22px 20px;
  background: linear-gradient(180deg, transparent 28%, rgba(24, 18, 14, 0.88) 100%);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.program-slide-category,
.program-slide-institution,
.program-slide-program {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.program-slide-category,
.program-slide-program {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.program-slide-category {
  color: #ffb07d;
}

.program-slide-institution {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 25px);
  font-weight: 800;
  line-height: 1.22;
}

.program-slide-program {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.88);
}

.audience-section {
  padding: 52px 0 34px;
  background:
    linear-gradient(180deg, #fffaf4 0%, #fff7ee 100%);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1160px;
  gap: clamp(14px, 2vw, 28px);
}

.service-search-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-detail-grid,
.service-case-grid,
.service-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 12px;
  margin-top: 32px;
}

.service-gallery-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-gallery-one {
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 720px);
  margin-inline: auto;
}

.service-case-grid {
  margin-top: 16px;
}

.service-review-grid {
  margin-top: 32px;
}

.service-gallery figure,
.service-case-card,
.service-review-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-gallery img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.service-gallery figcaption,
.service-case-card,
.service-review-card {
  padding: 22px;
  font-size: 16px;
  line-height: 1.7;
}

.service-case-card h3,
.service-review-card strong {
  display: block;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
}

.service-review-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--orange-dark);
  font-weight: 800;
}

.search-page .service-review-card {
  font-size: 16px;
}

.service-content-section .section-heading {
  max-width: 760px;
}

.search-page .audience-card p,
.search-page .faq-list p,
.search-page .local-info-grid p,
.search-page .trust-copy p:not(.eyebrow),
.search-page .trust-points p,
.search-page .contact-copy p:not(.eyebrow) {
  font-size: max(16px, 1em);
}

.audience-card {
  display: flex;
  min-height: 214px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 18px 26px;
  border: 1px solid rgba(221, 93, 26, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 240, 218, 0.94), rgba(255, 230, 196, 0.88));
  color: #101b31;
  text-align: center;
  box-shadow: 0 14px 30px rgba(92, 59, 35, 0.06);
}

.audience-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #e98235;
}

.audience-icon svg {
  width: 58px;
  height: 58px;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-card h3 {
  margin: 0;
  color: #101b31;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 900;
  line-height: 1.2;
  word-break: keep-all;
}

.audience-card p {
  margin: 10px 0 0;
  color: #101b31;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 800;
  line-height: 1.35;
  word-break: keep-all;
}

.partner-section {
  overflow: hidden;
  padding: 54px 0 72px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(235, 231, 228, 1)),
    var(--paper);
}

.proof-partner-section {
  min-width: 0;
  padding: clamp(64px, 8vw, 104px) 0;
}

.final-conversion-section {
  min-width: 0;
}

.proof-partner-intro {
  margin-bottom: 28px;
  text-align: center;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 900px;
  margin: 34px auto 26px;
}

.proof-stats div {
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.proof-stats div:last-child {
  border-right: 0;
}

.proof-stats dt {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
}

.proof-stats dd {
  margin: 6px 0 0;
  font-size: 16px;
}

.partner-heading {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto 34px;
  text-align: center;
}

.partner-heading h2 {
  font-size: 38px;
}

.partner-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
}

.logo-marquee {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  margin-top: 12px;
  box-sizing: border-box;
  padding-right: clamp(24px, 9vw, 128px);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.logo-track {
  display: flex;
  flex: 0 0 max-content;
  gap: 12px;
  min-width: max-content;
  will-change: transform;
}

.logo-track.to-left {
  animation: marquee-left 58s linear infinite;
}

.logo-track.to-right {
  animation: marquee-right 62s linear infinite;
}

.logo-marquee:hover .logo-track,
.logo-marquee:focus-within .logo-track,
.partner-section[data-interaction-paused="true"] .logo-track {
  animation-play-state: paused;
}

.logo-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 74px;
  padding: 14px 24px;
  border: 1px solid rgba(33, 27, 23, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  color: rgba(33, 27, 23, 0.7);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 28px rgba(33, 27, 23, 0.06);
}

.logo-tile.logo-tile-image {
  min-width: 216px;
  min-height: 84px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.82);
}

.logo-tile.logo-tile-image img {
  display: block;
  width: 184px;
  height: 64px;
  max-width: 100%;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.02);
  opacity: 1;
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.logo-tile.logo-tile-image img[src$="naver.webp"],
.logo-tile.logo-tile-image img[src$="blizzard.webp"],
.logo-tile.logo-tile-image img[src$="aids-prevention.webp"] {
  transform: scale(1.25);
}

.logo-tile.logo-tile-image:hover img {
  transform: scale(1.04);
  filter: saturate(1.14) contrast(1.04);
  opacity: 1;
}

.logo-tile.logo-tile-image:hover img[src$="naver.webp"],
.logo-tile.logo-tile-image:hover img[src$="blizzard.webp"],
.logo-tile.logo-tile-image:hover img[src$="aids-prevention.webp"] {
  transform: scale(1.3);
}

.logo-tile.logo-tile-image img[src$="naver.webp"] {
  width: calc(100% + 20px);
  max-width: none;
  height: 72px;
  transform: none;
}

.logo-tile.logo-tile-image:hover img[src$="naver.webp"] {
  transform: scale(1.02);
}

.logo-tile.logo-tile-image:has(img[src$="naver.webp"]) {
  background: #03c75a;
  border-color: #03c75a;
}

.logo-tile.logo-tile-image:has(img[src$="naver.webp"]) img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  filter: none;
}

.logo-tile.logo-tile-image:has(img[src$="aids-prevention.webp"]) {
  background: #f5f2ec;
  border-color: #f5f2ec;
}

.logo-tile.logo-tile-image:has(img[src$="aids-prevention.webp"]) img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  filter: none;
  transform: none;
}

.logo-tile.logo-tile-image:hover img[src$="aids-prevention.webp"] {
  transform: scale(1.02);
}

.logo-tile.logo-tile-image:has(img[src$="blizzard.webp"]) {
  background: #2b2d42;
  border-color: #2b2d42;
}

.logo-tile.logo-tile-image:has(img[src$="blizzard.webp"]) img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  filter: none;
  transform: none;
}

.logo-tile.logo-tile-image:hover img[src$="blizzard.webp"] {
  transform: scale(1.02);
}

.logo-tile.logo-tile-wordmark {
  position: relative;
  min-width: 214px;
  min-height: 84px;
  padding: 18px 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 245, 237, 0.76)),
    rgba(255, 255, 255, 0.82);
}

.logo-tile.logo-tile-wordmark::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 13px;
  left: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(221, 93, 26, 0.55), transparent);
  opacity: 0.62;
}

.logo-wordmark {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(33, 27, 23, 0.78);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.18;
  word-break: keep-all;
}

.logo-tile.logo-tile-wordmark.is-long {
  min-width: 252px;
}

.logo-tile.logo-tile-wordmark.is-long .logo-wordmark {
  font-size: 13px;
}

.logo-tile.logo-tile-wordmark:hover .logo-wordmark {
  color: var(--orange-deep);
}

.logo-tile:nth-child(3n) {
  color: var(--orange-deep);
}

.logo-tile:nth-child(4n) {
  background: rgba(255, 240, 229, 0.82);
}

.logo-tile.logo-tile-image:nth-child(5n) {
  border-color: rgba(221, 93, 26, 0.28);
}

.partner-inquiry {
  display: grid;
  justify-items: center;
  width: min(720px, calc(100% - 36px));
  margin: 58px auto 0;
  text-align: center;
}

.proof-partner-section .partner-inquiry {
  margin-top: 30px;
}

.partner-inquiry-title {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
}

.partner-inquiry-copy {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.75;
  word-break: keep-all;
}

.partner-inquiry-link {
  min-width: 164px;
  min-height: 50px;
  margin-top: 28px;
  font-size: 16px;
}

.partner-inquiry-link:focus-visible {
  outline: 3px solid rgba(221, 93, 26, 0.32);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .partner-inquiry {
    width: min(100% - 32px, 560px);
    margin-top: 42px;
  }

  .partner-inquiry-copy {
    font-size: 16px;
  }

  .partner-inquiry-copy br {
    display: none;
  }

  .partner-inquiry-link {
    width: min(100%, 240px);
  }
}

@media (max-width: 680px) {
  .proof-stats {
    grid-template-columns: 1fr;
  }

  .proof-stats div {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-stats div:last-child {
    border-bottom: 0;
  }
}

.bottom-estimate-section {
  padding: 18px 0 28px;
  background: #e8e3df;
  border-top: 1px solid rgba(33, 27, 23, 0.08);
}

.bottom-estimate-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.bottom-estimate-inner p {
  margin: 0;
  color: rgba(33, 27, 23, 0.58);
  font-size: 14px;
  font-weight: 900;
}

.bottom-estimate-actions {
  display: flex;
  gap: 8px;
}

.bottom-estimate-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  border: 1px solid rgba(33, 27, 23, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(33, 27, 23, 0.76);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(33, 27, 23, 0.06);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.bottom-estimate-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ff7f14;
  color: #fff;
}

.bottom-estimate-link.gift span {
  background: var(--orange-deep);
}

.bottom-estimate-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bottom-estimate-link strong {
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.bottom-estimate-link:hover,
.bottom-estimate-link:focus-visible {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 12px 24px rgba(33, 27, 23, 0.1);
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.section-inner {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 0;
  color: var(--orange-deep);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-card,
.trust-points article,
.story-card,
.faq-list details,
.contact-form,
.contact-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 318px;
  padding: 24px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  border-color: rgba(243, 112, 33, 0.7);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-num {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 58px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
}

.service-card a {
  align-self: end;
  margin-top: 28px;
  color: var(--orange-deep);
  font-weight: 900;
  text-decoration: none;
}

.service-detail {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  overflow: hidden;
}

.segment-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: #ded8d2;
}

.segment {
  min-height: 58px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.segment:last-child {
  border-right: 0;
}

.segment.is-active {
  background: var(--surface-strong);
  color: var(--orange-deep);
}

.detail-panel {
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: start;
  padding: 38px;
}

.detail-panel.is-active {
  display: grid;
}

.detail-panel p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 16px;
  height: 2px;
  background: var(--orange);
}

.trust-section {
  background:
    linear-gradient(180deg, rgba(247, 241, 234, 0.95), rgba(235, 231, 228, 1)),
    var(--paper-warm);
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.trust-copy p:not(.eyebrow) {
  margin: 18px 0 30px;
  color: var(--muted);
  font-size: 18px;
}

.trust-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.trust-points article {
  padding: 26px;
  background: rgba(255, 250, 244, 0.82);
}

.trust-points strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.trust-points p {
  margin-top: 8px;
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  list-style: none;
  overflow: hidden;
}

.process-list li {
  min-height: 244px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 42px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange-deep);
  font-weight: 900;
}

.process-list strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.process-list p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.stories-section {
  background: var(--surface-strong);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.story-card {
  overflow: hidden;
}

.story-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.story-card:nth-child(1) img {
  object-position: 64% 52%;
}

.story-card:nth-child(2) img {
  object-position: 55% 34%;
}

.story-card:nth-child(3) img {
  object-position: 35% 62%;
}

.story-card div {
  padding: 24px;
}

.story-card p:not(.eyebrow) {
  margin-top: 10px;
  color: var(--muted);
}

.review-section {
  background:
    linear-gradient(180deg, rgba(231, 236, 236, 0.92), rgba(247, 241, 234, 0.96)),
    var(--blue-gray);
}

.review-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.review-copy p:not(.eyebrow) {
  margin: 16px 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.review-panel {
  display: grid;
  gap: 10px;
}

.review-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(33, 27, 23, 0.06);
}

.review-card.featured {
  border-color: rgba(243, 112, 33, 0.28);
  background: linear-gradient(135deg, rgba(255, 250, 244, 0.95), rgba(255, 240, 229, 0.84));
}

.review-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.review-card .review-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(30, 200, 0, 0.12);
  color: #168600;
  font-size: 16px;
  line-height: 1;
}

.review-card strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.review-card p {
  margin-top: 8px;
  color: var(--muted);
}

.review-stars {
  margin-top: 18px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.review-source {
  font-size: 16px;
  font-weight: 800;
}

.local-info-section {
  background: var(--paper-warm);
}

.local-info-heading {
  max-width: 780px;
}

.local-info-heading .eyebrow {
  font-size: 16px;
}

.local-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.local-info-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.local-info-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--orange-deep);
  font-size: 16px;
  font-weight: 900;
}

.local-info-grid h3 {
  margin-bottom: 12px;
}

.local-info-grid p {
  color: var(--muted);
  font-size: 16px;
}

.visit-supporting-info {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
}

.local-info-actions,
.final-conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 22px 24px;
  background: var(--surface);
}

.faq-list summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(33, 27, 23, 0.9), rgba(33, 27, 23, 0.7)),
    url("assets/hero-studio-1440.webp") center / cover;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.contact-copy .eyebrow {
  color: #ffb07d;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.contact-note {
  margin-top: 34px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.contact-note p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.contact-cta-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.12);
  color: #fff;
  backdrop-filter: blur(14px);
}

.contact-cta-panel .button {
  min-width: min(280px, 100%);
  min-height: 58px;
  font-size: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 26px;
  background: rgba(255, 250, 244, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.external-form-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  border: 1px solid rgba(33, 27, 23, 0.1);
  border-radius: 10px;
  background: rgba(255, 250, 244, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.external-form-panel h3 {
  max-width: 580px;
  font-size: 28px;
}

.external-form-panel > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.external-form-checklist {
  display: grid;
  width: 100%;
  gap: 10px;
  margin: 4px 0;
  padding: 0;
  list-style: none;
}

.external-form-checklist li {
  position: relative;
  padding-left: 22px;
  color: rgba(33, 27, 23, 0.8);
  font-size: 16px;
  font-weight: 800;
}

.external-form-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange-deep);
}

.external-form-cta {
  width: auto;
  min-width: 240px;
}

.external-form-panel .external-form-note {
  font-size: 15px;
  font-weight: 700;
}

.contact-page-section {
  padding-top: 88px;
}

.quote-page-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(235, 231, 228, 1)),
    var(--paper);
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: start;
}

.quote-guide {
  padding-top: 18px;
}

.quote-guide h2 {
  max-width: 520px;
  margin-top: 8px;
}

.quote-guide p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.quote-guide-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.quote-guide-list span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(33, 27, 23, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(33, 27, 23, 0.72);
  font-size: 14px;
  font-weight: 900;
}

.quote-form {
  border: 1px solid rgba(33, 27, 23, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.policy-page {
  background: var(--paper);
}

.policy-hero {
  padding: 176px 0 72px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(243, 112, 33, 0.12), rgba(255, 250, 244, 0.96));
}

.policy-hero h1 {
  margin-top: 8px;
  font-size: clamp(40px, 5vw, 64px);
}

.policy-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.policy-content {
  padding-top: 72px;
}

.policy-document {
  max-width: 880px;
}

.policy-updated {
  margin-bottom: 36px;
  color: var(--orange-deep);
  font-size: 15px;
  font-weight: 900;
}

.policy-document section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.policy-document h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.policy-document p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.policy-document ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.policy-document a {
  color: var(--orange-deep);
  font-weight: 900;
  text-underline-offset: 3px;
}

.portfolio-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(235, 231, 228, 1)),
    var(--paper);
}

.case-archive-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 42px;
  align-items: end;
  margin-bottom: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.case-archive-head p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.case-search {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.case-search input {
  width: 100%;
  min-height: 54px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 16px 0 48px;
  outline: none;
}

.case-search input::placeholder {
  color: rgba(108, 101, 94, 0.72);
}

.case-search-icon {
  position: absolute;
  left: 18px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--muted);
  border-radius: 50%;
}

.case-search-icon::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  background: var(--muted);
  transform: rotate(45deg);
}

.case-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.case-chip {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.case-chip:hover,
.case-chip.is-active {
  border-color: rgba(243, 112, 33, 0.64);
  background: var(--orange);
  color: #fff;
}

.case-list {
  display: grid;
  gap: 14px;
}

.case-post {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.92);
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.case-post[hidden] {
  display: none;
}

.case-post:hover {
  border-color: rgba(243, 112, 33, 0.62);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.case-post a {
  display: grid;
  grid-template-columns: 242px minmax(0, 1fr);
  min-height: 236px;
  color: inherit;
  text-decoration: none;
}

.case-thumb {
  min-height: 236px;
  background: var(--charcoal);
  overflow: hidden;
}

.case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transition: transform 220ms ease;
}

.case-post:hover .case-thumb img {
  transform: scale(1.035);
}

.case-body {
  display: grid;
  align-content: start;
  padding: 26px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.case-meta span {
  color: var(--orange-deep);
}

.case-body h3 {
  font-size: 24px;
  line-height: 1.3;
}

.case-body p {
  max-width: 760px;
  margin-top: 10px;
  color: var(--muted);
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0 0;
}

.case-facts div {
  padding: 12px;
  border: 1px solid rgba(33, 27, 23, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
}

.case-facts dt {
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 900;
}

.case-facts dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.case-empty {
  margin: 18px 0 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  font-weight: 900;
}

.portfolio-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.2);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  color: var(--sage);
  font-weight: 900;
}

.site-footer {
  margin-top: 0;
  padding: 58px 0 24px;
  background: #e8e3df;
  color: var(--charcoal);
}

.site-footer .section-inner {
  width: auto;
  max-width: none;
  margin: 0;
  padding-left: clamp(32px, 8.2vw, 76px);
  padding-right: 24px;
}

.footer-grid {
  display: grid;
  justify-items: start;
  gap: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 28px;
}

.footer-nav a,
.footer-policy a {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-policy a:hover {
  color: var(--orange-deep);
}

.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 24px;
}

.footer-policy a:last-child {
  font-weight: 900;
}

.footer-info {
  display: grid;
  gap: 4px;
  color: var(--charcoal);
  font-style: normal;
  margin: 0 0 54px;
}

.footer-info span,
.footer-copy {
  font-size: 16px;
  line-height: 1.62;
}

.footer-copy {
  margin: 0;
  color: var(--charcoal);
}

@media (max-width: 980px) {
  .site-header {
    gap: 9px;
    padding-inline: 14px;
  }

  .brand-link {
    justify-content: center;
  }

  .nav-links {
    justify-content: center;
    width: 100%;
    gap: 2px 8px;
  }

  .quick-actions {
    right: 14px;
    bottom: 76px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 34px;
  }

  .service-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid,
  .review-grid,
  .faq-grid,
  .program-intro-layout,
  .audience-grid,
  .contact-grid,
  .case-archive-head,
  .detail-panel.is-active {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-post a {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  .service-detail-grid,
  .service-case-grid,
  .service-review-grid,
  .service-gallery {
    grid-template-columns: 1fr;
  }

  .service-gallery img {
    height: 300px;
  }
}

@media (max-width: 680px) {
  .nav-home { display: none; }
  .nav-one-day { order: 1; }
  .nav-corporate { order: 2; }
  .nav-gifts { order: 3; }
  .nav-portfolio { order: 4; }
  .nav-about { order: 5; }
  .nav-contact { order: 6; }

  :root {
    --header-height: 170px;
  }

  body {
    font-size: 16px;
  }

  .section-heading > p,
  .program-intro-copy > p,
  .review-source,
  .local-info-grid p {
    font-size: 15px;
  }

  .button,
  .program-slider-instruction,
  .partner-inquiry-copy {
    font-size: 16px;
  }

  .site-header {
    padding: 10px 12px 9px;
  }

  .brand-logo-lockup {
    gap: 8px;
    max-width: 76vw;
  }

  .brand-symbol {
    width: 46px;
    height: 42px;
  }

  .brand-wordmark {
    width: min(212px, 54vw);
    height: 41px;
  }

  .brand-korean-name {
    font-size: 14px;
  }

  .nav-links a {
    padding: 5px 7px;
    font-size: 16px;
    line-height: 1.25;
    white-space: nowrap;
  }

  .quick-actions {
    right: 12px;
    bottom: 22px;
    gap: 8px;
  }

  .quick-actions a {
    width: 52px;
    height: 52px;
  }

  .quick-icon {
    width: 30px;
    height: 30px;
  }

  .program-intro-section {
    padding: 64px 0 58px;
  }

  .program-intro-copy h2 {
    font-size: 34px;
  }

  .program-slider-toolbar {
    gap: 12px;
  }

  .program-slider-actions {
    position: static;
    width: 100%;
    justify-content: flex-end;
    transform: none;
  }

  .program-intro-copy .program-slider-instruction {
    padding: 0;
  }

  .program-slider-more {
    padding-top: 1px;
  }

  .program-slider {
    width: calc(100% + 32px);
    margin-inline: -16px;
    padding-inline: 44px;
    --program-cards-per-view: 1;
    --program-carousel-gap: 12px;
  }

  .program-carousel-prev {
    left: 4px;
  }

  .program-carousel-next {
    right: 4px;
  }

  .program-carousel-pagination {
    display: none;
  }

  .program-carousel-mobile-count {
    position: absolute;
    right: 44px;
    bottom: 6px;
    left: 44px;
    display: block;
  }

  .hero,
  .hero-content {
    min-height: 88svh;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero > picture {
    grid-column: 1;
    grid-row: 2;
    padding: 0 16px 32px;
  }

  .hero > picture .hero-image {
    height: min(72svh, 620px);
    max-height: none;
    border-radius: 22px;
  }

  .subpage-hero,
  .subpage-hero-content {
    min-height: 58svh;
  }

  .hero-content,
  .section-inner {
    width: min(100% - 32px, 1240px);
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
    width: min(100% - 32px, 590px);
    min-height: auto;
    margin: 0 auto;
    padding: 130px 0 84px;
  }

  .subpage-hero-content {
    padding: 128px 0 56px;
  }

  .hero::after {
    left: 16px;
    right: 16px;
    bottom: 58px;
  }

  .subpage-hero .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(33, 27, 23, 0.82), rgba(33, 27, 23, 0.42)),
      linear-gradient(0deg, rgba(33, 27, 23, 0.68), rgba(33, 27, 23, 0.12));
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-copy {
    max-width: calc(100% - 48px);
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    font-size: 16px;
  }

  .partner-inquiry .partner-inquiry-link {
    width: min(100%, 240px);
  }

  .hero-stats,
  .service-grid,
  .story-grid,
  .process-list,
  .contact-form,
  .external-form-panel,
  .case-facts,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .youtube-feature-grid {
    grid-template-columns: 1fr;
  }

  .youtube-feature-copy {
    max-width: 100%;
  }

  .youtube-feature-copy .youtube-feature-lede {
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.45;
  }

  .youtube-feature-copy h2 {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.2;
  }

  .instagram-reels-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .instagram-reels-grid {
    --instagram-reels-per-view: 1;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 4px 4px 18px;
    margin-inline: -4px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .instagram-reel-copy strong {
    font-size: 18px;
  }

  .instagram-reel-card {
    scroll-snap-align: start;
  }

  .instagram-reels-controls {
    display: flex;
    gap: 9px;
  }

  .instagram-reels-arrow {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .instagram-reels-note {
    align-items: stretch;
    flex-direction: column;
  }

  .instagram-reels-note a {
    text-align: center;
  }

  .contact-cta-panel {
    min-height: 160px;
    padding: 24px;
  }

  .external-form-panel {
    gap: 14px;
    padding: 24px 20px;
  }

  .external-form-panel h3 {
    font-size: 24px;
  }

  .external-form-panel > p:not(.eyebrow),
  .external-form-checklist li,
  .external-form-panel .external-form-note {
    font-size: 15px;
  }

  .external-form-cta {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }

  .audience-section {
    padding: 36px 0 24px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .audience-card {
    min-height: 174px;
    padding: 24px 18px;
  }

  .audience-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
  }

  .audience-icon svg {
    width: 50px;
    height: 50px;
  }

  .bottom-estimate-section {
    padding: 16px 0 22px;
  }

  .local-info-grid {
    grid-template-columns: 1fr;
  }

  .local-info-grid article {
    min-height: auto;
    padding: 24px;
  }

  .local-info-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bottom-estimate-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .bottom-estimate-actions {
    flex-wrap: wrap;
  }

  .bottom-estimate-link {
    flex: 1 1 150px;
    justify-content: center;
  }

  .quote-guide {
    padding-top: 0;
  }

  .quote-guide-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 42px 0 24px;
  }

  .site-footer .section-inner {
    padding-left: 24px;
    padding-right: 20px;
  }

  .footer-grid {
    gap: 0;
  }

  .footer-nav {
    gap: 8px 16px;
    margin-bottom: 24px;
  }

  .footer-policy {
    margin-bottom: 22px;
  }

  .footer-info {
    margin-bottom: 38px;
  }

  .footer-nav a,
  .footer-policy a,
  .footer-info span,
  .footer-copy {
    font-size: 14px;
  }

  .partner-section {
    padding: 56px 0 54px;
  }

  .partner-heading h2 {
    font-size: 29px;
  }

  .partner-heading p:not(.eyebrow) {
    font-size: 15px;
  }

  .logo-tile {
    min-width: 150px;
    min-height: 60px;
    padding: 12px 18px;
    font-size: 13px;
  }

  .logo-tile.logo-tile-image {
    min-width: 156px;
    min-height: 64px;
    padding: 6px 10px;
  }

  .logo-tile.logo-tile-image img {
    width: 136px;
    height: 52px;
    max-width: 100%;
  }

  .logo-tile.logo-tile-wordmark {
    min-width: 160px;
    min-height: 64px;
    padding: 12px 18px;
  }

  .logo-tile.logo-tile-wordmark.is-long {
    min-width: 196px;
  }

  .logo-wordmark {
    font-size: 13px;
  }

  .logo-tile.logo-tile-wordmark.is-long .logo-wordmark {
    font-size: 12px;
  }

  .segment-control {
    grid-template-columns: 1fr;
  }

  .segment {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .segment:last-child {
    border-bottom: 0;
  }

  .detail-panel {
    padding: 26px;
  }

  .process-list li,
  .service-card {
    min-height: auto;
  }

  .story-card img {
    height: 260px;
  }

  .case-post a {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .case-thumb {
    min-height: 220px;
  }

  .case-body {
    padding: 22px;
  }

  .portfolio-bottom {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .instagram-reels-grid {
    scroll-behavior: auto;
  }

  .instagram-reel-video {
    transition: none !important;
  }

  .instagram-reel-card:hover .instagram-reel-video,
  .instagram-reel-card:focus-visible .instagram-reel-video {
    transform: none;
  }

  .program-slide-track {
    transition: none !important;
  }

  .program-carousel-dot {
    transition: none !important;
  }

  .logo-track {
    animation: none !important;
    transform: none !important;
  }
}
