/* ============================================================
   EYRIE — index.css  (메인 페이지 전용)
   ============================================================ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--sage);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.hero-title em { font-style: italic; color: var(--terracotta); }

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--earth);
  margin-bottom: 36px;
  line-height: 1.3;
}

.hero-desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 380px;
  margin-bottom: 52px;
}

.hero-cta-group { display: flex; gap: 16px; align-items: center; }

.hero-right {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  width: 120%; height: 120%;
  top: -10%; left: -10%;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(181,196,164,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(196,112,74,0.12) 0%, transparent 50%);
}

.hero-image-grid {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  padding: 40px;
}

.hero-img-placeholder {
  background: var(--sage-light);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-img-placeholder:first-child {
  grid-row: 1 / 3;
  background: linear-gradient(145deg, #8B9E7A, #6B7D5C);
}
.hero-img-placeholder:nth-child(2) { background: linear-gradient(145deg, #C4A882, #A8845E); }
.hero-img-placeholder:nth-child(3) { background: linear-gradient(145deg, #B5A090, #9A7E6C); }

.img-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
}

/* ── BRAND STRIP ── */
.brand-strip {
  background: var(--earth-dark);
  padding: 18px 80px;
  display: flex;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.brand-badge { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.badge-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.badge-text { font-size: 12px; letter-spacing: 0.1em; color: rgba(245,240,232,0.85); }

/* ── CATEGORY SECTION ── */
.category-section { background: var(--cream); padding: 120px 80px; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.category-card {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.category-card.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.category-card.wide .cat-name { font-size: 30px; }

.cat-bg {
  width: 100%; height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.category-card:hover .cat-bg { transform: scale(1.04); }

.cat-bg-1 { background: linear-gradient(160deg, #9AAB8A, #6B7D5C); }
.cat-bg-2 { background: linear-gradient(160deg, #C4A882, #8B6845); }
.cat-bg-3 { background: linear-gradient(160deg, #B5C4A4, #7A8C6E); }
.cat-bg-4 { background: linear-gradient(160deg, #D4B896, #A88060); }

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,29,26,0.65) 0%, transparent 55%);
}
.cat-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  z-index: 1;
}
.cat-name {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400;
  color: #fff; margin-bottom: 4px;
}
.cat-sub { font-size: 11px; letter-spacing: 0.1em; color: rgba(255,255,255,0.65); }

/* ── FEATURED PRODUCTS ── */
.products-section { background: var(--warm-white); padding: 120px 80px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-image { aspect-ratio: 1; }

/* ── BRAND STORY ── */
.story-section {
  background: var(--earth-dark);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.story-left {
  background: linear-gradient(135deg, #7A8C6E, #4A5C3E);
  display: flex; align-items: center; justify-content: center;
  min-height: 520px;
  position: relative; overflow: hidden;
}
.story-left::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.story-left::after {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.story-logo-large {
  font-family: var(--font-display);
  font-size: 72px; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.08em;
  position: relative; z-index: 1;
  text-align: center;
}
.story-logo-large span {
  display: block;
  font-size: 13px; font-style: normal;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

.story-right {
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.story-right .section-eyebrow { color: var(--sage-light); }

.story-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300; line-height: 1.15;
  color: var(--cream); margin-bottom: 28px;
}
.story-title em { font-style: italic; color: var(--sage-light); }

.story-desc {
  font-size: 14px; line-height: 2;
  color: rgba(245,240,232,0.7);
  margin-bottom: 48px; max-width: 400px;
}

.story-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 48px;
}
.value-item {
  padding: 20px;
  border: 1px solid rgba(245,240,232,0.15);
  border-radius: 2px;
}
.value-icon { font-size: 20px; margin-bottom: 8px; }
.value-name { font-size: 13px; font-weight: 400; color: var(--cream); margin-bottom: 4px; letter-spacing: 0.05em; }
.value-desc { font-size: 11px; color: rgba(245,240,232,0.5); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonial-section {
  background: var(--cream);
  text-align: center;
  padding: 100px 80px;
}
.testimonial-eyebrow {
  font-size: 11px; letter-spacing: 0.25em;
  color: var(--sage); text-transform: uppercase; margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.testimonial-card {
  background: var(--warm-white);
  padding: 40px 36px; text-align: left;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px; color: var(--sage-light);
  line-height: 1; display: block; margin-bottom: 16px;
}
.testimonial-text { font-size: 14px; line-height: 1.85; color: var(--text-main); margin-bottom: 24px; }
.testimonial-author { font-size: 12px; letter-spacing: 0.1em; color: var(--text-muted); }
.testimonial-author strong { color: var(--earth); font-weight: 500; }

/* ── DELIVERY BANNER ── */
.delivery-banner {
  background: var(--sage);
  padding: 28px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.delivery-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 300;
  color: #fff; letter-spacing: 0.02em;
}
.delivery-text strong { font-weight: 500; }
.delivery-sub { font-size: 12px; color: rgba(255,255,255,0.75); letter-spacing: 0.08em; }
.btn-delivery {
  background: #fff; color: var(--sage);
  padding: 12px 28px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer;
  text-decoration: none; transition: all 0.2s;
}
.btn-delivery:hover { background: var(--cream); }
