* {
  box-sizing: border-box;
}

:root {
  --bg: #f4f8fb;
  --surface: #ffffff;
  --surface-soft: #f8fbfd;
  --line: #d9e6ef;
  --text: #0f172a;
  --muted: #5b6b7d;
  --brand: #0d6188;
  --brand-deep: #0a3b58;
  --brand-soft: #e8f6fd;
  --shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  word-break: keep-all;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #334155;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--brand);
}

.hero {
  padding: 34px 0 24px;
  background: linear-gradient(180deg, #eef8fd 0%, #f4f8fb 100%);
}

.hero-shell {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 40px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--brand-deep) 0%, #0c5e87 55%, #158fbc 100%);
  color: #fff;
  box-shadow: 0 30px 80px rgba(10, 59, 88, 0.18);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero-copy h1 span {
  color: #d8f5ff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact-box .eyebrow,
.movein-hero .eyebrow {
  color: rgba(255,255,255,0.78);
}

.hero-text {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.9);
  font-size: 18px;
}

.hero-contact {
  margin-top: 28px;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-contact span {
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  font-weight: 700;
}

.hero-contact strong {
  font-size: 28px;
  letter-spacing: -0.03em;
}

.hero-cards {
  display: grid;
  gap: 16px;
}

.hero-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

.hero-card-soft {
  background: rgba(7, 24, 39, 0.24);
}

.card-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.94);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-card h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-card p:last-child {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.84);
}

.section {
  padding: 88px 0;
}

.section-plain {
  background: transparent;
}

.section-soft {
  background: linear-gradient(180deg, #f9fcfe 0%, #eef6fb 100%);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-text {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  max-width: none;
}

.service-grid,
.pricing-grid,
.special-grid,
.movein-points {
  display: grid;
  gap: 18px;
}

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

.service-card,
.special-card,
.movein-point,
.price-card,
.review-card,
.photo-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.service-card,
.special-card,
.movein-point {
  padding: 26px;
}

.service-card h3,
.special-card h3,
.movein-point h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.service-card p,
.special-card p,
.movein-point p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.price-card {
  padding: 28px 24px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.price-card span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.price-card strong {
  display: block;
  margin-top: 10px;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--brand-deep);
}

.price-card-wide {
  background: linear-gradient(135deg, #f1f9fe 0%, #ffffff 100%);
}

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

.photo-card {
  overflow: hidden;
  padding: 0;
  min-height: 250px;
}

.photo-card img {
  height: 100%;
  object-fit: cover;
}

.review-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.review-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  padding: 28px;
}

.stars {
  margin-bottom: 16px;
  color: #f59e0b;
  font-size: 22px;
}

.review-card p {
  margin: 0;
  color: #334155;
  min-height: 134px;
}

.review-card span {
  display: block;
  margin-top: 18px;
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
}

.slider-nav {
  display: flex;
  gap: 10px;
}

.slider-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 800;
}

.slider-btn:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.movein-hero {
  background: linear-gradient(135deg, #082f49 0%, #0b5b7f 55%, #128ab5 100%);
  color: #fff;
}

.movein-shell .section-head {
  max-width: 860px;
}

.movein-shell .section-head h2 {
  color: #fff;
}

.movein-shell .section-text {
  color: rgba(255,255,255,0.86);
}

.movein-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.movein-point {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.14);
  color: #fff;
  box-shadow: none;
}

.movein-point p {
  color: rgba(255,255,255,0.82);
}

.contact-section {
  padding-top: 92px;
}

.contact-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 36px;
  text-align: center;
  background: linear-gradient(135deg, #082f49 0%, #0b5b7f 55%, #128ab5 100%);
  color: #fff;
  box-shadow: 0 28px 70px rgba(8, 49, 79, 0.18);
}

.contact-box h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.contact-box p {
  margin: 14px auto 0;
  max-width: 560px;
  color: rgba(255,255,255,0.84);
}

.contact-number {
  margin-top: 24px;
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
}

.footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #64748b;
  font-size: 14px;
}

#aircare, #air-pricing, #photos, #air-reviews, #movein, #movein-services, #movein-special, #movein-reviews, #contact {
  scroll-margin-top: 100px;
}

@media (max-width: 1100px) {
  .hero-shell,
  .service-grid,
  .pricing-grid,
  .photo-grid,
  .movein-points,
  .special-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
  }

  .hero-shell,
  .service-grid,
  .pricing-grid,
  .photo-grid,
  .movein-points,
  .special-grid,
  .section-head-row,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section-head-row {
    align-items: start;
  }

  .hero-shell {
    padding: 24px;
    border-radius: 28px;
  }

  .hero-card h2,
  .service-card h3,
  .special-card h3,
  .movein-point h3 {
    font-size: 22px;
  }

  .hero-text,
  .section-text {
    font-size: 16px;
  }

  .contact-box {
    padding: 28px;
    border-radius: 28px;
  }

  .price-card-wide {
    grid-column: auto;
  }
}
