/* ═══════════════════════════════════════════════════════════════════
   COASTAL KEY PROPERTY MANAGEMENT — INSTITUTIONAL STYLESHEET v2.0
   Design: Hyper-luxury through restraint. Navy + Gold authority.
   Typography: Playfair Display + Cormorant Garamond + DM Sans
═══════════════════════════════════════════════════════════════════ */

:root {
  --navy: #1B387F;
  --navy-deep: #0F1D3A;
  --navy-darker: #080E1F;
  --navy-mid: #1e3f8f;
  --gold: #C9A84C;
  --gold-light: #dfc07a;
  --gold-pale: #f0e4c4;
  --white: #FFFFFF;
  --off-white: #F8F8F6;
  --gray-light: #F4F5F7;
  --gray-mid: #E2E4E9;
  --gray-text: #8A8FA0;
  --text-dark: #1A1D2E;
  --text-body: #3A3D4E;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --section-py: clamp(5rem, 10vw, 8rem);
  --radius: 6px;
  --radius-lg: 14px;
  --shadow: 0 2px 24px rgba(27,56,127,0.08);
  --shadow-lift: 0 12px 48px rgba(27,56,127,0.14);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.25);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--white); line-height: 1.72; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────── */
.label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.label--light { color: var(--gold-light); }

.heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1.18;
  letter-spacing: -0.015em;
}
.heading--light { color: var(--white); }

.section-header { text-align: center; max-width: 660px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.95em 2.2em; border-radius: var(--radius);
  transition: all 0.4s var(--ease); cursor: pointer; border: none; position: relative; overflow: hidden;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #B8933D 100%);
  color: var(--white); box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.45); }
.btn--ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.35); backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn--outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy); 
}
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--gold-outline {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--gold-outline:hover { background: var(--gold); color: var(--white); }
.btn--full { width: 100%; }
.btn--sm { padding: 0.7em 1.6em; font-size: 0.75rem; }

/* ── REVEAL ANIMATIONS ─────────────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }
.d1 { transition-delay: 0.12s; } .d2 { transition-delay: 0.24s; } .d3 { transition-delay: 0.36s; }

/* ── NAVIGATION ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(15,29,58,0.96); backdrop-filter: blur(16px) saturate(180%);
  padding: 0.6rem 0; box-shadow: 0 1px 0 rgba(201,168,76,0.1);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.nav__logo { display: flex; align-items: center; gap: 0.6rem; }
.nav__logo-img { height: 28px; width: auto; }
.nav__logo-text { font-family: var(--font-accent); font-size: 1.15rem; font-weight: 500; color: var(--white); letter-spacing: 0.04em; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__link { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.75); letter-spacing: 0.04em; transition: color 0.3s; }
.nav__link:hover { color: var(--gold-light); }
.nav__cta-link {
  font-size: 0.72rem; font-weight: 600; color: var(--white);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.6em 1.5em; border: 1px solid var(--gold);
  border-radius: var(--radius); transition: all 0.3s;
}
.nav__cta-link:hover { background: var(--gold); color: var(--white); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 1px; }

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--navy-darker); padding: 5rem 2rem 2rem;
    transition: right 0.4s var(--ease-out); z-index: 999;
  }
  .nav__links.open { right: 0; }
  .nav__link, .nav__cta-link { padding: 0.8rem 0; font-size: 0.9rem; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* ── HERO ──────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transform: scale(1.05); animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,29,58,0.55) 0%, rgba(15,29,58,0.75) 60%, rgba(15,29,58,0.92) 100%); }
.hero__content { position: relative; z-index: 1; text-align: center; max-width: 780px; padding: 0 var(--gutter); }
.hero__eyebrow { font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.hero__headline { font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 600; color: var(--white); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 1.4rem; }
.hero__subhead { font-family: var(--font-accent); font-size: clamp(1.05rem, 2vw, 1.28rem); font-weight: 300; color: rgba(255,255,255,0.78); line-height: 1.65; margin-bottom: 2.2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); }
.hero__scroll-line { display: block; width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── TRUST BAR ─────────────────────────────────────────────────── */
.trust { background: var(--navy-darker); border-top: 1px solid rgba(201,168,76,0.12); border-bottom: 1px solid rgba(201,168,76,0.12); padding: 1.1rem 0; }
.trust__inner { display: flex; align-items: center; gap: 2rem; justify-content: center; }
.trust__badge img { border-radius: 50%; box-shadow: 0 0 24px rgba(201,168,76,0.2); }
.trust__items { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.trust__item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.trust__label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.1rem; }
.trust__value { font-family: var(--font-accent); font-size: 0.92rem; color: rgba(255,255,255,0.75); }
.trust__sep { width: 1px; height: 26px; background: rgba(201,168,76,0.2); }
@media (max-width: 640px) { .trust__inner { flex-direction: column; gap: 0.8rem; } .trust__sep { display: none; } }

/* ── VIDEO SECTION ─────────────────────────────────────────────── */
.video-section { padding: var(--section-py) 0; background: var(--off-white); }
.video-section__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: center; }
.video-section__text p { margin-bottom: 1.5rem; }
.video-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-deep); position: relative; background: var(--navy-deep); }
.video-frame video { width: 100%; display: block; aspect-ratio: 16/9; }
@media (max-width: 768px) { .video-section__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ── PROBLEM ───────────────────────────────────────────────────── */
.problem { padding: var(--section-py) 0; }
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.problem__img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); width: 100%; }
.problem__text-col p { margin-bottom: 1rem; }
.problem__text-col .btn { margin-top: 0.5rem; }
@media (max-width: 768px) { .problem__grid { grid-template-columns: 1fr; } }

/* ── SERVICES ──────────────────────────────────────────────────── */
.services { position: relative; padding: var(--section-py) 0; background: var(--navy-deep); overflow: hidden; }
.services__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.services__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.12; }
.services__container { position: relative; z-index: 1; }
.services__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.svc {
  background: rgba(255,255,255,0.04); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.12); border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem; transition: all 0.4s var(--ease);
}
.svc:hover { background: rgba(255,255,255,0.07); border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.svc__icon { margin-bottom: 1.2rem; }
.svc__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--white); margin-bottom: 0.8rem; line-height: 1.3; }
.svc__body { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 1.2rem; }
.svc__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.svc__tags span { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); padding: 0.3em 0.8em; border: 1px solid rgba(201,168,76,0.25); border-radius: 3px; }
@media (max-width: 768px) { .services__cards { grid-template-columns: 1fr; } }

/* ── DASHBOARD ─────────────────────────────────────────────────── */
.dashboard { padding: var(--section-py) 0; background: var(--gray-light); }
.dashboard__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3.5rem; align-items: center; }
.dashboard__text p { margin-bottom: 1.2rem; }
.dashboard__features { list-style: none; padding: 0; }
.dashboard__features li { position: relative; padding-left: 1.2rem; margin-bottom: 0.6rem; font-size: 0.9rem; color: var(--text-body); }
.dashboard__features li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.dashboard__visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-deep); }
.dashboard__visual img { width: 100%; }
@media (max-width: 768px) { .dashboard__grid { grid-template-columns: 1fr; } }

/* ── PILLARS ───────────────────────────────────────────────────── */
.pillars { padding: var(--section-py) 0; background: var(--white); }
.pillars__sub { font-size: 1rem; color: var(--text-body); line-height: 1.7; max-width: 600px; margin: 0.5rem auto 0; }
.pillars__img { max-width: 920px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); }
.pillars__img img { width: 100%; }

/* ── AI TECHNOLOGY ─────────────────────────────────────────────── */
.tech { padding: var(--section-py) 0; background: var(--off-white); }
.tech__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3.5rem; align-items: center; }
.tech__visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-deep); }
.tech__visual img { width: 100%; }
.tech__text p { margin-bottom: 1.5rem; }
.tech__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.tech__stat { text-align: center; padding: 1.2rem 0.5rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-mid); }
.tech__stat-num { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--navy); line-height: 1.2; }
.tech__stat-num small { font-size: 0.7em; font-weight: 400; }
.tech__stat-label { display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 0.25rem; }
.tech__stat-note { display: block; font-size: 0.7rem; color: var(--gray-text); margin-top: 0.15rem; }
@media (max-width: 768px) { .tech__grid { grid-template-columns: 1fr; } .tech__stats { grid-template-columns: repeat(3, 1fr); } }

/* ── OUTCOMES ──────────────────────────────────────────────────── */
.outcomes { padding: var(--section-py) 0; background: var(--navy-deep); }
.outcomes__img { max-width: 880px; margin: 0 auto 2.5rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.35); }
.outcomes__img img { width: 100%; }
.outcomes__cta { text-align: center; }
.outcomes__cta p { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-bottom: 1.2rem; letter-spacing: 0.03em; }

/* ── WHY COASTAL KEY ───────────────────────────────────────────── */
.why { padding: var(--section-py) 0; }
.why__band { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: clamp(2.5rem, 5vw, 4rem); height: 280px; }
.why__band-img { width: 100%; height: 100%; object-fit: cover; }
.why__band-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,29,58,0.8), rgba(27,56,127,0.7)); }
.why__band-quote { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 2rem var(--gutter); }
.why__band-quote blockquote { font-family: var(--font-accent); font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 300; font-style: italic; color: var(--white); text-align: center; max-width: 700px; line-height: 1.6; }
.why__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why__col { padding: 2rem 1.5rem; border-top: 3px solid var(--gold); background: var(--gray-light); border-radius: 0 0 var(--radius) var(--radius); }
.why__num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: rgba(27,56,127,0.12); margin-bottom: 0.5rem; }
.why__col h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--navy-deep); margin-bottom: 0.7rem; }
.why__col p { font-size: 0.9rem; color: var(--text-body); line-height: 1.65; }
@media (max-width: 768px) { .why__cols { grid-template-columns: 1fr; } }

/* ── LEADERSHIP ────────────────────────────────────────────────── */
.leadership { padding: var(--section-py) 0; background: var(--gray-light); }
.leader { display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: start; margin-bottom: 2rem; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.leader--dark { background: var(--navy-deep); color: var(--white); }
.leader--dark .leader__role { color: var(--gold-light); }
.leader--dark p, .leader--dark blockquote { color: rgba(255,255,255,0.75); }
.leader--dark cite { color: var(--gold); }
.leader__photo { width: 300px; min-height: 100%; }
.leader__photo img { width: 100%; height: 100%; object-fit: cover; }
.leader__bio { padding: 2.5rem 2.5rem 2.5rem 0; }
.leader__bio h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--navy-deep); margin-bottom: 0.3rem; }
.leader--dark .leader__bio h3 { color: var(--white); }
.leader__role { font-size: 0.78rem; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.3rem; }
.leader__lic { font-size: 0.72rem; color: var(--gray-text); margin-bottom: 1rem; }
.leader__bio p { margin-bottom: 1rem; font-size: 0.92rem; line-height: 1.65; }
.leader__bio blockquote { font-family: var(--font-accent); font-size: 1.05rem; font-style: italic; line-height: 1.6; margin-bottom: 1rem; border-left: 3px solid var(--gold); padding-left: 1.2rem; }
.leader__bio cite { display: block; font-style: normal; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-top: 0.5rem; }
.leader__stats { display: flex; gap: 2rem; margin-top: 1.5rem; }
.stat { text-align: center; }
.stat__num { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--gold); }
.stat__lbl { display: block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
@media (max-width: 768px) {
  .leader { grid-template-columns: 1fr; }
  .leader__photo { width: 100%; height: 280px; }
  .leader__bio { padding: 1.5rem; }
}

/* ── INVESTORS ─────────────────────────────────────────────────── */
.investors { padding: var(--section-py) 0; background: var(--navy-deep); }
.investors__grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 3rem; align-items: start; }
.investors__col h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--white); margin-bottom: 1rem; }
.investors__col p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 1.5rem; }
.investors__div { width: 1px; height: 100%; background: rgba(201,168,76,0.2); }
@media (max-width: 768px) { .investors__grid { grid-template-columns: 1fr; } .investors__div { width: 100%; height: 1px; } }

/* ── CONTACT ───────────────────────────────────────────────────── */
.contact { padding: var(--section-py) 0; background: var(--off-white); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact__text p { margin-bottom: 1.5rem; }
.contact__info { display: flex; flex-direction: column; gap: 0.6rem; }
.contact__info a, .contact__info span { font-size: 0.88rem; color: var(--text-body); transition: color 0.3s; }
.contact__info a:hover { color: var(--gold); }
.contact__form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-lift); border: 1px solid var(--gray-mid); }
.fg { margin-bottom: 1.2rem; }
.fg label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.4rem; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 0.85rem 1rem; font-family: var(--font-body); font-size: 0.9rem;
  border: 1px solid var(--gray-mid); border-radius: var(--radius); background: var(--gray-light);
  color: var(--text-dark); transition: border-color 0.3s, box-shadow 0.3s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.72rem; color: var(--gray-text); text-align: center; margin-top: 0.8rem; }
@media (max-width: 768px) { .contact__grid { grid-template-columns: 1fr; } }

/* ── FOOTER ────────────────────────────────────────────────────── */
.footer { background: var(--navy-darker); padding: 3.5rem 0 1.5rem; color: rgba(255,255,255,0.5); }
.footer__top { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 2rem; align-items: start; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer__tagline-sm { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 0.5rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; }
.footer__nav a { font-size: 0.78rem; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer__nav a:hover { color: var(--gold-light); }
.footer__lic { text-align: right; font-size: 0.72rem; line-height: 1.6; }
.footer__lic strong { color: rgba(255,255,255,0.7); }
.footer__lic-sep { margin-top: 0.6rem; }
.footer__mid { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 0; flex-wrap: wrap; gap: 1rem; }
.footer__social { display: flex; gap: 0.6rem; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.footer__social a:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,168,76,0.06); transform: translateY(-2px); }
.footer__nhwa { display: flex; align-items: center; gap: 0.7rem; }
.footer__nhwa img { border-radius: 50%; opacity: 0.85; }
.footer__nhwa span { font-size: 0.68rem; color: rgba(255,255,255,0.4); }
.footer__bottom { text-align: center; padding-top: 1.5rem; }
.footer__bottom p { font-size: 0.72rem; line-height: 1.8; color: rgba(255,255,255,0.35); }
.footer__bottom a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer__bottom a:hover { color: var(--gold-light); }

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr; text-align: center; }
  .footer__lic { text-align: center; }
  .footer__nav { justify-content: center; }
  .footer__mid { justify-content: center; flex-direction: column; }
}
