/* ══════════════════════════════════════
   THE AERIN HOTEL & RESORT
   Paradise Hotel Busan Style Redesign
   ══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&family=Noto+Sans+KR:wght@300;400;500&display=swap');

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

:root {
  --gold: #9C836A;
  --gold-hover: #B49A7E;
  --dark: #191919;
  --dark-bg: #2C2B29;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-tertiary: #999999;
  --border: #E6E3DF;
  --border-dark: #CCCCCC;
  --white: #FFFFFF;
  --error: #E66045;
  --bg-light: #F8F7F5;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-en: 'Roboto', sans-serif;
  --font-kr: 'Noto Sans KR', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-kr);
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ═══ NAVIGATION - Dark Fixed Header ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--dark);
  transition: all 0.4s ease;
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-brand {
  font-family: var(--font-en); font-weight: 500; font-size: 1.375rem;
  color: var(--white); letter-spacing: 0.2em; text-transform: uppercase;
}
.nav-brand small {
  display: block; font-family: var(--font-en); font-size: 0.5625rem;
  letter-spacing: 0.25em; font-weight: 300; opacity: 0.5; margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-link {
  padding: 8px 22px; font-family: var(--font-en); font-size: 0.8125rem; font-weight: 400;
  color: rgba(255,255,255,0.7); letter-spacing: 0.08em; text-transform: uppercase;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-link.active { color: var(--gold); }
.nav-cta {
  margin-left: 20px; padding: 10px 28px;
  background: var(--gold); color: var(--white);
  font-family: var(--font-en); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all var(--transition); border: none; cursor: pointer;
}
.nav-cta:hover { background: var(--gold-hover); }

.nav-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; align-items: center; justify-content: center;
}
.nav-mobile-toggle svg { width: 24px; height: 24px; color: var(--white); }
.nav-mobile {
  display: none; position: fixed; top: 80px; left: 0; right: 0;
  background: var(--dark); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; z-index: 99;
}
.nav-mobile.open { display: flex; flex-direction: column; }
.nav-mobile .nav-link {
  color: rgba(255,255,255,0.7); padding: 14px 40px; font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-mobile .nav-link:hover { color: var(--gold); background: rgba(255,255,255,0.03); }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-inner { padding: 0 20px; height: 64px; }
  .nav-mobile { top: 64px; }
}

/* ═══ HERO SLIDER - Paradise Style ═══ */
.hero-slider {
  position: relative; width: 100%; height: 100vh; min-height: 700px;
  overflow: hidden; background: var(--dark);
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-slide.active .hero-slide-bg {
  animation: kenBurns 15s ease forwards;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
.hero-slide-content {
  position: absolute; z-index: 2; color: var(--white);
  bottom: 200px; left: 80px; max-width: 600px;
}
.hero-slide-content h2 {
  font-family: var(--font-en); font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.15;
  letter-spacing: 0.02em; margin-bottom: 16px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero-slide-content p {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.8);
  line-height: 1.8; text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

/* Hero Controls */
.hero-controls {
  position: absolute; bottom: 60px; left: 80px; z-index: 10;
  display: flex; align-items: center; gap: 24px;
}
.hero-arrows {
  display: flex; gap: 8px;
}
.hero-arrow {
  width: 48px; height: 48px; border: 1px solid rgba(255,255,255,0.4);
  background: transparent; color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); font-size: 1.125rem;
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); }
.hero-pagination {
  display: flex; align-items: center; gap: 16px;
}
.hero-page-item {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  color: rgba(255,255,255,0.4); font-family: var(--font-en);
  font-size: 0.8125rem; font-weight: 300; letter-spacing: 0.05em;
  transition: color var(--transition);
}
.hero-page-item.active { color: var(--white); }
.hero-page-item .progress-ring {
  width: 24px; height: 24px; transform: rotate(-90deg);
}
.hero-page-item .progress-ring circle {
  fill: none; stroke-width: 2;
}
.hero-page-item .progress-ring .bg { stroke: rgba(255,255,255,0.2); }
.hero-page-item .progress-ring .fg {
  stroke: var(--gold); stroke-dasharray: 62.83; stroke-dashoffset: 62.83;
  transition: stroke-dashoffset 0.3s ease;
}
.hero-page-item.active .progress-ring .fg {
  animation: progressFill 7s linear forwards;
}
@keyframes progressFill {
  0% { stroke-dashoffset: 62.83; }
  100% { stroke-dashoffset: 0; }
}
.hero-play-btn {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.4);
  background: transparent; color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); font-size: 0.875rem;
  margin-left: 8px;
}
.hero-play-btn:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 768px) {
  .hero-slider { min-height: 500px; }
  .hero-slide-content { bottom: 160px; left: 24px; right: 24px; }
  .hero-controls { left: 24px; bottom: 30px; gap: 16px; flex-wrap: wrap; }
  .hero-arrow { width: 40px; height: 40px; }
}

/* ═══ BOOKING BAR - Overlapping Hero ═══ */
.booking-bar-wrapper {
  position: relative; z-index: 20; margin-top: -50px;
  padding: 0 40px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.booking-bar {
  background: var(--white); padding: 28px 40px;
  display: flex; align-items: flex-end; gap: 20px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.booking-field { flex: 1; }
.booking-label {
  display: block; font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary);
  margin-bottom: 8px; font-family: var(--font-en);
}
.booking-input {
  width: 100%; padding: 10px 0; border: none; border-bottom: 1px solid var(--border);
  font-family: var(--font-kr); font-size: 0.9375rem; color: var(--text-primary);
  background: transparent; outline: none; transition: border-color var(--transition);
}
.booking-input:focus { border-color: var(--gold); }
.booking-btn {
  padding: 14px 48px; background: var(--dark); color: var(--white);
  font-family: var(--font-kr); font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.05em; border: none; cursor: pointer; white-space: nowrap;
  transition: all var(--transition);
}
.booking-btn:hover { background: var(--gold); }
@media (max-width: 768px) {
  .booking-bar-wrapper { padding: 0 20px; margin-top: -30px; }
  .booking-bar { flex-direction: column; padding: 24px; gap: 16px; }
  .booking-btn { width: 100%; text-align: center; }
}

/* ═══ SECTIONS ═══ */
.section { padding: 100px 0; }
.section-light { background: var(--bg-light); }

.section-eyebrow {
  font-family: var(--font-en); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 500;
}
.section-title {
  font-family: var(--font-kr); font-weight: 300;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text-primary); line-height: 1.3; margin-bottom: 16px;
}
.section-title strong { font-weight: 500; }
.section-desc {
  font-size: 0.9375rem; color: var(--text-secondary); max-width: 520px;
  line-height: 1.9; font-weight: 300;
}
.section-line {
  width: 40px; height: 2px; background: var(--gold); margin: 24px 0;
}
.section-line-center {
  width: 40px; height: 2px; background: var(--gold); margin: 24px auto;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* ═══ SPECIAL OFFERS - 4 Column Grid ═══ */
.offers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 1024px) { .offers-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .offers-grid { grid-template-columns: 1fr; } }

.offer-card {
  background: var(--white); overflow: hidden;
  border: 1px solid var(--border); transition: all var(--transition);
}
.offer-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.offer-card-img {
  height: 240px; overflow: hidden; position: relative;
}
.offer-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.offer-card:hover .offer-card-img img { transform: scale(1.08); }
.offer-card-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--white);
  font-family: var(--font-en); font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.05em; padding: 4px 12px; z-index: 2;
}
.offer-card-body { padding: 24px; }
.offer-card-title {
  font-size: 1.0625rem; font-weight: 500; color: var(--text-primary);
  margin-bottom: 8px;
}
.offer-card-desc {
  font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.7;
  font-weight: 300; margin-bottom: 16px;
}
.offer-card-price {
  font-family: var(--font-en); font-size: 1.25rem; color: var(--gold); font-weight: 500;
}
.offer-card-price small {
  font-size: 0.75rem; color: var(--text-tertiary); font-weight: 300; margin-left: 4px;
}

/* ═══ FACILITIES HIGHLIGHT GRID ═══ */
.facility-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
@media (max-width: 1024px) { .facility-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .facility-grid { grid-template-columns: 1fr; } }

.facility-card {
  position: relative; overflow: hidden; height: 380px; cursor: pointer;
}
.facility-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.facility-card:hover img { transform: scale(1.08); }
.facility-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.6));
}
.facility-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px; z-index: 1; color: var(--white);
}
.facility-card-label {
  font-family: var(--font-en); font-size: 0.6875rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-hover); margin-bottom: 6px; font-weight: 400;
}
.facility-card-name {
  font-size: 1.25rem; font-weight: 400;
}

/* ═══ EDITORIAL LAYOUT (Dining on Home) ═══ */
.editorial {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 500px;
}
.editorial.reverse { direction: rtl; }
.editorial.reverse > * { direction: ltr; }
.editorial-text {
  padding: 80px 64px; display: flex; flex-direction: column; justify-content: center;
  background: var(--bg-light);
}
.editorial-image {
  overflow: hidden; position: relative;
}
.editorial-image img {
  width: 100%; height: 100%; object-fit: cover; min-height: 400px;
  transition: transform 1s ease;
}
.editorial:hover .editorial-image img { transform: scale(1.04); }
@media (max-width: 768px) {
  .editorial, .editorial.reverse { grid-template-columns: 1fr; direction: ltr; }
  .editorial > * { direction: ltr; }
  .editorial-text { padding: 48px 24px; order: 2; }
  .editorial-image { order: 1; }
  .editorial-image img { min-height: 280px; max-height: 360px; }
}

/* ═══ GALLERY GRID ═══ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px; gap: 4px;
}
.gallery-grid .g-wide { grid-column: span 2; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-grid .g-wide { grid-column: span 1; }
}
.gallery-item { overflow: hidden; cursor: pointer; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ═══ PAGE HERO (Subpages) ═══ */
.page-hero {
  position: relative; height: 55vh; min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: kenBurnsSlow 20s ease forwards;
}
@keyframes kenBurnsSlow {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
}
.page-hero-content {
  position: relative; z-index: 2; color: var(--white);
}
.page-hero-eyebrow {
  font-family: var(--font-en); font-size: 0.8125rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-hover); margin-bottom: 16px; font-weight: 400;
}
.page-hero h1 {
  font-family: var(--font-kr); font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 12px;
  letter-spacing: 0.05em; line-height: 1.2;
}
.page-hero p {
  font-size: 1rem; color: rgba(255,255,255,0.7); font-weight: 300;
  max-width: 480px; margin: 0 auto; line-height: 1.8;
}

/* ═══ ROOM CARDS - Paradise Style ═══ */
.room-card {
  display: grid; grid-template-columns: 55% 45%; gap: 0;
  margin-bottom: 2px; min-height: 480px; background: var(--white);
}
.room-card.reverse { grid-template-columns: 45% 55%; }
.room-card-img {
  overflow: hidden; position: relative;
}
.room-card-img img {
  width: 100%; height: 100%; object-fit: cover; min-height: 400px;
  transition: transform 1s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.04); }
.room-card-content {
  padding: 60px 56px; display: flex; flex-direction: column; justify-content: center;
}
.room-card-type {
  font-family: var(--font-en); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; font-weight: 500;
}
.room-card-name {
  font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 300;
  color: var(--text-primary); margin-bottom: 16px; line-height: 1.3;
}
.room-card-desc {
  font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.9;
  font-weight: 300; margin-bottom: 24px;
}
.room-meta {
  display: flex; gap: 28px; margin-bottom: 24px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.room-meta-item label {
  display: block; font-family: var(--font-en); font-size: 0.625rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-tertiary); margin-bottom: 4px;
}
.room-meta-item span {
  font-size: 0.9375rem; color: var(--text-primary); font-weight: 400;
}
.room-price {
  font-family: var(--font-en); font-size: 1.5rem; color: var(--gold); font-weight: 500;
}
.room-price small {
  font-family: var(--font-kr); font-size: 0.75rem; color: var(--text-tertiary);
  font-weight: 300; margin-left: 4px;
}
@media (max-width: 768px) {
  .room-card, .room-card.reverse { grid-template-columns: 1fr; }
  .room-card-content { padding: 36px 24px; }
  .room-card-img img { min-height: 260px; max-height: 340px; }
  .room-meta { gap: 16px; flex-wrap: wrap; }
}

/* ═══ DINING CARDS ═══ */
.dining-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  min-height: 440px; margin-bottom: 2px;
}
.dining-card.reverse { direction: rtl; }
.dining-card.reverse > * { direction: ltr; }
.dining-card-img {
  overflow: hidden;
}
.dining-card-img img {
  width: 100%; height: 100%; object-fit: cover; min-height: 380px;
  transition: transform 1s ease;
}
.dining-card:hover .dining-card-img img { transform: scale(1.04); }
.dining-card-content {
  padding: 56px; display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.dining-card-label {
  font-family: var(--font-en); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; font-weight: 500;
}
.dining-card-name {
  font-size: clamp(1.375rem, 2vw, 1.75rem); font-weight: 300;
  color: var(--text-primary); margin-bottom: 12px; line-height: 1.3;
}
.dining-card-desc {
  font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.9;
  font-weight: 300; margin-bottom: 20px;
}
.dining-info {
  font-size: 0.8125rem; color: var(--text-secondary); line-height: 2;
  border-top: 1px solid var(--border); padding-top: 20px;
}
.dining-info strong {
  color: var(--text-primary); font-weight: 500; display: inline-block; min-width: 60px;
}
@media (max-width: 768px) {
  .dining-card, .dining-card.reverse { grid-template-columns: 1fr; direction: ltr; }
  .dining-card > * { direction: ltr; }
  .dining-card-content { padding: 36px 24px; }
  .dining-card-img img { min-height: 240px; max-height: 320px; }
}

/* ═══ SPLIT (Facility detail) ═══ */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
@media (max-width: 768px) { .split { grid-template-columns: 1fr; } }
.split-img { overflow: hidden; }
.split-img img {
  width: 100%; height: 100%; object-fit: cover; min-height: 380px;
  transition: transform 1s ease;
}
.split:hover .split-img img { transform: scale(1.04); }
.split-content {
  padding: 64px; display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
@media (max-width: 768px) { .split-content { padding: 36px 24px; } }

/* ═══ INFO BOX ═══ */
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); margin-top: 24px;
}
.info-box {
  background: var(--bg-light); padding: 20px; text-align: center;
}
.info-box-label {
  font-family: var(--font-en); font-size: 0.625rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 500;
}
.info-box-value {
  font-size: 0.9375rem; color: var(--text-primary); font-weight: 400;
}

/* ═══ AMENITY GRID ═══ */
.amenity-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--border); border-left: 1px solid var(--border);
}
.amenity-item {
  padding: 48px 32px; text-align: center;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: background 0.4s ease;
}
.amenity-item:hover { background: var(--bg-light); }
.amenity-icon {
  width: 48px; height: 48px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.amenity-name {
  font-size: 0.875rem; font-weight: 400; color: var(--text-primary);
}
@media (max-width: 768px) { .amenity-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .amenity-grid { grid-template-columns: 1fr; } }

/* ═══ BUTTONS ═══ */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 40px; background: var(--gold); color: var(--white);
  font-family: var(--font-kr); font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.05em; transition: all var(--transition); border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-hover); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 36px; background: transparent; color: var(--text-primary);
  border: 1px solid var(--text-primary);
  font-family: var(--font-kr); font-size: 0.8125rem; font-weight: 400;
  letter-spacing: 0.05em; transition: all var(--transition); cursor: pointer;
}
.btn-outline:hover { background: var(--text-primary); color: var(--white); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 40px; background: var(--dark); color: var(--white);
  font-family: var(--font-kr); font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.05em; transition: all var(--transition); border: none; cursor: pointer;
}
.btn-dark:hover { background: var(--gold); }
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 36px; background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--font-kr); font-size: 0.8125rem; font-weight: 400;
  letter-spacing: 0.05em; transition: all var(--transition); cursor: pointer;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

/* ═══ QUOTE BLOCK ═══ */
.quote-block {
  text-align: center; padding: 100px 24px;
  background: var(--bg-light);
}
.quote-text {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300; color: var(--text-primary);
  line-height: 1.7; max-width: 600px; margin: 0 auto 16px;
}
.quote-author {
  font-family: var(--font-en); font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-tertiary); font-weight: 400;
}

/* ═══ CTA SECTION ═══ */
.cta-section {
  padding: 120px 0; background: var(--dark); text-align: center; color: var(--white);
}
.cta-eyebrow {
  font-family: var(--font-en); font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 400;
}
.cta-title {
  font-weight: 300; font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--white); margin-bottom: 16px; line-height: 1.3;
}
.cta-title em { font-style: normal; color: var(--gold); }
.cta-desc {
  font-size: 0.9375rem; color: rgba(255,255,255,0.4);
  font-weight: 300; margin-bottom: 40px;
}

/* ═══ FOOTER - Dark Multi Column ═══ */
.footer {
  background: var(--dark); padding: 80px 0 40px;
  color: rgba(255,255,255,0.4);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand-name {
  font-family: var(--font-en); font-size: 1.375rem; font-weight: 500;
  color: var(--white); margin-bottom: 16px; letter-spacing: 0.15em;
}
.footer-brand-desc {
  font-size: 0.8125rem; line-height: 2; font-weight: 300;
}
.footer-col h4 {
  font-family: var(--font-en); color: var(--gold);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 0.8125rem; padding: 5px 0; font-weight: 300;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 32px; display: flex; justify-content: space-between;
  font-size: 0.6875rem; letter-spacing: 0.05em;
}
@media (max-width: 640px) { .footer-bottom { flex-direction: column; gap: 8px; } }

/* ═══ FORM ═══ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  display: block; font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary);
  margin-bottom: 8px; font-family: var(--font-en);
}
.form-input, .form-textarea {
  width: 100%; padding: 12px 0; border: none; border-bottom: 1px solid var(--border);
  font-family: var(--font-kr); font-size: 0.9375rem; color: var(--text-primary);
  background: transparent; outline: none; transition: border-color var(--transition);
  font-weight: 300;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-tertiary); }
.form-textarea {
  resize: vertical; min-height: 120px;
  border: 1px solid var(--border); padding: 16px; margin-top: 4px;
}

/* ═══ CONTACT GRID ═══ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-info-block {
  background: var(--bg-light); border: 1px solid var(--border); padding: 40px;
  margin-bottom: 20px;
}
.contact-info-label {
  font-family: var(--font-en); font-size: 0.6875rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px; font-weight: 500;
}
.contact-info-value {
  font-size: 1.125rem; font-weight: 400; color: var(--text-primary);
}
.contact-info-sub {
  font-size: 0.8125rem; color: var(--text-tertiary); margin-top: 4px; font-weight: 300;
}

/* ═══ FULL BLEED ═══ */
.fullbleed {
  width: 100%; position: relative; overflow: hidden;
}
.fullbleed img {
  width: 100%; height: 50vh; min-height: 300px; max-height: 500px;
  object-fit: cover;
}
.fullbleed-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
}
.fullbleed-text {
  color: var(--white); text-align: center; padding: 24px;
}
.fullbleed-text h2 {
  font-family: var(--font-en); font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300; letter-spacing: 0.1em;
}

/* ═══ SCROLL ANIMATIONS ═══ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
