/* ===== CSS Custom Properties ===== */
:root {
  --color-gold: #B8965A;
  --color-gold-light: #D4AF7A;
  --color-gold-bright: #E8C98A;
  --color-bg: #FDFAF4;
  --color-bg-cream: #F5EDD8;
  --color-dark: #1a1a1a;
  --color-dark-warm: #1a1508;
  --font-serif: 'MaruBuri', Georgia, serif;
  --font-sans: 'Pretendard', sans-serif;
}

/* ===== Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  min-height: 100vh;
  background: var(--color-bg);
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
}

.hidden {
  display: none !important;
}

/* ===== Keyframe Animations ===== */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: none; }
}

/* ===== Shimmer Text ===== */
.shimmer-text {
  background-image: linear-gradient(90deg, #9A7A48, #D4AF7A, #9A7A48);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ===== Navbar items fade-in ===== */
.nav-item {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.nav-item.visible {
  opacity: 1;
  transform: none;
}

/* ===== Hero content fade-in ===== */
#hero-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

#hero-content.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ===== Scroll-triggered Fade-in ===== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.fade-left {
  transform: translateX(-32px);
}

.fade-in.fade-right {
  transform: translateX(32px);
}

.fade-in.fade-none {
  transform: none;
}

.fade-in.in-view {
  opacity: 1;
  transform: none;
}

/* ===== Transition Delay Utilities ===== */
.delay-0 { transition-delay: 0s; }
.delay-100 { transition-delay: 0.1s; }
.delay-120 { transition-delay: 0.12s; }
.delay-200 { transition-delay: 0.2s; }
.delay-240 { transition-delay: 0.24s; }
.delay-300 { transition-delay: 0.3s; }
.delay-320 { transition-delay: 0.32s; }
.delay-440 { transition-delay: 0.44s; }

/* ===== Hero slide initial state ===== */
#hero-slide-0 { opacity: 1; }
#hero-slide-1 { opacity: 0; }
#hero-slide-2 { opacity: 0; }

/* ===== Hero slide dots ===== */
#dot-0, #dot-1, #dot-2 {
  border: none;
  padding: 0;
  cursor: pointer;
}

/* ===== Select placeholder color fix ===== */
select option[value=""] {
  color: #9ca3af;
}

/* ===== Custom scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-gold-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-gold); }

/* ===== Focus styles ===== */
input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-gold) !important;
  box-shadow: 0 0 0 2px rgba(184, 150, 90, 0.15);
}

/* ===== Submit button disabled ===== */
#submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}


/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 72rem;
  margin: 0 auto;
}

.container--xl {
  max-width: 80rem;
  margin: 0 auto;
}

.container--md {
  max-width: 56rem;
  margin: 0 auto;
}


/* ============================================
   NAVBAR (웹 최적화)
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5rem;
}

.navbar__brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #fff;
}

.navbar__brand-sub {
  font-size: 0.75rem;
  margin-top: 0.125rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.75);
  display: block;
}

.navbar__cta {
  padding: 0.625rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--color-gold);
  color: #fff;
  letter-spacing: 0.03em;
  white-space: nowrap;
  border: none;
  transition: transform 0.3s;
}

.navbar__cta:hover {
  transform: scale(1.05);
}


/* ============================================
   HERO SECTION (웹 최적화)
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  transition: opacity 1s;
}

.hero__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 8, 3, 0.3), rgba(10, 8, 3, 0.2), rgba(10, 8, 3, 0.35));
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  padding: 0 5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.hero__label {
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(232, 201, 138, 0.85);
}

.hero__line {
  display: inline-block;
  height: 1px;
  background: var(--color-gold-light);
  width: 0;
  transition: width 0.8s ease 0.6s;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 1.5rem;
  letter-spacing: -0.025em;
  color: #fff;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
}

.hero__desc {
  font-size: 1rem;
  line-height: 1.625;
  margin-bottom: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
}

.hero__tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  font-weight: 500;
  color: rgba(232, 201, 138, 0.7);
}

.hero__buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.hero__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.hero__dot {
  height: 8px;
  border-radius: 9999px;
  transition: all 0.5s;
  border: none;
  padding: 0;
}


/* ============================================
   BUTTONS (웹 최적화)
   ============================================ */
.btn {
  display: inline-block;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  border: none;
  font-family: var(--font-sans);
  transition: transform 0.3s;
  text-align: center;
  line-height: 1;
}

.btn:hover {
  transform: scale(1.05);
}

.btn--gold {
  background: var(--color-gold);
  color: #fff;
}

.btn--outline-gold {
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-dark);
  border: 1.5px solid var(--color-dark);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}

.btn--md {
  padding: 0.875rem 2.25rem;
}

.btn--full {
  width: 100%;
}

.btn--hero {
  width: auto;
}

.btn--membership {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  font-family: var(--font-sans);
  transition: opacity 0.3s;
}

.btn--membership:hover {
  transform: none;
  opacity: 0.8;
}


/* ============================================
   SECTIONS 공통 (웹 최적화)
   ============================================ */
.section {
  padding: 5rem 5rem;
}

.section--white {
  background: #fff;
}

.section--cream {
  background: var(--color-bg);
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__label {
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--color-gold);
}

.section__title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--color-dark);
  line-height: 1.25;
}

.section__title--light {
  font-weight: 300;
}

.section__desc {
  font-size: 0.875rem;
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto;
  font-weight: 300;
}

.section__desc--left {
  margin: 0;
}


/* ============================================
   OUR STORY SECTION (웹 최적화 — 가로 레이아웃)
   ============================================ */
.story__layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
  max-width: 80rem;
  margin: 0 auto;
}

.story__text {
  flex: 0 0 60%;
  width: 60%;
}

.story__label {
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 500;
  color: var(--color-gold);
}

.story__title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 2rem;
  color: var(--color-dark);
}

.story__body {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 2;
  margin-bottom: 3rem;
  font-weight: 300;
}

.story__values {
  display: flex;
  flex-direction: row;
  gap: 0;
  max-width: 48rem;
}

.story__value {
  flex: 1;
}

.story__value:not(:last-child) {
  padding-right: 2rem;
  border-right: 1px solid var(--color-bg-cream);
}

.story__value:not(:first-child) {
  padding-left: 2rem;
}

.story__value-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold);
}

.story__value-desc {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.625;
  margin: 0;
}

.story__image-col {
  flex: 0 0 40%;
  width: 40%;
  position: relative;
  height: 30rem;
}

.story__image-wrap {
  position: absolute;
  inset: 0;
  border-radius: 1.75rem;
  overflow: hidden;
}

.story__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.story__image-overlay {
  position: absolute;
  inset: 0;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, rgba(184, 150, 90, 0.12) 0%, transparent 60%);
}


/* ============================================
   SIGNATURE PRODUCTS (웹 최적화 — 3열)
   ============================================ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-bg-cream);
  transition: all 0.5s;
}

.product-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.product-card__img-wrap {
  width: 100%;
  height: 20rem;
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s;
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__body {
  padding: 1.75rem;
  text-align: center;
}

.product-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.product-card__subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0 0 0.75rem;
}

.product-card__desc {
  font-size: 0.75rem;
  color: #4b5563;
  line-height: 1.625;
  margin: 0;
}


/* ============================================
   BRAND MESSAGE (웹 최적화)
   ============================================ */
.brand-message {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 45vh;
  min-height: 300px;
}

.brand-message__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-message__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 15, 5, 0.55), rgba(20, 15, 5, 0.45), rgba(20, 15, 5, 0.55));
}

.brand-message__content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 0 5rem;
  max-width: 56rem;
  width: 100%;
}

.brand-message__title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.25;
  margin: 0 0 1.5rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
}

.brand-message__desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.85);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  margin: 0;
}

.brand-message__divider {
  width: 3rem;
  height: 1px;
  margin: 1.5rem auto;
  background: var(--color-gold);
}

.brand-message__quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-gold-bright);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  margin: 0;
}


/* ============================================
   PREMIUM CIRCLE MEMBERSHIP (웹 최적화 — 3열)
   ============================================ */
.membership__header {
  margin-bottom: 3rem;
}

.membership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.membership-card {
  border-radius: 1rem;
  padding: 2.25rem;
  transition: all 0.5s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.membership-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.membership-card--light {
  background: var(--color-bg);
  border: 1px solid var(--color-bg-cream);
}

.membership-card--dark {
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2510 100%);
  border: 1px solid var(--color-gold);
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.membership-card__badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  background: var(--color-gold);
  color: #fff;
}

.membership-card__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.membership-card__tier {
  font-size: 0.875rem;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.membership-card__tier--silver { color: #9E8A5A; }
.membership-card__tier--gold { color: var(--color-gold-bright); }
.membership-card__tier--noir { color: var(--color-dark); }

.membership-card__price {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0;
}

.membership-card__price--dark {
  color: rgba(255, 255, 255, 0.5);
}

.membership-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.membership-card__list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.75rem;
}

.membership-card__list--light li { color: #374151; }
.membership-card__list--dark li { color: rgba(255, 255, 255, 0.85); }

.membership-icon {
  margin-right: 0.5rem;
  margin-top: 0.125rem;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.membership-icon--bright {
  color: var(--color-gold-bright);
}


/* ============================================
   WHY THE K (웹 최적화 — 4열)
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-bg-cream);
  transition: all 0.5s;
  height: 100%;
}

.why-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.why-card__icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: rgba(184, 150, 90, 0.12);
}

.why-card__icon i {
  font-size: 1.25rem;
  color: var(--color-gold);
}

.why-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--color-dark);
}

.why-card__desc {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.625;
  font-weight: 300;
  margin: 0;
}


/* ============================================
   CONSULTATION (웹 최적화 — 2열 가로)
   ============================================ */
.consultation {
  position: relative;
  padding: 5rem 5rem;
  overflow: hidden;
}

.consultation__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.consultation__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 8, 3, 0.55), rgba(10, 8, 3, 0.35));
}

.consultation__inner {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: stretch;
}

.consultation__col {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.consultation__info-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-radius: 1rem;
  padding: 2rem;
  background: rgba(253, 250, 244, 0.12);
  border: 1px solid rgba(184, 150, 90, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.consultation__label {
  font-size: 0.75rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--color-gold-light);
}

.consultation__title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 1.25rem;
  color: #fff;
}

.consultation__title-accent {
  color: var(--color-gold-light);
}

.consultation__desc {
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}

.consultation__contacts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.consultation__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.consultation__contact-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(184, 150, 90, 0.25);
}

.consultation__contact-icon i {
  font-size: 0.875rem;
  color: var(--color-gold-light);
}

.consultation__contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.125rem;
  color: var(--color-gold-light);
}

.consultation__contact-value {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}


/* ============================================
   FORM CARD (웹 최적화)
   ============================================ */
.form-card {
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(253, 250, 244, 0.96);
  border: 1px solid var(--color-bg-cream);
}

.form-card__title {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--color-dark);
}

.form-card__subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  position: relative;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  outline: none;
  border: 1px solid var(--color-bg-cream);
  background: #fff;
  font-family: var(--font-sans);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input { color: var(--color-dark); }
.form-input::placeholder { color: #9ca3af; }

.form-select {
  color: #9ca3af;
  cursor: pointer;
}

.form-textarea {
  min-height: 120px;
  resize: none;
  color: var(--color-dark);
}

.form-textarea::placeholder { color: #9ca3af; }

.form-textarea-wrap {
  position: relative;
}

.form-char-count {
  position: absolute;
  bottom: 0.5rem;
  right: 0.75rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}

.form-checkbox-wrap {
  position: relative;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.form-checkbox-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.form-checkbox-visual {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  background: transparent;
  border: 1.5px solid #d1c4a8;
}

.form-checkbox-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-dark);
}

.form-checkbox-required {
  color: var(--color-gold);
}

.form-checkbox-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

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

.form-submit {
  width: 100%;
  padding: 0.875rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--color-gold);
  color: #fff;
  white-space: nowrap;
  border: none;
  transition: transform 0.3s;
  font-family: var(--font-sans);
  cursor: pointer;
}

.form-submit:hover {
  transform: scale(1.05);
}

.form-success {
  font-size: 0.75rem;
  text-align: center;
  color: #7A9E5A;
  margin: 0;
}

.form-error {
  font-size: 0.75rem;
  text-align: center;
  color: #ef4444;
  margin: 0;
}

.form-privacy {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 300;
  text-align: center;
  margin: 0;
}

#fill-values {
  font-size: 1rem;
  background-color: var(--color-gold);
  font-weight: 500;
  text-align: center;
  margin: 0;
  position: absolute;
  width: 100%;
  height: 100px;
  color: #fff;
  border: 0;
}


/* ============================================
   CLOSING SECTION (웹 최적화)
   ============================================ */
.closing {
  position: relative;
  padding: 5rem 5rem;
  overflow: hidden;
}

.closing__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.closing__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(253, 250, 244, 0.82), rgba(245, 237, 216, 0.88));
}

.closing__content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.closing__divider {
  width: 2.5rem;
  height: 1px;
  margin: 0 auto 2.5rem;
  background: var(--color-gold);
}

.closing__text {
  font-size: 1rem;
  line-height: 2.2;
  font-weight: 300;
  margin-bottom: 2rem;
  color: #4a4030;
}

.closing__highlight {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.625;
  color: var(--color-dark);
}

.closing__highlight-sub {
  font-weight: 300;
  font-size: 1rem;
  color: #7a6a4a;
}


/* ============================================
   FOOTER (웹 최적화)
   ============================================ */
.footer {
  padding: 3.5rem 5rem;
  background: var(--color-dark-warm);
}

.footer__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--color-gold-bright);
}

.footer__brand-sub {
  font-size: 0.75rem;
  color: rgba(232, 201, 138, 0.6);
}

.footer__tagline {
  font-size: 0.75rem;
  font-weight: 300;
  max-width: 20rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
}

.footer__bottom {
  border-top: 1px solid rgba(184, 150, 90, 0.2);
  padding-top: 2rem;
}

.footer__copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
}
