/* =============================================
   DAELIM GLOBAL — Main Stylesheet
   ============================================= */

:root {
  --primary:     #1C2B3A;
  --primary-lt:  #2D3F52;
  --gold:        #C9A96E;
  --gold-dk:     #A8893A;
  --green:       #3D6B4F;
  --green-lt:    #EBF4EF;
  --cream:       #F8F5F0;
  --white:       #FFFFFF;
  --text:        #1A1A1A;
  --text-md:     #444444;
  --text-lt:     #6B7280;
  --border:      #E5DDD0;
  --shadow:      0 4px 24px rgba(28,43,58,.10);
  --shadow-lg:   0 12px 48px rgba(28,43,58,.16);
  --radius:      8px;
  --radius-lg:   16px;
  --trans:       .3s ease;
  --container:   1200px;
  --sec-py:      96px;
  --serif:       'Noto Serif KR', Georgia, serif;
  --sans:        'Noto Sans KR', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── Utility ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section   { padding: var(--sec-py) 0; }
.bg-cream  { background: var(--cream); }
.center    { text-align: center; }

/* ── Typography ── */
.label {
  font-size: 11px; font-weight: 700; letter-spacing: .22em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
}
.label.green { color: var(--green); }
.label.light { color: rgba(201,169,110,.9); }

.ttl {
  font-family: var(--serif); font-size: clamp(26px, 4vw, 42px);
  font-weight: 700; line-height: 1.3; color: var(--primary); margin-bottom: 20px;
}
.ttl em    { font-style: normal; color: var(--gold); }
.ttl.light { color: var(--white); }
.ttl em.green { color: var(--green); }

.lead  { font-size: 17px; line-height: 1.65; color: var(--primary); margin-bottom: 14px; font-family: var(--serif); }
.desc  { font-size: 15px; color: var(--text-lt); margin-bottom: 28px; }

.sec-hd        { margin-bottom: 52px; }
.sec-desc      { font-size: 16px; color: var(--text-lt); margin-top: -8px; margin-bottom: 0; }
.two-col       { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: var(--trans); white-space: nowrap;
}
.btn-lg  { padding: 16px 34px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary  { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-lt); }

.btn-gold     { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

.btn-green   { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover { background: #2f5440; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--trans), box-shadow var(--trans);
}
.site-header.scrolled { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; gap: 24px;
}

.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-emblem-img {
  width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-kr { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--white); transition: color var(--trans); }
.logo-en { font-size: 9px; letter-spacing: .15em; color: rgba(255,255,255,.65); transition: color var(--trans); }
.site-header.scrolled .logo-kr { color: var(--primary); }
.site-header.scrolled .logo-en { color: var(--text-lt); }

.site-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 32px; justify-content: center; }
.nav-link {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.9);
  position: relative; transition: color var(--trans); padding-bottom: 2px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width var(--trans);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover       { color: var(--gold); }
.nav-social           { color: rgba(144,210,150,.95) !important; font-weight: 600; }
.nav-social::after    { background: var(--green) !important; }
.nav-social:hover     { color: #7ecf8a !important; }
.site-header.scrolled .nav-link  { color: var(--text-md); }
.site-header.scrolled .nav-link:hover { color: var(--gold); }
.site-header.scrolled .nav-social { color: var(--green) !important; }

.header-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: rgba(255,255,255,.9); transition: color var(--trans);
}
.header-phone:hover { color: var(--gold); }
.site-header.scrolled .header-phone { color: var(--primary); }

.btn-header-cta {
  background: var(--gold); color: var(--white);
  padding: 9px 18px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700; transition: var(--trans);
}
.btn-header-cta:hover { background: var(--gold-dk); }

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; transition: var(--trans);
}
.site-header.scrolled .mobile-toggle span { background: var(--primary); }
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; background: var(--white);
  border-top: 1px solid var(--border); padding: 12px 24px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul li a {
  display: block; padding: 13px 0; font-size: 15px; font-weight: 500;
  color: var(--text-md); border-bottom: 1px solid var(--border); transition: color var(--trans);
}
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu ul li a:hover { color: var(--gold); }
.mobile-social-link { color: var(--green) !important; font-weight: 600 !important; }
.mobile-cta {
  margin-top: 12px; background: var(--gold); color: var(--white) !important;
  text-align: center; border-radius: var(--radius); border: none !important;
  padding: 14px !important; display: block;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(28,43,58,.88) 0%, rgba(28,43,58,.6) 55%, rgba(28,43,58,.25) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 70px; max-width: 640px; }
.hero-badge {
  display: inline-block; background: var(--gold); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  padding: 5px 14px; border-radius: 4px; margin-bottom: 22px;
  animation: fadeUp .8s ease both;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(34px,5vw,62px);
  font-weight: 700; color: var(--white); line-height: 1.25;
  margin-bottom: 16px; animation: fadeUp .8s ease .1s both;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 14px; color: rgba(255,255,255,.65); letter-spacing: .05em;
  margin-bottom: 34px; animation: fadeUp .8s ease .2s both;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 36px; animation: fadeUp .8s ease .3s both;
}
.hero-phone-row {
  display: flex; align-items: center; gap: 12px;
  animation: fadeUp .8s ease .4s both;
}
.hero-phone-row span { font-size: 13px; color: rgba(255,255,255,.55); }
.hero-phone-num { font-size: 22px; font-weight: 700; color: var(--gold); letter-spacing: .04em; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px; z-index: 2;
  animation: fadeIn 1s ease 1s both;
}
.scroll-line {
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5) 0%, transparent 100%);
  animation: scrollAnim 1.8s ease infinite;
}
.hero-scroll span { font-size: 9px; letter-spacing: .2em; color: rgba(255,255,255,.45); }

@keyframes fadeUp   { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes scrollAnim { 0%,100% { opacity:.6; } 50% { opacity:1; } }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar { background: var(--primary); padding: 48px 0; }
.stats-row {
  display: flex; align-items: center; justify-content: center;
}
.stat { flex: 1; text-align: center; padding: 0 20px; }
.stat b {
  display: block; font-family: var(--serif); font-size: 40px;
  font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-word { font-size: 30px !important; }
.stat span { font-size: 13px; color: rgba(255,255,255,.65); }
.stat-sep  { width: 1px; height: 48px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* =============================================
   ABOUT
   ============================================= */
.about-section { background: var(--cream); }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--white);
  padding: 18px 22px; border-radius: var(--radius-lg); text-align: center;
  box-shadow: 0 8px 32px rgba(201,169,110,.4);
}
.about-badge strong { display: block; font-family: var(--serif); font-size: 34px; font-weight: 700; line-height: 1; }
.about-badge strong span { font-size: 18px; }
.about-badge small { font-size: 10px; opacity: .9; line-height: 1.5; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 32px; }
.af-item { display: flex; align-items: flex-start; gap: 10px; }
.af-icon {
  width: 32px; height: 32px; background: rgba(201,169,110,.12); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.af-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--primary); }
.af-item small  { font-size: 12px; color: var(--text-lt); }

/* =============================================
   BEETHOVEN HOUSE
   ============================================= */
.beethoven-section { position: relative; padding: 112px 0; overflow: hidden; }
.beethoven-bg { position: absolute; inset: 0; }
.beethoven-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.35); }
.beethoven-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,43,58,.6), rgba(28,43,58,.85));
}
.beethoven-content { position: relative; z-index: 2; text-align: center; }
.beethoven-desc { font-size: 16px; color: rgba(255,255,255,.78); line-height: 1.9; margin-bottom: 52px; }

.b-types   { display: flex; gap: 22px; justify-content: center; margin-bottom: 44px; }
.b-card {
  flex: 1; max-width: 260px; position: relative;
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg);
  padding: 36px 26px; transition: var(--trans);
}
.b-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.b-card.b-featured { background: var(--gold); border-color: var(--gold); }
.b-popular {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 3px 14px; border-radius: 20px;
}
.b-num  { font-family: var(--serif); font-size: 52px; font-weight: 700; color: var(--white); line-height: 1; }
.b-unit { font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 8px; }
.b-name { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.b-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.b-tags span {
  font-size: 11px; padding: 3px 10px; border-radius: 20px;
  background: rgba(255,255,255,.15); color: rgba(255,255,255,.88);
}
.b-card.b-featured .b-tags span { background: rgba(255,255,255,.25); }

/* =============================================
   SERVICES
   ============================================= */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.svc-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 26px; transition: var(--trans);
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold); }
.svc-icon { width: 56px; height: 56px; margin-bottom: 20px; }
.svc-card h3 { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.svc-card p  { font-size: 13px; color: var(--text-lt); line-height: 1.7; margin-bottom: 16px; }
.svc-card ul li {
  font-size: 12px; color: var(--text-lt);
  padding: 5px 0; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}
.svc-card ul li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* =============================================
   PROCESS
   ============================================= */
.process-row { display: flex; align-items: flex-start; }
.proc-step { flex: 1; text-align: center; padding: 0 12px; }
.proc-num  { display: block; font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--gold); margin-bottom: 12px; }
.proc-ico  {
  width: 60px; height: 60px; background: var(--white); border: 2px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 14px; transition: var(--trans);
}
.proc-step:hover .proc-ico { border-color: var(--gold); background: rgba(201,169,110,.08); }
.proc-step h4 { font-family: var(--serif); font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.proc-step p  { font-size: 12px; color: var(--text-lt); line-height: 1.6; }
.proc-arr { align-self: center; padding-top: 28px; color: var(--gold); font-size: 18px; flex-shrink: 0; }

/* =============================================
   SOCIAL CONTRIBUTION (사회공헌)
   ============================================= */
.social-section { background: var(--green-lt); position: relative; padding-top: 80px; }
.social-top-accent { height: 6px; background: linear-gradient(90deg, var(--green), var(--gold)); }

.social-header { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 64px; }

.social-lead { font-size: 16px; color: var(--text-md); line-height: 1.8; margin-bottom: 32px; word-break: keep-all; }
.social-stats-row { display: flex; gap: 32px; margin-bottom: 32px; }
.ss-item { text-align: center; }
.ss-item strong {
  display: block; font-family: var(--serif); font-size: 32px;
  font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 4px;
}
.ss-item span { font-size: 12px; color: var(--text-lt); }

.social-featured-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 16/10;
}
.social-featured-card img { width: 100%; height: 100%; object-fit: cover; }
.social-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,43,58,.88) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.social-tag {
  display: inline-block; background: var(--green); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 10px;
}
.social-featured-overlay h3 { font-family: var(--serif); font-size: 20px; color: var(--white); margin-bottom: 8px; }
.social-featured-overlay p  { font-size: 13px; color: rgba(255,255,255,.78); line-height: 1.6; }

.social-activities {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 48px;
}
.activity-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); transition: var(--trans);
}
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.activity-card-img { aspect-ratio: 16/9; overflow: hidden; }
.activity-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.activity-card:hover .activity-card-img img { transform: scale(1.06); }
.activity-card-body { padding: 20px 22px; }
.activity-card-tag { display: inline-block; background: var(--green-lt); color: var(--green); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.activity-card-body h3 { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.activity-card-body p  { font-size: 13px; color: var(--text-lt); line-height: 1.65; margin-bottom: 10px; }
.activity-card-date { font-size: 11px; color: var(--text-lt); }
.social-card-footer { display: flex; align-items: center; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.social-card-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; margin: 8px 0; }
.social-card-gallery img { width: 100%; height: 80px; object-fit: cover; border-radius: 6px; }
.social-yt-btn { display: inline-flex; align-items: center; gap: 4px; background: #FF0000; color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; text-decoration: none; }
.social-yt-btn:hover { background: #cc0000; }

/* 베토벤하우스 갤러리 */
.beethoven-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 0 auto 36px; max-width: 960px; }
.beethoven-gallery img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; border: 2px solid rgba(255,255,255,.2); transition: transform .25s; }
.beethoven-gallery img:hover { transform: scale(1.03); }
.beethoven-yt-btn { display: inline-flex; align-items: center; gap: 8px; background: #FF0000; color: #fff; font-size: 15px; font-weight: 700; padding: 10px 24px; border-radius: 30px; text-decoration: none; margin-bottom: 20px; }
.beethoven-yt-btn:hover { background: #cc0000; }
@media (max-width: 768px) {
  .beethoven-gallery { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .beethoven-gallery img { height: 160px; }
}
@media (max-width: 480px) {
  .beethoven-gallery { grid-template-columns: 1fr; }
  .beethoven-gallery img { height: 200px; }
}

.social-mission {
  background: var(--green); border-radius: var(--radius-lg);
  padding: 40px 48px; display: flex; align-items: center; gap: 28px;
  color: var(--white);
}
.mission-icon { font-size: 48px; flex-shrink: 0; }
.mission-text h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.mission-text p  { font-size: 14px; line-height: 1.8; opacity: .88; word-break: keep-all; }

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.port-item { border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.port-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.port-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.port-item:hover .port-img-wrap img { transform: scale(1.08); }
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,43,58,.84) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity var(--trans);
}
.port-item:hover .port-overlay { opacity: 1; }
.port-tag   { display: inline-block; background: var(--gold); color: var(--white); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 6px; }
.port-title { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--white); display: block; margin-bottom: 2px; }
.port-info  { font-size: 12px; color: rgba(255,255,255,.7); display: block; }

.port-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.port-gallery img { width: 100%; height: 72px; object-fit: cover; cursor: pointer; transition: opacity .2s; }
.port-gallery img:hover { opacity: .85; }
.port-yt-badge { display: flex; align-items: center; gap: 5px; background: #FF0000; color: #fff; font-size: 12px; font-weight: 700; padding: 5px 12px; text-decoration: none; justify-content: center; }
.port-yt-badge:hover { background: #cc0000; }

/* =============================================
   VIDEO GALLERY
   ============================================= */
.video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.video-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.video-thumb {
  position: relative; aspect-ratio: 16/9; background: var(--primary);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.video-thumb:hover img { transform: scale(1.05); }
.video-play-btn {
  position: absolute; width: 56px; height: 56px;
  background: rgba(255,255,255,.92); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; transition: transform var(--trans);
}
.video-thumb:hover .video-play-btn { transform: scale(1.1); }
.video-info { padding: 16px 18px; }
.video-info h4 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.video-info span { font-size: 12px; color: var(--text-lt); }
.video-empty { grid-column: 1/-1; text-align: center; padding: 48px; color: var(--text-lt); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner { background: var(--primary); padding: 60px 0; }
.cta-inner  { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-banner h2 { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.cta-banner p  { font-size: 15px; color: rgba(255,255,255,.68); }
.cta-btns      { display: flex; gap: 14px; flex-shrink: 0; }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.contact-desc { font-size: 15px; color: var(--text-lt); line-height: 1.8; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.ci-item { display: flex; align-items: center; gap: 14px; }
.ci-icon {
  width: 42px; height: 42px; background: var(--gold);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ci-item small  { display: block; font-size: 11px; color: var(--text-lt); margin-bottom: 2px; }
.ci-item a,
.ci-item span   { font-size: 17px; font-weight: 700; color: var(--primary); }
.ci-item a:hover { color: var(--gold); }

.contact-form-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 44px; box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg       { margin-bottom: 18px; }
.fg label { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 7px; }
.fg input,
.fg select,
.fg textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 14px; color: var(--text); background: var(--white);
  outline: none; transition: border-color var(--trans);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--gold); }
.fg textarea { resize: vertical; }

.form-done { text-align: center; padding: 52px 20px; }
.done-circle {
  width: 60px; height: 60px; background: var(--green); color: var(--white);
  font-size: 26px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 22px;
}
.form-done h3 { font-family: var(--serif); font-size: 20px; color: var(--primary); margin-bottom: 10px; }
.form-done p  { font-size: 14px; color: var(--text-lt); line-height: 1.7; }
.form-done a  { color: var(--gold); font-weight: 700; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--primary); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { margin-bottom: 14px; }
.footer-logo span { display: block; font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--white); }
.footer-logo small { font-size: 10px; letter-spacing: .14em; color: rgba(255,255,255,.45); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 16px; }
.footer-tel { font-size: 22px; font-weight: 700; color: var(--gold); letter-spacing: .04em; }
.footer-tel:hover { color: var(--gold-dk); }

.site-footer h5 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 18px; letter-spacing: .04em; }
.footer-nav ul li { margin-bottom: 9px; }
.footer-nav ul li a  { font-size: 13px; color: rgba(255,255,255,.55); transition: color var(--trans); }
.footer-nav ul li a:hover { color: var(--gold); }
.footer-nav ul li span { font-size: 13px; color: rgba(255,255,255,.55); }

.footer-contact > div { margin-bottom: 14px; }
.footer-contact strong { display: block; font-size: 11px; color: rgba(255,255,255,.4); margin-bottom: 3px; }
.footer-contact a,
.footer-contact span { font-size: 14px; color: rgba(255,255,255,.8); font-weight: 500; }
.footer-contact a:hover { color: var(--gold); }
.social-links { margin-top: 16px; }
.social-link { font-size: 13px; color: rgba(201,169,110,.9); font-weight: 600; }
.social-link:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.admin-link {
  font-size: 16px; color: rgba(255,255,255,.12);
  transition: color var(--trans); text-decoration: none;
}
.admin-link:hover { color: rgba(255,255,255,.4); }

/* =============================================
   FLOATING BUTTON
   ============================================= */
.float-call {
  display: none; position: fixed; bottom: 28px; right: 28px;
  width: 54px; height: 54px; background: var(--gold); color: var(--white);
  border-radius: 50%; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,169,110,.55); z-index: 999; transition: var(--trans);
}
.float-call:hover { background: var(--gold-dk); transform: scale(1.08); }

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity .7s ease, transform .7s ease;
}
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .two-col, .social-header, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap img { height: 340px; }
  .about-badge { bottom: -12px; right: 12px; }
  .process-row { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .proc-arr { display: none; }
  .proc-step { flex: 0 0 30%; }
  .portfolio-grid, .social-activities, .video-grid { grid-template-columns: repeat(2,1fr); }
  .b-types { flex-direction: column; align-items: center; }
  .b-card  { max-width: 320px; width: 100%; }
}

@media (max-width: 768px) {
  :root { --sec-py: 60px; }
  .site-nav, .header-right { display: none; }
  .mobile-toggle { display: flex; }
  .hero-title { font-size: 32px; }
  .hero-btns  { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .stats-row  { flex-wrap: wrap; gap: 28px; }
  .stat-sep   { display: none; }
  .stat       { flex: 0 0 40%; }
  .services-grid, .portfolio-grid, .social-activities, .video-grid { grid-template-columns: 1fr; }
  .cta-inner  { flex-direction: column; text-align: center; }
  .contact-form-box { padding: 26px; }
  .form-row   { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .social-mission { flex-direction: column; text-align: center; padding: 28px 24px; }
  .float-call { display: flex; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .ttl        { font-size: 24px; }
  .social-stats-row { gap: 16px; }
}
