/* The Care - Premium Cleaning Service */

:root {
  --navy: #0a1f3d;
  --navy-deep: #050f24;
  --navy-light: #14315a;
  --black: #000000;
  --black-soft: #0a0a0a;
  --gold: #c9a96e;
  --gold-light: #e3c88a;
  --gold-dark: #a08144;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --gray-soft: #e8e6e1;
  --gray-text: #6b6b6b;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--off-white);
  color: var(--navy-deep);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.font-serif-en {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.02em;
}

.font-serif-kr {
  font-family: 'Noto Serif KR', serif;
}

/* Color Utilities */
.bg-navy { background-color: var(--navy); }
.bg-navy-deep { background-color: var(--navy-deep); }
.bg-black-soft { background-color: var(--black-soft); }
.bg-gold { background-color: var(--gold); }
.bg-off-white { background-color: var(--off-white); }
.text-navy { color: var(--navy); }
.text-navy-deep { color: var(--navy-deep); }
.text-gold { color: var(--gold); }
.text-gold-light { color: var(--gold-light); }
.text-off-white { color: var(--off-white); }
.border-gold { border-color: var(--gold); }

/* Gold Gradient Text */
.gold-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Navy Gradient Backgrounds */
.bg-navy-gradient {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-light) 100%);
}

.bg-luxury-dark {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--black-soft) 100%);
}

/* Hero Section - Split Layout (Left Navy Panel + Right Luxury Image) */
.hero-split {
  position: relative;
  min-height: 100vh;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

@media (max-width: 1023px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
  }
}

/* Left Panel - Navy */
.hero-panel {
  position: relative;
  background: linear-gradient(135deg, #050f24 0%, #0a1f3d 60%, #14315a 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 110, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(45deg, transparent 48%, var(--gold) 49%, var(--gold) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, var(--gold) 49%, var(--gold) 51%, transparent 52%);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-panel-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  padding: 8rem 3rem 5rem;
  color: var(--white);
}

@media (max-width: 768px) {
  .hero-panel-inner {
    padding: 7rem 1.5rem 4rem;
  }
}

/* Hero Logo Block (centered, matches reference image) */
.hero-logo-block {
  text-align: center;
  margin-bottom: 3.5rem;
}

.hero-logo-mark {
  width: 110px;
  height: 110px;
  margin: 0 auto 1rem;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(201, 169, 110, 0.25));
}

.hero-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.hero-logo-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
}

.hero-tag-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* Hero Copy */
.hero-copy {
  text-align: left;
  margin-bottom: 2.5rem;
}

.hero-copy .hero-title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 1.5rem;
}

.hero-copy .hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.hero-divider {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
  margin: 0;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.hero-cta .btn-gold,
.hero-cta .btn-outline-gold {
  padding: 0.85rem 1.75rem;
  font-size: 0.9rem;
}

/* Hero Features (4 Icons - Bottom of Left Panel) */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

@media (max-width: 640px) {
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 0;
  }
}

.hero-feature {
  text-align: center;
  padding: 0 0.6rem;
  position: relative;
}

.hero-feature + .hero-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 169, 110, 0.3), transparent);
}

@media (max-width: 640px) {
  .hero-feature:nth-child(3)::before {
    display: none;
  }
}

.hero-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 0.85rem;
  color: var(--gold);
}

.hero-feature-icon svg {
  width: 100%;
  height: 100%;
}

.hero-feature-title {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  white-space: nowrap;
}

.hero-feature-desc {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* Right Panel - Image */
.hero-image-panel {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

@media (max-width: 1023px) {
  .hero-image-panel {
    min-height: 60vh;
  }
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=85');
  background-size: cover;
  background-position: center;
  animation: subtle-zoom 24s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 15, 36, 0.55) 0%, rgba(5, 15, 36, 0.1) 30%, rgba(5, 15, 36, 0) 60%),
    linear-gradient(180deg, rgba(5, 15, 36, 0.2) 0%, transparent 30%, rgba(5, 15, 36, 0.4) 100%);
}

/* Hero Quote Card (floating on luxury image) */
.hero-quote-card {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  max-width: 340px;
  background: rgba(5, 15, 36, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 110, 0.4);
  padding: 1.75rem 1.5rem;
  z-index: 3;
}

.hero-quote-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 24px;
  height: 24px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.hero-quote-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

@media (max-width: 768px) {
  .hero-quote-card {
    bottom: 1.25rem;
    right: 1.25rem;
    left: 1.25rem;
    max-width: none;
    padding: 1.25rem;
  }
}

.hero-quote-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.hero-quote-text {
  font-family: 'Noto Serif KR', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.hero-quote-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.hero-quote-meta .font-serif-en {
  font-size: 1rem;
}

.hero-quote-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: rgba(201, 169, 110, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 1023px) {
  .hero-scroll {
    display: none;
  }
}

/* Brand logo image (header / footer) */
.brand-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201, 169, 110, 0.25));
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-deep);
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

/* Section Headings */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-eyebrow.left::before { display: none; }
.section-eyebrow.left { padding-left: 0; }
.section-eyebrow.left::after { display: none; }
.section-eyebrow.left { 
  display: inline-flex;
}

/* Service Card */
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-soft);
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--gold);
  background: var(--navy-deep);
  color: var(--off-white);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(10, 31, 61, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover .service-icon {
  color: var(--gold);
}

.service-card:hover .service-title {
  color: var(--gold-light);
}

.service-card:hover .service-desc {
  color: var(--gray-soft);
}

.service-icon {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
  transition: color 0.4s;
}

.service-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
  transition: color 0.4s;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--gray-text);
  transition: color 0.4s;
}

/* Why Card */
.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover {
  background: rgba(201, 169, 110, 0.05);
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.5);
}

.why-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.why-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1.5rem;
}

/* Plan Card */
.plan-card {
  background: var(--white);
  border: 1px solid var(--gray-soft);
  padding: 3rem 2rem;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  background: var(--navy-deep);
  color: var(--white);
  border: 1px solid var(--gold);
  transform: scale(1.03);
  box-shadow: 0 30px 60px rgba(10, 31, 61, 0.25);
}

.plan-card.featured::before {
  content: 'BEST CHOICE';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-deep);
  padding: 0.4rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.plan-card:hover:not(.featured) {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 31, 61, 0.12);
}

.plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.plan-tag {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.plan-price-unit {
  font-size: 1rem;
  color: var(--gray-text);
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
}

.plan-card.featured .plan-price-unit {
  color: var(--gray-soft);
}

.plan-price-inquiry {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.plan-card.featured .plan-price-inquiry {
  background: none;
  -webkit-text-fill-color: var(--gold-light);
  color: var(--gold-light);
}

.plan-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.plan-feature {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-text);
}

.plan-card.featured .plan-feature {
  color: var(--gray-soft);
}

.plan-feature i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* Stat */
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gray-soft);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* Decorative line */
.deco-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto;
}

.deco-line.left {
  margin-left: 0;
  margin-right: 0;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(5, 15, 36, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
}

/* Section padding */
.section-pad {
  padding: 7rem 0;
}

@media (max-width: 768px) {
  .section-pad {
    padding: 5rem 0;
  }
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.floating-btn.call {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-deep);
}

.floating-btn.kakao {
  background: #fee500;
  color: #3c1e1e;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Process Step */
.process-step {
  position: relative;
  text-align: center;
  padding: 2rem 1rem;
}

.process-step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step-icon {
  width: 70px;
  height: 70px;
  margin: -3rem auto 1.5rem;
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  color: var(--white);
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.1em;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: var(--gray-soft);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.footer-link {
  color: var(--gray-soft);
  font-size: 0.9rem;
  transition: color 0.3s;
  display: inline-block;
  padding: 0.25rem 0;
}

.footer-link:hover {
  color: var(--gold);
}

/* Contact Form */
.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--white);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

select.form-input option {
  background: var(--navy-deep);
  color: var(--white);
}

.form-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Hero text large */
.hero-title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--white);
}

.hero-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

/* Section title */
.section-title {
  font-family: 'Noto Serif KR', serif;
  font-weight: 500;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.section-title-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

/* Marquee */
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  align-items: center;
}

.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-size: 1rem;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* Responsive */
@media (max-width: 768px) {
  .plan-card.featured {
    transform: scale(1);
  }
  .floating-btn {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }
}
