:root {
  --yellow: #f6c90e;
  --yellow-dark: #d8a900;
  --black: #111111;
  --ink: #1b1b1b;
  --muted: #666666;
  --line: #dddddd;
  --soft: #f7f7f2;
  --green-soft: #edf7f2;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.82rem;
}

.header-nav {
  display: none;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
}

.section,
.section-band {
  padding: 62px 18px;
}

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

.hero {
  display: grid;
  gap: 28px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 38px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

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

h1 {
  margin-bottom: 14px;
  font-size: 2.45rem;
  line-height: 1.08;
  font-weight: 950;
}

h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.18;
  font-weight: 950;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
  line-height: 1.3;
}

p {
  line-height: 1.72;
}

.hero-lead {
  max-width: 520px;
  color: #333333;
  font-size: 1.14rem;
  font-weight: 700;
}

.hero-actions,
.quote-actions,
.contact-actions {
  display: grid;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn.full {
  width: 100%;
}

.hero-actions .btn {
  min-height: 62px;
  font-size: 1.05rem;
}

.btn-call {
  flex-direction: column;
  gap: 3px;
}

.btn-call span {
  font-size: 1.12rem;
}

.hero-helper {
  margin: 12px 0 0;
  color: #444444;
  font-size: 0.98rem;
  font-weight: 800;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 22px 0 0;
}

.hero-stats div,
.trust-strip div,
.service-card,
.use-grid article,
.review-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.hero-stats div {
  padding: 10px;
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  font-size: 1rem;
  font-weight: 950;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  height: 260px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--black);
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  z-index: 1;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.06), rgba(17, 17, 17, 0.46));
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
}

.visual-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
}

.trust-strip {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--black);
  color: var(--white);
}

.trust-strip div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 4px;
  color: #dedede;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 700;
}

.service-grid,
.use-grid,
.review-grid,
.gallery-grid,
.proof-grid,
.region-seo-grid,
.work-log-grid,
.area-links,
.dong-cloud {
  display: grid;
  gap: 12px;
}

.service-card,
.use-grid article,
.review-grid article {
  padding: 20px;
}

.service-card p,
.use-grid p,
.review-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.ton-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--black);
  color: var(--yellow);
  font-weight: 950;
}

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

.photo-proof {
  background: var(--white);
}

.proof-grid {
  grid-template-columns: 1fr;
}

.proof-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: 50% 50%;
  background: var(--soft);
}

.proof-grid article:first-child img {
  object-position: 50% 36%;
}

.proof-grid article:nth-child(2) img {
  object-position: 50% 58%;
}

.proof-grid article:nth-child(3) img {
  object-position: 50% 42%;
}

.proof-grid strong,
.proof-grid span {
  display: block;
  padding: 0 16px;
}

.proof-grid strong {
  padding-top: 16px;
  font-size: 1.1rem;
  font-weight: 950;
}

.proof-grid span {
  padding-top: 6px;
  padding-bottom: 18px;
  color: var(--muted);
  font-weight: 800;
}

.pricing-section {
  background: var(--white);
}

.price-subtitle {
  margin: 28px 0 12px;
  font-size: 1.22rem;
}

.price-highlight-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.price-highlight-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-highlight-card span {
  color: var(--yellow-dark);
  font-weight: 950;
}

.price-highlight-card strong {
  color: var(--black);
  font-size: 1.45rem;
  line-height: 1.12;
  font-weight: 950;
}

.price-highlight-card p,
.price-highlight-note {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.price-highlight-note {
  margin-bottom: 28px;
}

.pricing-section .price-highlight-note + .price-subtitle {
  margin-top: 0;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  text-align: center;
}

.price-table caption {
  padding: 14px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  text-align: left;
}

.price-table th,
.price-table td {
  padding: 14px 12px;
  border: 1px solid var(--line);
  white-space: nowrap;
  font-size: 0.95rem;
}

.price-table th {
  background: var(--yellow);
  color: var(--black);
  font-weight: 950;
}

.price-table td:first-child {
  background: #fff8d6;
  font-weight: 900;
}

.price-table td:not(:first-child) {
  font-weight: 800;
}

.price-note {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 800;
}

.quote-section {
  display: grid;
  gap: 24px;
  background: var(--black);
  color: var(--white);
}

.quote-copy p:not(.eyebrow),
.quote-copy li {
  color: #e8e8e8;
}

.rate-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
}

.form-intro {
  display: grid;
  gap: 5px;
  padding-bottom: 2px;
}

.form-intro strong {
  font-size: 1.34rem;
  line-height: 1.2;
  font-weight: 950;
}

.form-intro span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row.split {
  grid-template-columns: 1fr;
}

label {
  font-weight: 900;
}

select,
input,
textarea {
  min-height: 52px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
}

textarea {
  min-height: 120px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
  line-height: 1.55;
}

small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.compact-controls > div,
.advanced-split > div {
  display: grid;
  gap: 7px;
}

.advanced-fields {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.advanced-fields summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--black);
  font-weight: 950;
}

.advanced-grid {
  display: grid;
  gap: 14px;
  padding: 0 0 16px;
}

.quote-result {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-radius: 8px;
  background: var(--soft);
  border: 2px solid var(--yellow);
}

.quote-result span {
  color: var(--muted);
  font-weight: 800;
}

.quote-result strong {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 950;
}

.quote-result em {
  font-style: normal;
  font-weight: 900;
}

.area-links {
  grid-template-columns: 1fr;
}

.area-links a,
.dong-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 900;
}

.area-links a {
  justify-content: center;
  padding: 0 14px;
  background: var(--yellow);
  color: var(--black);
}

.dong-cloud {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.dong-cloud span {
  justify-content: center;
  padding: 0 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 0.92rem;
}

.region-seo-grid {
  grid-template-columns: 1fr;
  margin-top: 14px;
}

.region-seo-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.region-seo-grid h3 {
  margin-bottom: 8px;
}

.region-seo-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.gallery-section {
  background: var(--black);
  color: var(--white);
}

.gallery-section .section-heading p:not(.eyebrow) {
  color: #e0e0e0;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 8px;
  background: #242424;
}

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

.trust-detail-section {
  background: var(--white);
}

.trust-detail-grid {
  display: grid;
  gap: 12px;
}

.trust-detail-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-detail-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  font-weight: 950;
}

.trust-detail-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.review-grid article {
  overflow: hidden;
  padding: 0;
}

.review-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: 50% 50%;
  background: var(--soft);
}

.review-grid article > div {
  padding: 18px;
}

.work-log-preview {
  background: var(--white);
}

.work-log-grid {
  grid-template-columns: 1fr;
}

.work-log-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.work-log-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: 50% 48%;
  background: var(--soft);
}

.work-log-grid article > div {
  padding: 18px;
}

.work-log-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow-dark);
  font-weight: 900;
}

.work-log-grid p {
  margin-bottom: 12px;
  color: var(--muted);
}

.work-log-card-meta {
  display: block;
  margin: 0 0 8px;
  color: #4f4f4f;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.work-log-card-meta strong {
  margin-right: 4px;
  color: var(--black);
  font-weight: 950;
}

.work-log-grid a {
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.work-log-empty {
  grid-column: 1 / -1;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.work-log-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
  font-weight: 950;
}

.work-log-empty p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.work-log-more {
  margin-top: 18px;
}

.work-post-hero {
  width: min(100%, 1180px);
  height: 420px;
  margin: 0 auto;
  object-fit: cover;
  object-position: 50% 48%;
  background: var(--soft);
}

.work-post-hero.portrait {
  object-position: 50% 36%;
}

.work-summary {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.work-summary div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.work-summary strong,
.work-summary span {
  display: block;
}

.work-summary strong {
  margin-bottom: 5px;
  font-weight: 950;
}

.work-summary span {
  color: var(--muted);
  font-weight: 800;
}

.review-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.faq-section details {
  border-top: 1px solid var(--line);
}

.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 950;
}

.faq-section details p {
  color: var(--muted);
}

.contact-section {
  display: grid;
  gap: 18px;
}

.site-footer {
  padding: 28px 18px 88px;
  background: var(--black);
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.business-info {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #d8d8d8;
  font-size: 0.88rem;
  line-height: 1.5;
}

.business-info p {
  margin: 0;
}

.business-info strong {
  display: inline-block;
  min-width: 96px;
  color: var(--white);
  font-weight: 900;
}

.site-footer .credits {
  margin-top: 8px;
  color: #cfcfcf;
  font-size: 0.84rem;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.admin-page {
  background: var(--soft);
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.admin-header .brand span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.82rem;
}

.admin-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  color: var(--muted);
  font-weight: 900;
}

.admin-main {
  display: grid;
  gap: 18px;
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 28px 18px 60px;
}

.admin-panel,
.empty-state {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-login {
  max-width: 520px;
  margin: 42px auto;
}

.admin-title-row {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.admin-title-row p {
  color: var(--muted);
}

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

.admin-form label {
  display: grid;
  gap: 7px;
}

.admin-actions {
  display: grid;
  gap: 10px;
}

.admin-saved-actions {
  display: grid;
  gap: 10px;
  margin: -4px 0 18px;
}

.admin-preview-box {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.admin-preview-box strong {
  font-weight: 950;
}

.admin-preview-box span {
  color: var(--muted);
  font-weight: 800;
}

.admin-preview-box code {
  display: block;
  color: var(--black);
  font-family: inherit;
  font-weight: 900;
  overflow-wrap: anywhere;
}

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

.photo-preview-grid div {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.photo-preview-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-preview-grid span {
  display: block;
  padding: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.image-manage-grid {
  display: grid;
  gap: 12px;
}

.image-manage-grid article {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.image-manage-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.image-manage-grid label {
  display: grid;
  gap: 6px;
  font-size: 0.94rem;
}

.admin-mini-list {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.admin-mini-list strong {
  font-weight: 950;
}

.admin-mini-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.admin-mini-list span {
  color: var(--black);
  font-weight: 950;
}

.admin-title-actions {
  display: grid;
  gap: 10px;
}

.admin-alert,
.admin-success {
  margin: 0 0 16px;
  padding: 14px;
  border-radius: 8px;
  font-weight: 900;
}

.admin-alert {
  border: 1px solid #ffc7c7;
  background: #fff0f0;
  color: #9d1c1c;
}

.admin-success {
  border: 1px solid #b7e2c2;
  background: var(--green-soft);
  color: #1f6b35;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: var(--soft);
  font-size: 0.9rem;
}

.admin-table a {
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.empty-state {
  display: grid;
  gap: 12px;
}

.work-post-body {
  margin-top: 30px;
}

.work-post-body p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}

.work-checklist {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.work-checklist ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
  font-weight: 800;
}

.work-post-cta {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.work-post-cta p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.meta-score-grid,
.meta-rule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.meta-score-grid div,
.meta-rule-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.meta-score-grid strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.meta-score-grid span,
.meta-rule-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.meta-rule-grid strong {
  font-weight: 950;
}

.meta-card-list {
  display: grid;
  gap: 16px;
}

.meta-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.meta-card-head {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--soft);
}

.meta-card-head h3 {
  margin: 6px 0;
}

.meta-card-head p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
  font-weight: 700;
}

.meta-kind {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 950;
}

.meta-score {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
}

.meta-score strong {
  font-size: 2rem;
  line-height: 1;
}

.meta-score span {
  font-size: 0.84rem;
  font-weight: 950;
}

.meta-score.pass {
  background: #1f6b35;
}

.meta-score.warn {
  background: #8a6500;
}

.meta-score.fail {
  background: #9d1c1c;
}

.meta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 18px 0;
}

.meta-actions a,
.meta-actions button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-weight: 900;
}

.meta-check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 18px;
  list-style: none;
}

.meta-check-list li {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-left: 5px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.meta-check-list li.pass {
  border-left-color: #1f6b35;
}

.meta-check-list li.warn {
  border-left-color: #d8a900;
}

.meta-check-list li.fail {
  border-left-color: #9d1c1c;
}

.meta-check-list strong {
  font-weight: 950;
}

.meta-check-list span {
  color: var(--muted);
  font-weight: 750;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 54px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  font-weight: 950;
  font-size: 0.98rem;
}

.mobile-cta a:nth-child(1) {
  background: var(--yellow);
  color: var(--black);
}

.location-hero {
  background: var(--black);
  color: var(--white);
}

.location-hero p {
  max-width: 720px;
  color: #e6e6e6;
  font-weight: 700;
}

.breadcrumb {
  margin-bottom: 16px;
  color: #cfcfcf;
  font-weight: 800;
}

.location-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.location-list li {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 900;
}

@media (min-width: 720px) {
  .section,
  .section-band {
    padding-right: 34px;
    padding-left: 34px;
  }

  .header-nav {
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-weight: 900;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  }

  .hero-actions,
  .quote-actions,
  .contact-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-stats,
  .trust-strip,
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-detail-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .work-log-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stats div {
    padding: 14px;
  }

  .hero-stats dt {
    font-size: 0.86rem;
  }

  .hero-stats dd {
    font-size: 1.12rem;
  }

  .hero-visual,
  .hero-visual img {
    height: 420px;
  }

  .service-grid,
  .use-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-highlight-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .proof-grid img {
    height: 240px;
  }

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

  .gallery-grid img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .quote-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
    align-items: start;
  }

  .form-row.split {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .admin-title-row {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .admin-title-actions {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    grid-template-columns: 1fr 1fr;
  }

  .admin-saved-actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .photo-preview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .image-manage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .meta-score-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .meta-rule-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .meta-card-head {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .area-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .dong-cloud {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-section {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .work-post-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}

@media (min-width: 1080px) {
  .site-header,
  .section,
  .section-band,
  .trust-strip,
  .site-footer {
    padding-right: max(48px, calc((100vw - 1180px) / 2));
    padding-left: max(48px, calc((100vw - 1180px) / 2));
  }
}
