/* ============================================================
   HANS MUSIC — ENGLISH PAGE STYLES
   /en — International Collaboration & Booking Page
============================================================ */

/* Base override for English page */
body.en-page {
  font-family: 'Inter', 'Noto Sans KR', sans-serif;
  background: var(--black);
  color: var(--w);
}

/* ============================================================
   LANG BAR
============================================================ */
.lang-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  background: rgba(124,58,237,.92);
  backdrop-filter: blur(12px);
  padding: 8px 20px;
  border-bottom: 1px solid rgba(167,139,250,.3);
}
.lang-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.lang-note {
  font-size: .78rem; color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: 7px;
}
.lang-switch-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 5px 14px; border-radius: 50px;
  font-size: .75rem; font-weight: 700;
  transition: all .25s;
}
.lang-switch-btn:hover {
  background: rgba(255,255,255,.28);
  transform: translateY(-1px);
}

/* ============================================================
   NAV (English)
============================================================ */
.en-nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 900;
  height: 62px; padding: 0 20px;
  display: flex; align-items: center;
  transition: all .3s;
}
.en-nav.scrolled {
  background: rgba(8,8,16,.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 30px rgba(0,0,0,.5);
}

/* EN button in Korean nav */
.nav-links li a.nav-en-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(124,58,237,.2);
  border: 1px solid rgba(124,58,237,.5);
  color: #c4b5fd;
  padding: 5px 13px; border-radius: 50px;
  font-size: .75rem; font-weight: 700;
  letter-spacing: 1px;
  transition: all .25s;
}
.nav-links li a.nav-en-btn:hover {
  background: rgba(124,58,237,.45);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   HERO
============================================================ */
.en-hero {
  position: relative;
  height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-top: 36px; /* lang bar height */
}
.en-hero-bg {
  position: absolute; inset: 0;
}
.en-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.2s ease;
}
.en-hero-img.active { opacity: 1; }
.en-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,16,.6) 0%,
    rgba(8,8,16,.45) 40%,
    rgba(8,8,16,.85) 100%
  );
}
.en-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 820px;
  animation: fadeUp .8s ease both;
}
.en-hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 20px;
}
.en-hib {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 18px; border-radius: 50px;
  font-size: .7rem; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  border: 1.5px solid; backdrop-filter: blur(10px);
}
.en-hib-red   { background:rgba(233,30,99,.18);  border-color:rgba(233,30,99,.55);  color:#ff4081; }
.en-hib-purple{ background:rgba(124,58,237,.18); border-color:rgba(124,58,237,.55); color:#c4b5fd; }
.en-hib-blue  { background:rgba(2,132,199,.18);  border-color:rgba(2,132,199,.55);  color:#38bdf8; }
.en-hib-gold  { background:rgba(245,158,11,.18); border-color:rgba(245,158,11,.55); color:#fbbf24; }

.en-origin-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 18px; border-radius: 50px;
  font-size: .78rem; color: rgba(255,255,255,.75);
  margin-bottom: 22px;
}
.en-flag { font-size: 1.1rem; }

.en-hero-title {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; margin-bottom: 18px;
}
.en-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 9vw, 6rem);
  letter-spacing: 6px;
  background: linear-gradient(135deg, #fff 30%, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.en-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  letter-spacing: 4px;
  color: rgba(255,255,255,.75);
  line-height: 1.2;
}
.en-hero-sub {
  font-size: clamp(.78rem, 2vw, .92rem);
  color: rgba(255,255,255,.65);
  letter-spacing: 1.5px;
  margin-bottom: 34px;
  line-height: 1.7;
}
.en-hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
}
.en-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, #e91e63, #ff4081);
  color: #fff; padding: 14px 30px; border-radius: 50px;
  font-size: .95rem; font-weight: 700;
  box-shadow: 0 8px 28px rgba(233,30,99,.45);
  transition: all .25s; white-space: nowrap;
}
.en-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 42px rgba(233,30,99,.65);
}
.en-btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff; padding: 13px 28px; border-radius: 50px;
  font-size: .93rem; font-weight: 600;
  transition: all .25s; white-space: nowrap;
}
.en-btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

.en-hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; opacity: .6;
}
.en-hero-dots {
  position: absolute; bottom: 24px; right: 24px;
  z-index: 2;
  display: flex; gap: 8px;
}
.en-hdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: none;
  cursor: pointer; transition: all .3s;
}
.en-hdot.active {
  background: #e91e63;
  transform: scale(1.3);
}

/* ============================================================
   SECTIONS — shared
============================================================ */
.en-section {
  padding: 90px 0 80px;
}
.en-section:nth-child(even) {
  background: rgba(255,255,255,.02);
}
.en-sec-header {
  text-align: center;
  padding: 0 20px 56px;
  max-width: 700px; margin: 0 auto;
}
.en-sec-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(233,30,99,.12);
  border: 1px solid rgba(233,30,99,.3);
  color: #ff4081;
  padding: 5px 16px; border-radius: 50px;
  font-size: .68rem; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 16px;
}
.en-sec-tag.accent {
  background: rgba(124,58,237,.12);
  border-color: rgba(124,58,237,.3);
  color: #a78bfa;
}
.en-sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 3px; line-height: 1.1;
  margin-bottom: 14px;
}
.en-sec-desc {
  font-size: .92rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* ============================================================
   ABOUT
============================================================ */
.en-about {
  background: var(--dark2, #0d0d1a);
}
.en-about-wrap {
  display: flex; gap: 48px; align-items: flex-start;
  max-width: 960px; margin: 0 auto 60px;
  padding: 0 20px;
}
.en-about-photo {
  position: relative; flex-shrink: 0;
  width: 240px; height: 300px;
  border-radius: 20px; overflow: hidden;
  border: 2px solid rgba(233,30,99,.3);
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
}
.en-about-photo img { width: 100%; height: 100%; object-fit: cover; }
.en-about-photo-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,8,16,.95), transparent);
  padding: 28px 14px 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: .95rem; letter-spacing: 3px;
  color: #ff4081;
  display: flex; align-items: center; gap: 8px;
}
.en-about-text { flex: 1; }
.en-about-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; letter-spacing: 4px;
  background: linear-gradient(135deg, #fff, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.en-about-name span {
  font-size: 1.2rem; letter-spacing: 2px;
  color: rgba(255,255,255,.5);
  -webkit-text-fill-color: rgba(255,255,255,.5);
}
.en-about-bio {
  font-size: .95rem; line-height: 1.85;
  color: rgba(255,255,255,.75);
  margin-bottom: 14px;
}
.en-about-bio strong { color: #fff; }
.en-about-tags {
  display: flex; flex-wrap: wrap; gap: 9px;
  margin-top: 20px;
}
.en-atag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 14px; border-radius: 50px;
  font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.6);
}

/* Credibility Bar */
.en-cred-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  max-width: 860px; margin: 0 auto;
  padding: 32px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
}
.en-cred-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 16px 36px;
  opacity: 0; transform: translateY(14px); transition: all .5s ease;
}
.en-cred-item.en-visible { opacity: 1; transform: none; }
.en-cred-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 2px;
  background: linear-gradient(135deg, #fff, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.en-cred-lbl {
  font-size: .7rem; font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: 1.5px; text-transform: uppercase;
  white-space: nowrap;
}
.en-cred-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.12);
}

/* ============================================================
   SERVICES
============================================================ */
.en-services { background: var(--black); }
.en-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px; margin: 0 auto;
  padding: 0 20px;
}
.en-svc-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: 32px 26px;
  position: relative; overflow: hidden;
  transition: all .3s;
  opacity: 0; transform: translateY(18px);
}
.en-svc-card.en-visible { opacity: 1; transform: none; }
.en-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,.5);
}
.en-svc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.en-svc-badge {
  display: inline-block;
  font-size: .58rem; font-weight: 800; letter-spacing: 2px;
  padding: 3px 10px; border-radius: 50px;
  margin-bottom: 12px;
  background: rgba(233,30,99,.2);
  border: 1px solid rgba(233,30,99,.4);
  color: #ff4081;
}
.en-badge-blue   { background:rgba(2,132,199,.2);  border-color:rgba(2,132,199,.4);  color:#38bdf8; }
.en-badge-gold   { background:rgba(245,158,11,.2);  border-color:rgba(245,158,11,.4);  color:#fbbf24; }
.en-badge-purple { background:rgba(124,58,237,.2);  border-color:rgba(124,58,237,.4);  color:#c4b5fd; }
.en-badge-red    { background:rgba(233,30,99,.2);   border-color:rgba(233,30,99,.4);   color:#ff4081; }
.en-badge-green  { background:rgba(16,185,129,.2);  border-color:rgba(16,185,129,.4);  color:#34d399; }

.en-svc-card h3 {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 10px; color: #fff;
}
.en-svc-card p {
  font-size: .82rem; line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.en-svc-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.en-svc-list li {
  font-size: .78rem; color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 8px;
}
.en-svc-list li i { color: #10b981; font-size: .72rem; }

/* card accent borders */
.en-svc-live    { border-top: 3px solid #e91e63; }
.en-svc-live .en-svc-icon    { background: rgba(233,30,99,.18); color: #ff4081; }
.en-svc-session { border-top: 3px solid #0284c7; }
.en-svc-session .en-svc-icon { background: rgba(2,132,199,.18); color: #38bdf8; }
.en-svc-ost     { border-top: 3px solid #f59e0b; }
.en-svc-ost .en-svc-icon     { background: rgba(245,158,11,.18); color: #fbbf24; }
.en-svc-collab  { border-top: 3px solid #7c3aed; }
.en-svc-collab .en-svc-icon  { background: rgba(124,58,237,.18); color: #c4b5fd; }
.en-svc-event   { border-top: 3px solid #ff6f00; }
.en-svc-event .en-svc-icon   { background: rgba(255,111,0,.18);  color: #fb923c; }
.en-svc-teach   { border-top: 3px solid #10b981; }
.en-svc-teach .en-svc-icon   { background: rgba(16,185,129,.18); color: #34d399; }

/* ============================================================
   GENRES
============================================================ */
.en-genres { background: rgba(255,255,255,.02); }
.en-genre-pills {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  max-width: 860px; margin: 0 auto;
  padding: 0 20px;
}
.en-gpill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 50px;
  font-size: .82rem; font-weight: 600;
  border: 1.5px solid; cursor: default;
  transition: transform .2s;
}
.en-gpill:hover { transform: translateY(-3px); }
.en-gp-red    { background:rgba(233,30,99,.1);  border-color:rgba(233,30,99,.35);  color:#ff4081; }
.en-gp-purple { background:rgba(124,58,237,.1); border-color:rgba(124,58,237,.35); color:#c4b5fd; }
.en-gp-orange { background:rgba(255,111,0,.1);  border-color:rgba(255,111,0,.35);  color:#fb923c; }
.en-gp-blue   { background:rgba(2,132,199,.1);  border-color:rgba(2,132,199,.35);  color:#38bdf8; }
.en-gp-gold   { background:rgba(245,158,11,.1); border-color:rgba(245,158,11,.35); color:#fbbf24; }

/* ============================================================
   WORKS
============================================================ */
.en-works { background: var(--dark2, #0d0d1a); }

/* Featured Work */
.en-featured-work {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; max-width: 960px; margin: 0 auto 56px;
  padding: 0 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,0,0,.2);
  border-top: 3px solid #ff0000;
  border-radius: 20px; overflow: hidden;
}
.en-fw-thumb {
  position: relative; overflow: hidden;
  min-height: 280px;
}
.en-fw-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.en-fw-thumb:hover img { transform: scale(1.05); }
.en-fw-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.35);
  font-size: 3rem; color: #ff0000;
  opacity: 0; transition: opacity .3s;
}
.en-fw-thumb:hover .en-fw-play { opacity: 1; }
.en-fw-label {
  position: absolute; top: 14px; left: 14px;
  background: rgba(233,30,99,.9);
  color: #fff; font-size: .65rem; font-weight: 800;
  letter-spacing: 2px; padding: 4px 12px; border-radius: 50px;
  display: flex; align-items: center; gap: 6px;
}
.en-fw-info {
  padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: center;
}
.en-fw-channel {
  font-size: .72rem; font-weight: 700; color: #ff4444;
  display: flex; align-items: center; gap: 7px;
  margin-bottom: 12px;
}
.en-fw-title {
  font-size: 1.15rem; font-weight: 700; color: #fff;
  margin-bottom: 12px; line-height: 1.4;
}
.en-fw-year {
  font-size: .7rem; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: 2px 8px; border-radius: 50px;
  color: rgba(255,255,255,.6); font-weight: 500;
  vertical-align: middle; margin-left: 6px;
}
.en-fw-desc {
  font-size: .84rem; line-height: 1.75;
  color: rgba(255,255,255,.6); margin-bottom: 16px;
}
.en-fw-desc strong { color: #fff; }
.en-fw-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}
.en-fw-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
  font-size: .7rem; font-weight: 600;
  padding: 5px 12px; border-radius: 50px;
}
.en-btn-yt {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ff0000; color: #fff;
  padding: 11px 22px; border-radius: 50px;
  font-size: .84rem; font-weight: 700;
  transition: all .25s; align-self: flex-start;
}
.en-btn-yt:hover { background: #cc0000; transform: translateY(-2px); }

/* Live Grid */
.en-works-label {
  max-width: 960px; margin: 0 auto 18px;
  padding: 0 20px;
  font-size: .7rem; font-weight: 800; letter-spacing: 3px;
  color: rgba(255,255,255,.4); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.en-live-grid {
  display: grid; grid-template-columns: 1fr 1.4fr 1fr;
  gap: 12px; max-width: 960px; margin: 0 auto;
  padding: 0 20px;
}
.en-live-photo {
  position: relative; border-radius: 14px; overflow: hidden;
  height: 220px;
  opacity: 0; transform: translateY(12px);
  transition: all .4s ease;
}
.en-live-photo.en-visible { opacity: 1; transform: none; }
.en-live-photo.en-live-featured { height: 260px; }
.en-live-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.en-live-photo:hover img { transform: scale(1.06); }
.en-live-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,8,16,.9), transparent);
  padding: 30px 14px 12px;
  display: flex; flex-direction: column; gap: 3px;
}
.en-live-tag {
  display: inline-flex; align-items: center;
  background: rgba(233,30,99,.85); color: #fff;
  font-size: .62rem; font-weight: 800; letter-spacing: 1.5px;
  padding: 3px 10px; border-radius: 50px;
  align-self: flex-start;
}
.en-live-info p {
  font-size: .78rem; color: rgba(255,255,255,.8);
  font-weight: 500; margin: 0;
}

/* ============================================================
   CONTACT
============================================================ */
.en-contact {
  background: #f5f5f7;
  position: relative;
}
.en-contact .en-sec-title { color: #111; }
.en-contact .en-sec-desc  { color: #555; }
.en-contact .en-sec-tag   { background: rgba(233,30,99,.1); border-color: rgba(233,30,99,.3); color: #c2185b; }

/* CTA Banner */
.en-cta-banner {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
  max-width: 960px; margin: 0 auto 48px;
  padding: 36px 36px;
  background: linear-gradient(135deg, #7c3aed, #e91e63);
  border: none;
  border-radius: 22px;
  box-shadow: 0 8px 40px rgba(124,58,237,.3);
}
.en-cta-icon {
  width: 64px; height: 64px; border-radius: 16px; flex-shrink: 0;
  background: rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}
.en-cta-text { flex: 1; min-width: 220px; }
.en-cta-text h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; color: #fff; }
.en-cta-text p { font-size: .85rem; color: rgba(255,255,255,.85); line-height: 1.6; margin: 0; }
.en-cta-main { flex-shrink: 0; }

/* Contact Grid */
.en-contact-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; max-width: 960px; margin: 0 auto 36px;
  padding: 0 20px;
}
.en-cc {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px; border-radius: 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  transition: all .25s;
  opacity: 0; transform: translateY(12px);
}
.en-cc.en-visible { opacity: 1; transform: none; }
.en-cc:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,.12); background: #fafafa; }
.en-cc-ico {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.en-cc-insta  { border-left: 3px solid #e91e63; }
.en-cc-insta .en-cc-ico  { background: rgba(233,30,99,.12); color: #c2185b; }
.en-cc-profile { border-left: 3px solid #ff4081; }
.en-cc-profile .en-cc-ico { background: rgba(255,64,129,.1); color: #e91e63; }
.en-cc-fb     { border-left: 3px solid #1877f2; }
.en-cc-fb .en-cc-ico     { background: rgba(24,119,242,.12); color: #1565c0; }
.en-cc-kakao  { border-left: 3px solid #d4b800; }
.en-cc-kakao .en-cc-ico  { background: rgba(212,184,0,.15); color: #9a7c00; }

.en-cc-body h4 { font-size: .9rem; font-weight: 700; margin-bottom: 3px; color: #111; }
.en-cc-body p  { font-size: .78rem; color: #555; margin-bottom: 6px; }
.en-cc-body span {
  font-size: .72rem; font-weight: 700;
  color: #888;
  display: flex; align-items: center; gap: 5px;
}
.en-cc:hover .en-cc-body span { color: #333; }

.en-contact-note {
  max-width: 700px; margin: 0 auto;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-left: 3px solid #7c3aed;
  border-radius: 12px;
  font-size: .84rem; line-height: 1.8;
  color: #555;
  display: flex; gap: 12px; align-items: flex-start;
}
.en-contact-note i { color: #7c3aed; flex-shrink: 0; margin-top: 3px; }
.en-contact-note strong { color: #111; }

/* ============================================================
   FOOTER
============================================================ */
.en-footer {
  background: rgba(8,8,16,1);
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 60px;
}
.en-foot-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; max-width: 1000px;
  margin: 0 auto; padding: 0 20px 48px;
}
.en-foot-name {
  font-size: .92rem; font-weight: 600;
  color: rgba(255,255,255,.8); margin: 10px 0 4px;
}
.en-foot-sub {
  font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 18px;
}
.en-foot-socials {
  display: flex; gap: 12px;
}
.en-foot-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: .95rem;
  transition: all .25s;
}
.en-foot-socials a:hover {
  background: rgba(233,30,99,.2);
  border-color: rgba(233,30,99,.4);
  color: #ff4081; transform: translateY(-2px);
}
.en-foot-col h5 {
  font-size: .72rem; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 16px;
}
.en-foot-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.en-foot-col ul li {
  font-size: .82rem; color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 8px;
}
.en-foot-col ul li a {
  color: rgba(255,255,255,.5); transition: color .2s;
}
.en-foot-col ul li a:hover { color: #ff4081; }
.en-foot-col ul li i { font-size: .75rem; color: rgba(255,255,255,.3); }

.en-foot-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  max-width: 1000px; margin: 0 auto;
}
.en-foot-bottom p {
  font-size: .75rem; color: rgba(255,255,255,.25); margin: 0;
}
.en-foot-ko {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(124,58,237,.15);
  border: 1px solid rgba(124,58,237,.3);
  color: #a78bfa;
  padding: 5px 14px; border-radius: 50px;
  font-size: .72rem; font-weight: 700;
  transition: all .25s;
}
.en-foot-ko:hover {
  background: rgba(124,58,237,.3); color: #c4b5fd;
}

/* ============================================================
   STICKY CTA (English page)
============================================================ */
.en-sticky-cta {
  position: fixed; bottom: 24px; right: 20px; z-index: 1000;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
  transform: translateY(120px); opacity: 0; transition: all .3s;
}
.en-sticky-cta.visible { transform: translateY(0); opacity: 1; }
.en-scta-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 50px;
  font-size: .83rem; font-weight: 700; color: #fff;
  white-space: nowrap; transition: all .25s;
}
.en-scta-book {
  background: linear-gradient(135deg, #e91e63, #ff4081);
  box-shadow: 0 8px 28px rgba(233,30,99,.45);
}
.en-scta-book:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(233,30,99,.6); }
.en-scta-dm {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  box-shadow: 0 8px 28px rgba(124,58,237,.4);
}
.en-scta-dm:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(124,58,237,.55); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 960px) {
  .en-services-grid { grid-template-columns: repeat(2, 1fr); }
  .en-featured-work { grid-template-columns: 1fr; }
  .en-fw-thumb { min-height: 240px; }
  .en-live-grid { grid-template-columns: 1fr; }
  .en-live-photo, .en-live-photo.en-live-featured { height: 220px; }
  .en-foot-inner { grid-template-columns: 1fr 1fr; }
  .en-foot-brand { grid-column: 1 / -1; }
  .en-cred-divider { display: none; }
  .en-cred-bar { gap: 4px; }
  .en-cred-item { padding: 12px 20px; }
}
@media (max-width: 680px) {
  .en-about-wrap { flex-direction: column; align-items: center; }
  .en-about-photo { width: 200px; height: 250px; }
  .en-services-grid { grid-template-columns: 1fr; }
  .en-contact-grid { grid-template-columns: 1fr; }
  .en-cta-banner { flex-direction: column; text-align: center; }
  .en-cta-icon { align-self: center; }
  .en-cta-main { align-self: stretch; justify-content: center; }
  .en-foot-inner { grid-template-columns: 1fr; gap: 28px; }
  .lang-note { display: none; }
  .en-hero-title .en-name { font-size: 3rem; }
  .en-sticky-cta { bottom: 16px; right: 12px; }
  .en-scta-btn { padding: 10px 16px; font-size: .78rem; }
}
@media (max-width: 480px) {
  .en-live-grid { grid-template-columns: 1fr; }
  .en-genre-pills { gap: 8px; }
  .en-gpill { font-size: .76rem; padding: 8px 14px; }
}
