:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --ink: #1f2428;
  --muted: #666b70;
  --line: #e8e1d7;
  --accent: #a37b45;
  --accent-dark: #6c4f2c;
  --charcoal: #202225;
  --soft: #f4efe7;
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(251, 250, 247, 0.94)),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-shell {
  overflow: hidden;
}

.site-header {
  width: 100%;
  min-height: 126px;
  margin: 0;
  padding: 18px max(28px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "brand spacer badge"
    "nav nav nav";
  align-items: center;
  gap: 16px 24px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(31, 36, 40, 0.08);
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  flex: 0 0 246px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-emblem {
  position: relative;
  display: block;
  width: 92px;
  height: 90px;
  flex: 0 0 92px;
  border: 0;
  border-radius: 0;
  color: #a07728;
  background: transparent;
  font-family: Georgia, serif;
  font-size: 32px;
  font-style: italic;
  line-height: 1;
  overflow: hidden;
}

.brand-emblem img {
  position: absolute;
  left: -9px;
  top: -13px;
  width: 201px;
  height: auto;
  max-width: none;
}

.brand-fallback[hidden] {
  display: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 0;
}

.brand-text strong {
  color: #111;
  font-size: 23px;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-text em {
  color: #6d7175;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mega-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(26px, 3vw, 46px);
  padding-top: 0;
}

.mega-group {
  min-width: 0;
}

.mega-title {
  display: inline-block;
  margin-bottom: 0;
  color: #1b1d1f;
  font-size: 18px;
  font-weight: 800;
  white-space: normal;
  line-height: 1.28;
  word-break: keep-all;
}

.mega-list {
  display: none;
  flex-direction: column;
  gap: 9px;
}

.mega-list a {
  color: #595f64;
  font-size: 14px;
  line-height: 1.35;
  white-space: normal;
  word-break: keep-all;
}

.mega-title:hover,
.mega-list a:hover {
  color: var(--ink);
}

.license-badge {
  grid-area: badge;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: #352f27;
}

.license-item {
  width: 196px;
  height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 12px 14px;
  border: 1px solid rgba(163, 123, 69, 0.34);
  border-radius: 4px;
  background: #fbfaf7;
  text-align: left;
}

.women-certified {
  width: 228px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  border-color: rgba(82, 103, 125, 0.28);
  background: #f8fafb;
}

.women-mark {
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 4px;
  border: 0;
  background: transparent;
}

.women-mark::before {
  content: none;
}

.women-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.license-item span {
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.women-certified span {
  color: #53677b;
}

.license-item strong {
  font-size: 14px;
  line-height: 1.35;
}

.women-certified strong {
  font-size: 15px;
  line-height: 1.3;
  white-space: nowrap;
}

.license-item small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.hero {
  width: min(1240px, calc(100% - 40px));
  margin: 50px auto 0;
  min-height: calc(100vh - 300px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(470px, 1.16fr);
  gap: 46px;
  align-items: center;
  padding-bottom: 58px;
}

.hero-copy {
  padding: 32px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  word-break: keep-all;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
  color: #17191b;
}

.hero-title-line {
  white-space: nowrap;
}

.lead {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-sublead {
  max-width: 540px;
  margin: 15px 0 0;
  color: #3f4549;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.76;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.primary-button,
.secondary-button,
.kakao-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.primary-button {
  background: var(--charcoal);
  color: #fff;
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.kakao-button {
  border: 1px solid #dfc23a;
  background: #fee500;
  color: #211f1f;
}

.service-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 26px;
}

.trust-points span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(31, 36, 40, 0.14);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
  color: #252a2e;
  font-size: 14px;
  font-weight: 900;
}

.keyword {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #4d514f;
  font-size: 13px;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 694px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #eee7dc, #fffaf1);
  border: 1px solid rgba(163, 123, 69, 0.2);
  box-shadow: 0 24px 70px rgba(31, 36, 40, 0.13);
}

.hero-video,
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-poster {
  z-index: 0;
}

.hero-video {
  z-index: 1;
}

.video-fallback .hero-video {
  display: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.09);
  pointer-events: none;
}

.hero-stats {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.hero-stat {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  color: #fff;
  background: rgba(10, 12, 14, 0.25);
}

.hero-stat strong {
  font-size: 24px;
  line-height: 1;
}

.hero-stat span {
  display: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.content-section,
.field-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.content-section {
  position: relative;
  isolation: isolate;
  padding: 90px 0 70px;
  scroll-margin-top: 18px;
}

.content-section > *,
.field-section > * {
  position: relative;
  z-index: 1;
}

#business {
  width: min(1220px, calc(100% - 40px));
  margin-top: 34px;
  padding: 35px 32px 39px;
  border-radius: 8px;
  background: #2b3034;
  color: #fff;
}

#business .section-heading h2,
#business .service-detail-copy h2,
#business .field-card h3 {
  color: #fff;
}

#business .section-heading p:not(.eyebrow),
#business .field-card p,
#business .service-detail-copy p:not(.eyebrow),
#business .service-detail-copy li,
#business .service-select-hint,
#business .protection-note p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
}

#business .sub-page-header {
  margin-bottom: 34px;
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

#business .sub-visual {
  min-height: 170px;
  padding: 36px 44px;
  background:
    linear-gradient(90deg, rgba(24, 28, 31, 0.86), rgba(43, 48, 52, 0.54)),
    url("/images/sejin-hero-poster.jpg") center / cover;
}

#business .sub-visual .eyebrow {
  color: #d9bd7e;
}

#business .sub-visual h1 {
  margin: 10px 0 14px;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

#business .sub-visual p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.74;
}

#business .sub-nav {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

#business .sub-nav a {
  border-right-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  min-width: 164px;
  padding-right: 22px;
  padding-left: 22px;
}

#business .sub-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

#business .field-card,
#business .service-detail,
#business .protection-note {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.14);
}

#business .field-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

#business .field-card {
  min-height: 0;
  padding: 28px;
  justify-content: flex-start;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

#business .field-card:hover,
#business .field-card:focus-visible,
#business .field-card.is-gallery-active {
  border-color: rgba(217, 189, 126, 0.48);
  background: rgba(255, 255, 255, 0.16);
  outline: 0;
}

#business .field-card-image {
  height: auto;
  aspect-ratio: 16 / 10;
  margin: 22px -28px -28px;
  border-radius: 0 0 8px 8px;
}

#business .field-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.72;
}

#business .field-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.field-card-more {
  display: inline-flex;
  margin-top: 16px;
  color: #d9bd7e;
  font-size: 13px;
  font-weight: 900;
}

#business .service-select-hint {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.service-gallery-panel {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.service-gallery-panel[hidden] {
  display: none;
}

.service-gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  align-items: start;
  margin-bottom: 16px;
}

.service-gallery-heading h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
}

.service-gallery-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.service-gallery-heading .eyebrow,
.service-gallery-heading h3,
.service-gallery-heading p {
  grid-column: 1;
}

.service-gallery-close {
  grid-column: 2;
  grid-row: 1 / span 3;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.service-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #1f2428;
  aspect-ratio: 4 / 3;
}

.service-gallery-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.sub-page-header {
  margin: 0 0 46px;
  border-bottom: 1px solid var(--line);
}

.sub-visual {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  padding: 32px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(90deg, rgba(31, 36, 40, 0.74), rgba(31, 36, 40, 0.34)),
    url("/images/sejin-hero-poster.jpg") center / cover;
  color: #fff;
}

.sub-visual::after {
  content: "";
  position: absolute;
  right: clamp(36px, 8vw, 118px);
  bottom: -58px;
  width: min(340px, 30vw);
  aspect-ratio: 1 / 1;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  background: url("/public/images/%EC%84%B8%EC%A7%84%EA%B2%BD%ED%98%B8%EB%A1%9C%EA%B3%A0%20%EC%9D%BC%EB%9F%AC%EC%8A%A4%ED%8A%B8.png") 96% 48% / 214% auto no-repeat;
  opacity: 0.045;
  mix-blend-mode: multiply;
  filter: saturate(0.72) contrast(1.08);
}

.sub-visual > * {
  position: relative;
  z-index: 1;
}

.sub-visual .eyebrow {
  color: #dfc38e;
}

.sub-visual h1 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
  letter-spacing: 0;
}

.sub-visual p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.75;
}

.sub-nav {
  display: flex;
  flex-wrap: wrap;
  min-height: 58px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.sub-nav a {
  min-width: 150px;
  min-height: 58px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: #454b50;
  font-weight: 800;
}

.sub-nav a:hover {
  background: #f7f3ed;
  color: var(--ink);
}

.recruit-section .sub-page-header {
  grid-column: 1 / -1;
  margin-bottom: 12px;
}

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

.section-heading h2,
.contact-band h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.22;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.greeting-panel {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  margin-top: 36px;
  padding: 42px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82)),
    #fff;
}

.patch-watermark {
  --watermark-size: 300px;
  position: absolute;
  right: -70px;
  bottom: -92px;
  width: var(--watermark-size);
  height: var(--watermark-size);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background-image: url("/public/images/%EC%84%B8%EC%A7%84%EA%B2%BD%ED%98%B8%ED%8C%A8%EC%B9%98.png");
  background-position: calc(var(--watermark-size) * -1.155) calc(var(--watermark-size) * -0.887);
  background-size: calc(var(--watermark-size) * 3.303) calc(var(--watermark-size) * 4.954);
  background-repeat: no-repeat;
  color: rgba(31, 36, 40, 0.055);
  pointer-events: none;
  overflow: hidden;
  opacity: 0.11;
  filter: saturate(0.9) contrast(1.02);
}

.patch-watermark span,
.patch-watermark small {
  position: absolute;
  z-index: 1;
  color: rgba(108, 79, 44, 0.2);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
}

.patch-watermark span {
  top: 48px;
  width: 100%;
}

.patch-watermark small {
  bottom: 50px;
  width: 100%;
}

.patch-watermark strong {
  position: relative;
  z-index: 1;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(163, 123, 69, 0.16);
  border-radius: 999px;
  color: rgba(163, 123, 69, 0.2);
  background: rgba(255, 255, 255, 0.22);
  font-family: Georgia, serif;
  font-size: 78px;
  font-style: italic;
  line-height: 1;
}

.patch-watermark img {
  display: none;
}

.patch-watermark:has(img) span,
.patch-watermark:has(img) small,
.patch-watermark:has(img) strong {
  opacity: 0;
}

.greeting-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.greeting-copy h3 {
  max-width: 820px;
  margin: 0 0 22px;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.32;
}

.greeting-copy p:not(.eyebrow) {
  margin: 0 0 16px;
  color: #4f555a;
  font-size: 16px;
  line-height: 1.86;
}

.greeting-sign {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-size: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.about-grid article,
.process-step,
.recruit-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.about-grid article {
  min-height: 210px;
  padding: 26px;
}

.about-grid strong,
.process-step span {
  color: var(--accent-dark);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.about-grid h3 {
  margin: 18px 0 12px;
  font-size: 22px;
}

.about-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.history-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  margin-top: 14px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f3ed;
}

.history-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.2;
}

.history-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.history-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.history-year {
  display: none;
  color: var(--accent-dark);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.history-timeline ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid rgba(163, 123, 69, 0.28);
}

.history-timeline li {
  position: relative;
  padding: 0 0 24px 24px;
}

.history-timeline li:last-child {
  padding-bottom: 0;
}

.history-timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

.history-timeline strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.history-timeline span {
  color: var(--muted);
  line-height: 1.7;
}

.location-panel {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 440px);
  gap: 24px;
  margin-top: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.location-section {
  padding-top: 50px;
}

.location-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
}

.location-copy p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.8;
}

.location-copy dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

.location-copy dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.location-copy dt {
  color: var(--accent-dark);
  font-weight: 800;
}

.location-copy dd {
  margin: 0;
  color: #40464a;
  line-height: 1.7;
}

.location-copy dd a {
  color: inherit;
  text-decoration: none;
}

.location-copy dd a:hover {
  color: var(--accent-dark);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.map-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(31, 36, 40, 0.58)),
    radial-gradient(circle at 66% 42%, rgba(163, 123, 69, 0.32) 0 5px, transparent 6px),
    linear-gradient(35deg, transparent 0 43%, rgba(163, 123, 69, 0.44) 44% 46%, transparent 47%),
    linear-gradient(115deg, transparent 0 38%, rgba(78, 95, 108, 0.28) 39% 41%, transparent 42%),
    linear-gradient(90deg, rgba(105, 123, 134, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(105, 123, 134, 0.16) 1px, transparent 1px),
    #e8e4dc;
  background-size:
    auto,
    auto,
    auto,
    auto,
    46px 46px,
    46px 46px,
    auto;
  color: #fff;
  overflow: hidden;
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(28deg, transparent 0 57%, rgba(255, 255, 255, 0.86) 58% 61%, transparent 62%),
    linear-gradient(152deg, transparent 0 49%, rgba(255, 255, 255, 0.72) 50% 52%, transparent 53%),
    radial-gradient(circle at 66% 42%, rgba(31, 36, 40, 0.82) 0 7px, rgba(255, 255, 255, 0.92) 8px 12px, transparent 13px);
  opacity: 0.94;
}

.map-card::after {
  content: "";
  position: absolute;
  left: 66%;
  top: 42%;
  width: 24px;
  height: 24px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(31, 36, 40, 0.26);
  transform: translate(-50%, -100%) rotate(-45deg);
}

.map-card strong {
  position: relative;
  z-index: 1;
  font-size: 22px;
  letter-spacing: 0.04em;
}

.map-card span,
.map-card em {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.55;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.field-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.field-card-image,
.section-visual,
.contact-band-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.field-card-image::after,
.section-visual::after,
.contact-band-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 25, 0.12);
}

.field-card-image {
  height: 130px;
  margin: 22px -30px -30px;
  border-radius: 0 0 8px 8px;
}

.field-card-image img,
.section-visual img,
.contact-band-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.field-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.field-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.protection-note {
  margin: 42px 0 0;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.protection-note h3 {
  margin: 8px 0 0;
  font-size: 26px;
  line-height: 1.28;
}

.protection-tags {
  display: inline-flex;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.protection-note p:not(.eyebrow) {
  max-width: 780px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
}

.service-select-hint {
  margin: 18px 0 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f3ed;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}

.service-detail {
  margin-top: 18px;
  scroll-margin-top: 28px;
  padding: 34px;
  display: none;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-detail.is-active {
  display: grid;
}

.service-detail-open .service-select-hint {
  display: none;
}

.service-detail-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.14;
}

.service-detail-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.service-detail-copy ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-copy li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #41474b;
}

.service-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-auto-rows: 214px;
  gap: 12px;
}

.service-photo-grid figure {
  min-height: 0;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
}

.service-photo-grid figure.is-large {
  grid-row: span 2;
}

.service-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-photo-grid.is-single {
  grid-template-columns: 1fr;
}

.service-photo-grid.is-single figure.is-large {
  grid-row: auto;
  min-height: 430px;
}

.field-section {
  position: relative;
  isolation: isolate;
  padding: 58px 0 68px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 14px;
  margin-top: 34px;
}

.gallery figure {
  position: relative;
  min-height: 310px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
}

.gallery figure:first-child {
  min-height: 430px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 8px 11px;
  border-radius: 4px;
  background: rgba(20, 22, 24, 0.58);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.community-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.community-tabs a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 800;
}

.community-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}

.community-public-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.public-community-boards {
  margin-top: 24px;
}

.editor-panel,
.managed-board {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.editor-panel {
  position: sticky;
  top: 18px;
  padding: 24px;
}

.editor-panel h3,
.board-heading h3 {
  margin: 0;
  font-size: 24px;
}

.community-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.community-form label {
  display: grid;
  gap: 8px;
  color: #34383b;
  font-size: 14px;
  font-weight: 800;
}

.community-form input,
.community-form select,
.community-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.community-form input,
.community-form select {
  min-height: 42px;
  padding: 0 12px;
}

.community-form textarea {
  min-height: 130px;
  padding: 12px;
  resize: vertical;
}

.image-field input {
  padding: 9px 10px;
}

.portfolio-upload-note {
  margin-top: -4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.portfolio-preview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.empty-note.compact {
  grid-column: 1 / -1;
  padding: 14px;
}

.portfolio-preview-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.portfolio-preview-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.portfolio-preview-item button {
  position: absolute;
  right: 6px;
  bottom: 6px;
  border: 0;
  border-radius: 4px;
  padding: 5px 7px;
  background: rgba(31, 36, 40, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.form-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.community-boards {
  display: grid;
  gap: 14px;
}

.managed-board {
  scroll-margin-top: 28px;
  padding: 20px;
}

.board-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

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

.empty-note {
  margin: 0;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  color: var(--muted);
}

.managed-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.managed-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.managed-card h4 {
  margin: 0;
  font-size: 21px;
}

.managed-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
  white-space: pre-wrap;
}

.portfolio-card {
  grid-template-columns: minmax(0, 1fr) 168px;
  align-items: start;
}

.portfolio-card img {
  order: 2;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: var(--soft);
}

.portfolio-card > div {
  order: 1;
}

.admin-portfolio-card {
  grid-template-columns: minmax(0, 1fr);
}

.admin-portfolio-gallery {
  order: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.admin-portfolio-gallery img {
  order: initial;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 5px;
  background: var(--soft);
}

.image-count {
  display: inline-flex;
  width: fit-content;
  margin: 10px 0 0;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.portfolio-thumb {
  position: relative;
  min-height: 132px;
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 36, 40, 0.28), rgba(31, 36, 40, 0.08)),
    url("/images/sejin-hero-poster.jpg") center / cover;
}

.portfolio-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(31, 36, 40, 0.22)),
    radial-gradient(circle at 80% 20%, rgba(213, 184, 106, 0.22), transparent 42%);
}

.portfolio-thumb span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  margin: 0;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.card-actions {
  margin-top: 14px;
}

.card-actions button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.admin-page {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 42px 0 72px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 34px;
}

.admin-header h1,
.admin-login h2,
.editor-panel h2 {
  margin: 0;
}

.admin-header p:not(.eyebrow),
.admin-login p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.admin-login,
.admin-workspace {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 420px);
  gap: 30px;
  padding: 34px;
  align-items: start;
}

.admin-login-form {
  display: grid;
  gap: 14px;
}

.admin-login-form label {
  display: grid;
  gap: 8px;
  color: #34383b;
  font-size: 14px;
  font-weight: 800;
}

.admin-login-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.admin-workspace {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  align-items: start;
}

.admin-workspace[hidden],
.admin-login[hidden] {
  display: none;
}

.request-section {
  padding-top: 58px;
}

.contract-process {
  scroll-margin-top: 180px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.process-step {
  min-height: 168px;
  padding: 22px;
}

.process-step h3 {
  margin: 22px 0 12px;
  font-size: 21px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.contract-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.contract-panel article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.contract-panel h3 {
  margin: 0 0 16px;
  font-size: 21px;
}

.contract-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contract-panel li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.55;
}

.contract-panel li:last-child {
  border-bottom: 0;
}

.inquiry-panel {
  margin-top: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(31, 36, 40, 0.08);
  scroll-margin-top: 180px;
}

.inquiry-copy {
  margin-bottom: 26px;
}

.section-visual {
  height: 112px;
  margin-bottom: 18px;
}

.inquiry-copy h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
}

.inquiry-copy p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.inquiry-form {
  display: grid;
  gap: 20px;
}

.contact-band {
  position: relative;
  margin: 28px 0 0;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f1ea;
}

.contact-band > * {
  position: relative;
  z-index: 1;
}

.contact-band-visual {
  flex: 0 0 220px;
  height: 110px;
}

.contact-band p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.mobile-consult-bar {
  display: none;
}

@media (min-width: 761px) {
  .mobile-consult-bar {
    display: none !important;
  }
}

.recruit-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  gap: 20px 28px;
  align-items: start;
  padding-top: 26px;
  padding-bottom: 38px;
}

.recruit-copy h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.18;
}

.recruit-copy p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.recruit-visual {
  height: 132px;
  margin-bottom: 18px;
}

.recruit-link {
  margin-top: 18px;
}

.recruit-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.recruit-panel h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.recruit-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-panel li {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.recruit-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.recruit-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f3ed;
  overflow: hidden;
}

.recruit-steps div {
  padding: 14px;
  border-right: 1px solid var(--line);
}

.recruit-steps div:last-child {
  border-right: 0;
}

.recruit-steps span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.recruit-steps strong {
  display: block;
  font-size: 15px;
  line-height: 1.45;
}

.apply-panel {
  grid-column: 1 / -1;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(31, 36, 40, 0.06);
  scroll-margin-top: 180px;
  overflow: hidden;
}

.apply-panel summary {
  min-height: 58px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.apply-panel summary::marker {
  color: var(--accent-dark);
}

.apply-panel[open] {
  padding-bottom: 24px;
}

.apply-panel[open] .apply-heading,
.apply-panel[open] .apply-form {
  padding-right: 24px;
  padding-left: 24px;
}

.apply-heading {
  padding-top: 24px;
  margin-bottom: 26px;
}

.apply-heading h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
}

.apply-heading p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.apply-form,
.inquiry-form {
  display: grid;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.apply-form label,
.inquiry-form label,
.check-list {
  min-width: 0;
}

.apply-form label,
.inquiry-form label,
.check-list legend {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.apply-form input,
.apply-form select,
.apply-form textarea,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  margin-top: 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfaf8;
  color: var(--ink);
  font: inherit;
}

.apply-form input,
.apply-form select,
.inquiry-form input,
.inquiry-form select {
  height: 48px;
  padding: 0 14px;
}

.apply-form textarea,
.inquiry-form textarea {
  padding: 14px;
  resize: vertical;
  line-height: 1.65;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.check-list legend {
  padding: 0 8px;
}

.check-list label,
.privacy-check {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.check-list input,
.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 18px;
}

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

.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 920px) {
  .site-header {
    height: auto;
    min-height: 0;
    padding: 22px 20px 20px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 18px;
    position: relative;
  }

  .brand {
    align-items: center;
    flex-basis: calc(100% - 240px);
  }

  .mega-nav {
    flex-basis: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 24px;
    padding-top: 8px;
    padding-bottom: 4px;
  }

  .mega-title {
    margin-bottom: 0;
    white-space: normal;
    line-height: 1.25;
  }

  .license-badge {
    width: auto;
    gap: 6px;
  }

  .license-item {
    width: 158px;
    padding: 9px 10px;
  }

  .women-certified {
    width: 178px;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 26px;
    padding-bottom: 34px;
  }

  .hero-copy {
    padding: 8px 0 0;
  }

  .hero-media {
    min-height: 478px;
  }

  #business {
    width: min(100% - 40px, 1180px);
    padding: 30px 22px 36px;
  }

  #business .sub-visual {
    min-height: 158px;
    padding: 32px 34px;
  }

  #business .sub-visual h1 {
    font-size: clamp(32px, 4.6vw, 46px);
  }

  .sub-visual {
    min-height: 150px;
    padding: 30px;
  }

  .sub-visual::after {
    right: 26px;
    bottom: -42px;
    width: min(320px, 50vw);
    opacity: 0.045;
  }

  .sub-nav a {
    flex: 1 1 33.333%;
    min-width: 0;
  }

  .greeting-panel {
    padding: 32px;
  }

  .patch-watermark {
    --watermark-size: 280px;
    right: -120px;
    bottom: -96px;
  }

  .about-grid,
  .field-grid,
  .service-detail,
  .community-layout,
  .admin-workspace,
  .admin-login,
  .process-grid,
  .contract-panel,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  #business .field-grid {
    grid-template-columns: 1fr 1fr;
  }

  .history-panel {
    grid-template-columns: 1fr;
  }

  .location-panel {
    grid-template-columns: 1fr;
  }

  .gallery figure:first-child {
    grid-column: 1 / -1;
    min-height: 360px;
  }
  .recruit-section {
    grid-template-columns: 1fr;
  }

  .recruit-guide-grid,
  .form-grid,
  .check-list {
    grid-template-columns: 1fr 1fr;
  }

  .recruit-steps {
    grid-template-columns: 1fr 1fr;
  }

  .editor-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-shell {
    padding-bottom: 104px;
  }

  .site-header,
  .hero,
  .content-section,
  .field-section,
  .admin-page {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: relative;
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav";
  }

  .brand {
    gap: 11px;
  }

  .brand-emblem {
    width: 80px;
    height: 78px;
    flex-basis: 80px;
    font-size: 27px;
  }

  .brand-emblem img {
    left: -7px;
    top: -11px;
    width: 176px;
  }

  .brand-text strong {
    font-size: 21px;
  }

  .brand-text em {
    font-size: 12px;
  }

  .mega-title {
    font-size: 15px;
  }

  .mega-list {
    gap: 7px;
  }

  .mega-list a {
    font-size: 12px;
  }

  .license-badge {
    display: none;
  }

  .license-item {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    min-height: 62px;
    padding: 8px 9px;
  }

  .license-item span {
    font-size: 9px;
  }

  .license-item strong {
    font-size: 12px;
  }

  .license-item small {
    display: none;
  }

  .women-certified {
    width: 158px;
  }

  .women-mark {
    width: 34px;
    height: 34px;
  }

  .women-mark::before {
    font-size: 11px;
  }

  h1 {
    font-size: 39px;
  }

  .hero-title-line {
    white-space: normal;
  }

  .lead {
    font-size: 15.5px;
    line-height: 1.68;
  }

  .hero-sublead {
    font-size: 14px;
    line-height: 1.68;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .primary-button,
  .hero-actions .kakao-button {
    flex: 1 1 calc(50% - 6px);
    padding-right: 12px;
    padding-left: 12px;
  }

  .service-keywords .keyword:nth-child(n + 5) {
    display: none;
  }

  .trust-points {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trust-points span {
    min-height: 40px;
    font-size: 13px;
  }

  #business {
    width: min(100% - 28px, 1180px);
    padding: 24px 18px 28px;
  }

  #business .field-grid {
    gap: 12px;
    margin-top: 22px;
  }

  #business .field-card {
    min-height: 0;
    padding: 23px;
    display: flex;
    flex-direction: column;
  }

  #business .field-card-image {
    height: auto;
    aspect-ratio: 16 / 10;
    min-height: 0;
    margin: 18px -23px -23px;
    border-radius: 0 0 8px 8px;
  }

  #business .field-card h3 {
    font-size: 18px;
  }

  #business .field-card p {
    font-size: 14.5px;
    line-height: 1.6;
    -webkit-line-clamp: 3;
  }

  #business .sub-visual {
    min-height: 142px;
    padding: 24px 20px;
  }

  #business .sub-visual h1 {
    margin-bottom: 12px;
    font-size: 30px;
  }

  #business .sub-visual p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.68;
  }

  .sub-page-header {
    margin-bottom: 32px;
  }

  .sub-visual {
    min-height: 126px;
    padding: 22px 20px;
  }

  .sub-visual::after {
    right: -20px;
    bottom: -34px;
    width: 260px;
    opacity: 0.04;
  }

  .sub-visual p:not(.eyebrow) {
    font-size: 15px;
  }

  .sub-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .sub-nav a {
    min-height: 48px;
    padding: 0 10px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  #business .sub-nav a {
    min-width: 0;
    padding: 0 8px;
  }

  .service-gallery-panel {
    padding: 18px;
  }

  .service-gallery-heading {
    grid-template-columns: 1fr;
  }

  .service-gallery-heading h3 {
    font-size: 20px;
  }

  .service-gallery-close {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .service-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-media {
    min-height: 350px;
  }

  .hero-video {
    display: none;
  }

  .hero-video-overlay {
    background: rgba(0, 0, 0, 0.12);
  }

  .hero-stats {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .hero-stat {
    min-height: 68px;
    padding: 12px 10px;
  }

  .hero-stat strong {
    font-size: 23px;
  }

  .hero-stat span {
    margin-top: 3px;
    font-size: 12.5px;
  }

  .content-section {
    padding: 54px 0 38px;
  }

  .greeting-panel {
    min-height: 0;
    padding: 28px;
  }

  .patch-watermark {
    --watermark-size: 200px;
    right: -94px;
    top: auto;
    bottom: -96px;
    transform: none;
  }

  .patch-watermark strong {
    font-size: 96px;
  }

  .patch-watermark span,
  .patch-watermark small {
    font-size: 15px;
  }

  .greeting-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .greeting-copy h3 {
    font-size: 26px;
  }

  .field-section {
    padding: 38px 0 50px;
  }

  .about-grid,
  .field-grid,
  .service-detail,
  .service-photo-grid,
  .community-layout,
  .admin-workspace,
  .admin-login,
  .contract-panel,
  .portfolio-card,
  .process-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  #business .field-grid {
    grid-template-columns: 1fr;
  }

  .history-panel {
    padding: 26px;
  }

  .history-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .location-panel {
    padding: 26px;
  }

  .location-copy dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .map-card {
    min-height: 220px;
    padding: 22px;
  }

  .map-card strong {
    font-size: 20px;
  }

  .map-card span,
  .map-card em {
    max-width: 230px;
    font-size: 14px;
  }

  .field-card {
    min-height: 0;
  }

  .protection-note {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .service-detail {
    padding: 24px;
  }

  .service-photo-grid figure,
  .service-photo-grid figure.is-large {
    min-height: 250px;
  }

  .service-photo-grid {
    grid-auto-rows: auto;
  }

  .gallery figure,
  .gallery figure:first-child {
    min-height: 250px;
  }

  .contact-band {
    margin-bottom: 40px;
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-band-visual {
    width: 100%;
    flex-basis: auto;
    height: 112px;
  }

  .contact-actions {
    width: 100%;
    gap: 22px;
  }

  .portfolio-card {
    gap: 12px;
  }

  .portfolio-preview,
  .admin-portfolio-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-top: 2px;
  }

  .section-visual,
  .recruit-visual {
    height: 108px;
  }

  .contact-actions a {
    flex: 1 1 100%;
  }

  .inquiry-panel {
    padding: 24px;
  }

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

  .admin-login,
  .admin-workspace {
    padding: 20px;
  }

  .recruit-section {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .recruit-guide-grid,
  .recruit-steps,
  .form-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .recruit-steps div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .recruit-steps div:last-child {
    border-bottom: 0;
  }

  .apply-panel {
    padding: 0;
  }

  .mobile-consult-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 8px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 7px;
    border: 1px solid rgba(31, 36, 40, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(31, 36, 40, 0.16);
  }

  .mobile-consult-bar a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-call {
    background: var(--ink);
    color: #fff;
  }

  .mobile-kakao {
    border: 1px solid #d5bd52;
    background: #f3d95d;
    color: #211f1f;
  }

}
