/* ===================================================================
   김민준 세무사 사무소 — 원페이지 스크롤 사이트
   =================================================================== */

:root {
  /* --- Color: Navy Blue + White (신뢰감 있는 톤) --- */
  --color-navy-900: #0a1f38;
  --color-navy-800: #0f2a47;
  --color-navy-700: #163c63;
  --color-blue-600: #1f5fa8;
  --color-blue-500: #2f6fbf;
  --color-blue-100: #eaf2fb;
  --color-ice-50:   #f3f7fc;
  --color-white:    #ffffff;
  --color-gray-600: #5b6572;
  --color-gray-400: #8f98a3;
  --color-line:     #e2e8f0;

  /* --- Accent: 골드로 교체하고 싶다면 이 한 줄만 수정 (#c9a46a) --- */
  --color-accent: #2f6fbf;

  --color-text: #16212e;
  --color-required: #e05252;

  --font-base: "Pretendard", -apple-system, BlinkMacSystemFont, "Malgun Gothic", sans-serif;

  --container-w: 1200px;
  --header-h: 84px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.5;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================================================
   Buttons
   =================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(31, 95, 168, 0.35);
}
.btn--primary:hover {
  background: var(--color-navy-700);
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn--sm { padding: 11px 22px; font-size: 14px; }

/* ===================================================================
   Header
   =================================================================== */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
}

.header__inner {
  position: relative;
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

.hero__logo-bar {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 5;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--color-white);
  transition: opacity 0.25s var(--ease);
  flex-shrink: 0;
}
.logo:hover { opacity: 0.75; }

.logo__img {
  height: 32px;
  width: auto;
  /* 항상 히어로 이미지 위에 있으므로 흰색 실루엣으로 고정 */
  filter: brightness(0) invert(1);
}

.logo__text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.nav {
  border-radius: 999px;
  transition: background-color 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.header.is-scrolled .nav {
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px -12px rgba(15, 42, 71, 0.28);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  padding: 6px 0;
  transition: color 0.35s var(--ease);
}
.header.is-scrolled .nav__link { color: var(--color-gray-600); }

.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover,
.nav__link.is-active {
  color: var(--color-white);
}
.header.is-scrolled .nav__link:hover,
.header.is-scrolled .nav__link.is-active {
  color: var(--color-navy-800);
}
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.25s var(--ease);
}
.nav-toggle:hover { background: rgba(128, 128, 128, 0.12); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  transition: background-color 0.3s var(--ease);
}
.header.is-scrolled .nav-toggle span { background: var(--color-navy-800); }

.nav.is-open {
  display: flex;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 210;
  flex-direction: column;
  padding: 12px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 20px 40px -16px rgba(15, 42, 71, 0.35);
}

.nav.is-open .nav__list {
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}

.nav.is-open .nav__link {
  color: var(--color-navy-800);
  padding: 12px 14px;
  border-radius: 8px;
}

.nav.is-open .nav__link:hover,
.nav.is-open .nav__link.is-active {
  background: var(--color-blue-100);
  color: var(--color-navy-800);
}

.nav.is-open .nav__link::after { display: none; }

/* ===================================================================
   Hero — Full Image Visual
   =================================================================== */

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-white);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  animation: heroZoom 14s var(--ease) forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 31, 56, 0.78) 0%, rgba(10, 31, 56, 0.55) 32%, rgba(10, 31, 56, 0.72) 78%, rgba(10, 31, 56, 0.92) 100%),
    linear-gradient(90deg, rgba(10, 31, 56, 0.55) 0%, rgba(10, 31, 56, 0.15) 45%, rgba(10, 31, 56, 0.55) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-w);
  padding: 0 24px;
  padding-top: calc(var(--header-h) + 20px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -1px;
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  animation: heroRise 0.8s var(--ease) 0.15s forwards;
}

.hero__title strong {
  color: var(--color-blue-100);
  font-weight: 800;
}

.hero__desc {
  max-width: 720px;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 44px;
  opacity: 0;
  animation: heroRise 0.8s var(--ease) 0.3s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: heroRise 0.8s var(--ease) 0.45s forwards;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.75);
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
  position: relative;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}

/* ===================================================================
   Scroll reveal
   =================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services__grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.services__grid [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.services__grid [data-reveal]:nth-child(4) { transition-delay: 0.08s; }
.services__grid [data-reveal]:nth-child(5) { transition-delay: 0.16s; }
.services__grid [data-reveal]:nth-child(6) { transition-delay: 0.24s; }

/* ===================================================================
   Shared section heading
   =================================================================== */

.section-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--color-navy-800);
}

/* ===================================================================
   About — 세무사 소개 (약력 · 경력 통합)
   =================================================================== */

.about {
  padding: 120px 0;
  scroll-margin-top: var(--header-h);
  background: var(--color-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px 72px;
  margin-top: 56px;
}

.about__photo-frame {
  position: relative;
  aspect-ratio: 3 / 4;
}

.about__photo-frame::before {
  content: "";
  position: absolute;
  inset: -14px -14px auto auto;
  width: 70%;
  height: 70%;
  background: var(--color-navy-800);
  border-radius: 12px;
  z-index: 0;
}

.about__photo-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  box-shadow: 0 24px 48px -16px rgba(15, 42, 71, 0.35);
  transition: transform 0.4s var(--ease);
}

.about__photo-frame:hover .about__photo-img { transform: scale(1.03); }

.about__name {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-navy-800);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.about__role {
  font-size: 15px;
  color: var(--color-gray-600);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-line);
}

.about__greeting {
  grid-column: 1 / -1;
  padding-top: 48px;
  border-top: 1px solid var(--color-line);
}

.about__greeting-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.about__greeting-head h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-navy-800);
  letter-spacing: -0.3px;
}

.about__greeting-lead {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-navy-800);
  margin-bottom: 8px;
  text-align: center;
}

.about__greeting-sub {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--color-gray-600);
  margin-bottom: 32px;
  text-align: center;
}

.about__greeting-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.about__greeting-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 22px 26px;
  background: var(--color-ice-50);
  border-radius: 10px;
  border-left: 3px solid var(--color-accent);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}

.about__greeting-point:hover {
  background: var(--color-blue-100);
  transform: translateX(4px);
}

.about__greeting-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.3;
}

.about__greeting-point strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy-800);
  margin-bottom: 8px;
}

.about__greeting-point p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--color-text);
}

.about__greeting-closing {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--color-gray-600);
  margin-bottom: 24px;
  text-align: center;
}

.about__greeting-signature {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy-800);
  text-align: center;
}

.about__greeting-signature span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-600);
}

.about__career h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.about__career-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
}

.about__career-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-text);
  transition: padding-left 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.about__career-grid li::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--color-accent);
}

.about__career-grid li:nth-last-child(-n+2) {
  border-bottom: none;
}

.about__career-grid li:hover {
  padding-left: 6px;
  color: var(--color-navy-800);
  border-color: var(--color-accent);
}

/* ===================================================================
   Services — 주요 서비스
   =================================================================== */

.services {
  padding: 120px 0;
  scroll-margin-top: var(--header-h);
  background: var(--color-ice-50);
}

.services__lead {
  max-width: 560px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray-600);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 36px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(15, 42, 71, 0.25);
  border-color: var(--color-blue-500);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--color-blue-100);
  color: var(--color-accent);
  margin-bottom: 24px;
}

.service-card__icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy-800);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-gray-600);
}

/* ===================================================================
   Location — 오시는길
   =================================================================== */

.location {
  padding: 120px 0;
  scroll-margin-top: var(--header-h);
  background: var(--color-ice-50);
}

.location__lead {
  max-width: 640px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-gray-600);
}

.location__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  align-items: stretch;
}

.location__map-col {
  display: flex;
  flex-direction: column;
}

.location__form-col {
  scroll-margin-top: var(--header-h);
}

.location__col-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy-800);
  margin-bottom: 20px;
}

.location__map-wrap {
  position: relative;
  flex: 1;
  min-height: 340px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px -24px rgba(15, 42, 71, 0.3);
}

.location__map {
  width: 100%;
  height: 100%;
  min-height: 340px;
  background: var(--color-line);
}

.map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 340px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray-600);
  background: var(--color-blue-100);
}

.location__address-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.location__address-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.location__map-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-navy-800);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.location__map-btn:hover {
  background: var(--color-blue-100);
  border-color: var(--color-blue-500);
  transform: translateY(-1px);
}

.location__map-btn svg { width: 14px; height: 14px; }

.location__address {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-text);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 36px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 16px;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy-800);
}

.contact__field label span,
.contact__checkbox-label span {
  color: var(--color-required);
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact__field input:hover,
.contact__field select:hover,
.contact__field textarea:hover {
  border-color: var(--color-gray-400);
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(47, 111, 191, 0.15);
}

.contact__field textarea {
  min-height: 120px;
  resize: vertical;
}

.contact__field select {
  appearance: none;
  padding-right: 40px;
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235b6572' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

.contact__consent {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--color-ice-50);
  border: 1px solid var(--color-line);
  border-radius: 10px;
}

.contact__consent-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.contact__consent-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  padding: 4px 2px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: inherit;
  color: var(--color-gray-600);
  background: none;
  border: none;
  cursor: pointer;
}

.contact__consent-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--ease);
}

.contact__consent-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.contact__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--color-text);
  cursor: pointer;
}

.contact__checkbox-input-wrap {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

.contact__checkbox-input-wrap input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}

.contact__checkbox-box {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--color-gray-400);
  border-radius: 5px;
  background: var(--color-white);
  pointer-events: none;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.contact__checkbox-input-wrap input:checked + .contact__checkbox-box {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.contact__checkbox-input-wrap input:checked + .contact__checkbox-box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact__consent-detail {
  max-height: 0;
  overflow: hidden;
  padding-left: 30px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--color-gray-600);
  transition: max-height 0.3s var(--ease), margin-top 0.3s var(--ease);
}

.contact__consent-detail.is-open {
  max-height: 220px;
  margin-top: 12px;
}

.contact__submit {
  width: 100%;
  margin-top: 8px;
}

.contact__notice {
  min-height: 20px;
  font-size: 13.5px;
  color: var(--color-accent);
  text-align: center;
}

.footer {
  background: var(--color-navy-900);
  color: rgba(255, 255, 255, 0.7);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 56px 24px 32px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__brand-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.2px;
}

.footer__info {
  font-size: 14px;
  line-height: 1.9;
}

.footer__sep {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.3);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ===================================================================
   Responsive
   =================================================================== */

@media (max-width: 960px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__photo-frame { max-width: 320px; margin: 0 auto; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .location__layout { grid-template-columns: 1fr; }
  .location__map-wrap { min-height: 320px; }
  .location__map { min-height: 320px; }
}

@media (max-width: 560px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .hero__desc-break { display: none; }

  .about { padding: 80px 0; }
  .about__career-grid { grid-template-columns: 1fr; gap: 0; }
  .about__career-grid li:nth-last-child(-n+2) { border-bottom: 1px solid var(--color-line); }
  .about__career-grid li:last-child { border-bottom: none; }
  .about__greeting-point { grid-template-columns: 32px 1fr; padding: 18px; gap: 12px; }

  .services { padding: 80px 0; }
  .services__grid { grid-template-columns: 1fr; }

  .location { padding: 80px 0; }
  .location__address-row { flex-direction: column; align-items: flex-start; }
  .contact__form { padding: 28px 22px; }
  .contact__row { grid-template-columns: 1fr; gap: 20px; }

  .footer__inner { flex-direction: column; padding: 40px 24px 28px; }
}
