/* =============================================
   대경대학교 복지케어과 - style.css
   ============================================= */

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

:root {
  --primary: #4ab1b6;
  --primary-dark: #238f8f;
  --primary-light: #d6f0f0;
  --primary-fg: #ffffff;
  --fg: #2d3748;
  --fg-muted: #6b7a8d;
  --bg: #ffffff;
  --bg-alt: #f5fafa;
  --border: #dce8e8;
  --accent: #e0f4f4;
  --accent-fg: #1a7a7a;
  --radius: 0.5rem;
  --shadow-sm: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 25px 50px rgba(0,0,0,0.15);
  --transition: 0.2s ease;
  --header-height: 5rem;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
}

/*body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
}
*/
a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  width:100%;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: var(--radius);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.logo-text-sub {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.2;
}

.logo-text-main {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.425rem;
  line-height: 1.2;
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-item {
  position: relative;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius);
  font-size: 1.1875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  white-space: nowrap;
  color: var(--fg);
}

.nav-item:hover {
  background: var(--accent);
  color: var(--accent-fg);
}

.nav-item.active {
  background: var(--primary);
  color: var(--primary-fg);
}

.nav-chevron {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav-item.dropdown-open .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  padding: 0.4rem 0;
  min-width: 160px;
  z-index: 200;
}

.dropdown.open {
  display: block;
  animation: fadeInDown 0.18s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown a {
  display: block;
  padding: 0.6rem 1.1rem;
  font-size: 1.0625rem;
  color: var(--fg);
  transition: background var(--transition), color var(--transition);
}

.dropdown a:hover {
  background: var(--accent);
  color: var(--accent-fg);
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.0625rem;
  color: var(--fg-muted);
  transition: color var(--transition);
}

.header-phone:hover {
  color: var(--primary);
}

.header-phone svg {
  flex-shrink: 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: inherit;
  white-space: nowrap;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(43,166,166,0.35);
}

.btn-outline {
  background: rgba(255,255,255,0.8);
  border: 1.5px solid var(--border);
  color: var(--fg);
}

.btn-outline:hover {
  background: var(--accent);
  border-color: var(--primary-light);
  color: var(--accent-fg);
}

.btn-secondary {
  background: var(--bg-alt);
  color: var(--fg);
}

.btn-secondary:hover {
  background: var(--accent);
}

.btn-hero-outline {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: blur(4px);
}

.btn-hero-outline:hover {
  background: rgba(255,255,255,0.22);
}

.btn-cta-white {
  background: #fff;
  color: var(--primary);
  font-weight: 600;
}

.btn-cta-white:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-cta-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
}

.btn-cta-outline:hover {
  background: rgba(255,255,255,0.12);
}

.btn-lg {
  padding: 0.8rem 2rem;
  font-size: 1.1875rem;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 1.0625rem;
}

/* =============================================
   MOBILE MENU BUTTON
   ============================================= */
.mobile-menu-btn {
  display: none;
  background: none;
  cursor: pointer;
  padding: 0.45rem;
  border-radius: var(--radius);
  border: none;
  transition: background var(--transition);
}

.mobile-menu-btn:hover {
  background: var(--accent);
}

.mobile-menu-btn svg {
  width: 2rem;
  height: 2rem;
  color: var(--fg);
  display: block;
}

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-nav {
  display: none;
  background: var(--bg);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}

.mobile-nav.open {
  display: block;
  max-height: 700px;
}

.mobile-nav-inner {
  padding: 0.75rem 1.5rem 1.5rem;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-item:last-of-type {
  border-bottom: none;
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 0.5rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--fg);
  cursor: pointer;
  text-align: left;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.mobile-nav-toggle:hover {
  background: var(--accent);
  color: var(--accent-fg);
}

.mobile-chevron {
  width: 1rem;
  height: 1rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.mobile-nav-toggle.open .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-nav-link {
  display: block;
  padding: 0.85rem 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  border-radius: var(--radius);
  transition: background var(--transition);
}

.mobile-nav-link:hover {
  background: var(--accent);
  color: var(--accent-fg);
}

.mobile-sub {
  display: none;
  padding: 0 0.5rem 0.75rem 1.2rem;
  border-left: 2.5px solid var(--primary-light);
  margin: 0 0.5rem 0.5rem 0.5rem;
}

.mobile-sub.open {
  display: block;
}

.mobile-sub a {
  display: block;
  padding: 0.5rem 0.5rem;
  font-size: 0.9375rem;
  color: var(--fg-muted);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.mobile-sub a:hover {
  background: var(--accent);
  color: var(--accent-fg);
}

.mobile-nav-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem 0.25rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--fg-muted);
}

.mobile-nav-contact svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--primary);
}

.mobile-nav-contact a {
  color: var(--fg-muted);
  transition: color var(--transition);
}

.mobile-nav-contact a:hover {
  color: var(--primary);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: url('/img/visual01.jpg') center / cover no-repeat;
  margin-top: var(--header-height);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30,42,56,0.92) 0%,
    rgba(30,42,56,0.75) 50%,
    rgba(30,42,56,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 44rem;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(43,166,166,0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(43,166,166,0.4);
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.625rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.875rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  color: var(--fg-muted);
  font-size: 1rem;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  max-width: 42rem;
  margin: 0 auto;
}

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}



.about-desc {
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  line-height: 1.55;
  font-size: 1.125rem;
}

.fir {font-size:1.375rem;}

.about-highlights {
  margin: 0.25rem 0 2rem;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.2rem 0;
  font-size: 1.125rem;
  color: var(--fg);
}

.dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--primary);
  color: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: 0.75rem;
  box-shadow: 0 12px 30px rgba(43,166,166,0.4);
  text-align: center;
}

.about-badge-num {
  font-size: 2.375rem;
  font-weight: 800;
  line-height: 1.1;
}

.about-badge-sub {
  font-size: 1.0625rem;
  opacity: 0.85;
  margin-top: 0.2rem;
}

/* =============================================
   VALUES
   ============================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid transparent;
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.value-card:hover .value-icon {
  background: var(--primary);
}

.value-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--primary);
  transition: color var(--transition);
}

.value-card:hover .value-icon svg {
  color: #fff;
}

.value-eng {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.value-kor {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--fg);
  line-height: 1.3;
}

.value-desc {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* =============================================
   GREETING
   ============================================= */
.greeting-card {
  max-width: 56rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
}

.greeting-icon-area {
  background: var(--primary);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 5rem;
}

.greeting-icon-area svg {
  width: 4rem;
  height: 4rem;
  color: rgba(255,255,255,0.35);
}

.greeting-body {
  padding: 2.5rem 2.75rem;
}

.greeting-quote {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.greeting-text {
  color: var(--fg-muted);
  margin-bottom: 1.75rem;
  line-height: 1.65;
  font-size: 1.0425rem;
}

.greeting-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.greeting-author {
  font-size: 1.0625rem;
  color: var(--fg-muted);
}

.greeting-author strong {
  color: var(--fg);
  font-weight: 700;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-card {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: block;
}

.gallery-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.gallery-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.06);
}

.gallery-category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
}

.gallery-info {
  padding: 1rem 1.1rem 1.1rem;
}

.gallery-info h3 {
  font-weight: 700;
  font-size: 1.0125rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--fg);
}

.gallery-date {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.gallery-date svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-title {
  font-size: 2.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: -0.02em;
}

.cta-desc {
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.25rem;
  font-size: 1.05rem;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--fg);
  color: #fff;
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-sub {
  font-size: 1.0625rem;
  opacity: 0.7;
  line-height: 1.3;
}

.footer-main {
  font-weight: 700;
  font-size: 1.0625rem;
}

.footer-brand-desc {
  font-size: 1.0625rem;
  opacity: 0.7;
  line-height: 1.75;
}

.footer h4 {
  font-weight: 700;
  margin-bottom: 1.1rem;
  font-size: 1.0725rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
}

.footer-col ul a {
  opacity: 0.72;
  transition: opacity var(--transition);
}

.footer-col ul a:hover {
  opacity: 1;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-contact p {
  opacity: 0.72;
  line-height: 1.4;
}

.footer-contact-num {
  opacity: 1 !important;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 1.0625rem;
  opacity: 0.55;
}

/* =============================================
   RESPONSIVE - Tablet (1024px)
   ============================================= */
@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .nav-desktop,
  .header-right {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .about-grid {
    gap: 3rem;
  }
}

/* =============================================
   RESPONSIVE - Mobile (768px)
   ============================================= */
@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  /* Hero */
  .hero {
    min-height: 70vh;
    align-items: flex-end;
    padding-bottom: 2rem;
  }

  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(30,42,56,0.95) 0%,
      rgba(30,42,56,0.7) 60%,
      rgba(30,42,56,0.35) 100%
    );
  }

  .hero-content {
    padding: 2rem 0 1.5rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-badge {
    bottom: -1rem;
    left: 1rem;
  }

  .about-image-wrapper {
    padding-bottom: 1.5rem;
  }

  /* Values */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Greeting */
  .greeting-card {
    grid-template-columns: 1fr;
  }

  .greeting-icon-area {
    padding: 1.5rem 2rem;
    justify-content: flex-start;
  }

  .greeting-icon-area svg {
    width: 2.5rem;
    height: 2.5rem;
  }

  .greeting-body {
    padding: 1.75rem 1.5rem;
  }

  .greeting-quote {
    font-size: 1.15rem;
  }

  .greeting-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Gallery */
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  /* CTA */
  .cta-title {
    font-size: 1.75rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* =============================================
   RESPONSIVE - Small Mobile (480px)
   ============================================= */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .about-badge {
    left: 0.5rem;
    padding: 1rem 1.25rem;
  }

  .about-badge-num {
    font-size: 1.5rem;
  }

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

  .value-card {
    padding: 1.25rem 0.75rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cta-title {
    font-size: 1.55rem;
  }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }



.ico-camera {color: var(--primary); width: 2rem; height: 2rem; display: inline-block; margin-right: .5rem; vertical-align: middle;}

/* 화면낭독기 사용자용 */
#hd_login_msg {position:absolute;top:0;left:0;font-size:0;line-height:0;overflow:hidden}
.msg_sound_only, .sound_only {display:inline-block !important;position:absolute;top:0;left:0;width:0;height:0;margin:0 !important;padding:0 !important;font-size:0;line-height:0;border:0 !important;overflow:hidden !important}