/* =============================================
   탁사발 두부공방 — 창업 랜딩페이지
   =============================================
   색상 시스템
   - 골드:    #b8860b / #d4a843 / #f0c040
   - 블랙:    #111111 / #1a1a1a / #0a0a0a
   - 크림:    #faf8f2 / #f5f0e8
   - 레드:    #c0392b (포인트 CTA)
   ============================================= */

/* ======= RESET & BASE ======= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  background: #faf8f2;
  color: #1a1a1a;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea, button { font-family: inherit; }

/* ======= LAYOUT ======= */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.dark-bg { background: #111111; color: #fff; }

/* ======= TYPOGRAPHY ======= */
h2 {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
}
h2 em { font-style: normal; color: #d4a843; }
h2.light { color: #fff; }
.label-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4a843;
  border: 1.5px solid #d4a843;
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 14px;
}
.label-tag.light { color: #f0c040; border-color: #f0c040; }
.sec-header { margin-bottom: 52px; }
.sec-header.center { text-align: center; }
.sec-sub { font-size: 1rem; color: rgba(255,255,255,0.6); margin-top: 10px; }

/* ======= BUTTONS ======= */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #b8860b;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(184,134,11,0.38);
  transition: all 0.28s ease;
  cursor: pointer;
}
.btn-gold:hover { background: #8b6508; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(184,134,11,0.5); }
.btn-gold.large { padding: 18px 44px; font-size: 1.1rem; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.65);
  transition: all 0.28s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c0392b;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(192,57,43,0.4);
  transition: all 0.28s ease;
  letter-spacing: 0.02em;
}
.btn-phone-big:hover { background: #a93226; transform: translateY(-2px); }

/* ======= CHECK LIST ======= */
.check-list { list-style: none; margin: 20px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.95rem; font-weight: 500;
}
.check-list li i { color: #d4a843; font-size: 1rem; margin-top: 3px; flex-shrink: 0; }

/* ======= HEADER ======= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.header-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.header-logo { flex-shrink: 0; }
.logo-wrap { display: flex; align-items: center; }
.logo-svg { height: 44px; width: auto; }
.header-nav ul {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.header-nav a {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.82);
  position: relative; padding-bottom: 2px;
  transition: color 0.25s;
}
.header-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: #d4a843; transform: scaleX(0);
  transition: transform 0.25s ease;
}
.header-nav a:hover { color: #f0c040; }
.header-nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: #b8860b !important; color: #fff !important;
  padding: 8px 20px !important; border-radius: 50px;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #8b6508 !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ======= HERO ======= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-dim {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,3,0,0.86) 0%, rgba(15,10,2,0.72) 55%, rgba(5,3,0,0.55) 100%);
}
.hero-body {
  position: relative; z-index: 1;
  padding: 130px 24px 80px;
  max-width: 1160px; margin: 0 auto; width: 100%;
  padding-left: calc((100% - 1160px) / 2 + 24px);
}
.hero-pre {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.22em;
  color: #d4a843; text-transform: uppercase; margin-bottom: 18px;
}
.hero-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 900; color: #fff; line-height: 1.12; margin-bottom: 22px;
}
.hero-title em { font-style: normal; color: #f0c040; }
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78); line-height: 1.85; margin-bottom: 38px;
}
.hero-sub strong { color: #f0c040; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-kpi {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.kpi-item { display: flex; flex-direction: column; gap: 4px; }
.kpi-item b {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.35rem; font-weight: 900; color: #f0c040;
}
.kpi-item span { font-size: 0.75rem; color: rgba(255,255,255,0.58); }
.kpi-sep { width: 1px; height: 38px; background: rgba(255,255,255,0.18); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 1; color: rgba(255,255,255,0.45); font-size: 1.3rem;
  animation: heroScroll 1.8s ease-in-out infinite;
}
@keyframes heroScroll { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ======= ABOUT ======= */
.about { background: #faf8f2; }
.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-img-col { display: flex; flex-direction: column; gap: 16px; }
.about-img-frame { border-radius: 14px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.about-img-frame img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.5s ease; }
.about-img-frame:hover img { transform: scale(1.04); }
.about-img-frame.small img { height: 200px; }
.about-text-col { padding: 12px 0; }
.about-body {
  font-size: 1.02rem; color: #555; line-height: 1.9;
  margin-bottom: 6px;
}
.about-body strong { color: #8b6508; font-weight: 700; }

/* ======= CONCEPT BAR ======= */
.concept-bar { background: #111; padding: 32px 0; }
.concept-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.concept-item {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.25s;
}
.concept-item:last-child { border-right: none; }
.concept-item:hover { background: rgba(212,168,67,0.08); }
.concept-item i {
  font-size: 1.6rem; color: #d4a843;
  flex-shrink: 0; width: 40px; text-align: center;
}
.concept-item strong { display: block; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.concept-item span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ======= REVENUE ======= */
.revenue { background: #0a0a0a; }
.rev-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.rev-desc { font-size: 1rem; color: rgba(255,255,255,0.62); line-height: 1.85; margin-bottom: 28px; }
.rev-desc strong { color: #f0c040; }
.rev-numbers { margin-bottom: 32px; }
.rev-label { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 12px; letter-spacing: 0.04em; }
.rev-row { display: flex; gap: 16px; }
.rev-box {
  flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(212,168,67,0.25);
  border-radius: 12px; padding: 20px 18px; text-align: center;
}
.rev-box small { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.rev-box strong { font-family: 'Noto Serif KR', serif; font-size: 1.35rem; font-weight: 900; color: #f0c040; }
.rev-box em { font-style: normal; font-size: 0.9rem; color: rgba(212,168,67,0.8); }
.rev-img-col { display: flex; flex-direction: column; gap: 16px; }
.rev-img-col img { width: 100%; border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); object-fit: cover; }
.rev-img-col img:first-child { height: 260px; }
.rev-img-col img:last-child { height: 220px; }

/* ======= SUCCESS ======= */
.success { background: #fff; }
.success-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px;
}
.success-card {
  background: #faf8f2; border: 1px solid #e8e0d0;
  border-radius: 14px; padding: 32px 24px;
  transition: all 0.28s ease;
}
.success-card:hover {
  border-color: #d4a843; background: #fff;
  box-shadow: 0 8px 32px rgba(184,134,11,0.12);
  transform: translateY(-4px);
}
.s-num {
  font-family: 'Noto Serif KR', serif; font-size: 2.6rem; font-weight: 900;
  color: rgba(184,134,11,0.18); line-height: 1; margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.success-card h3 { font-size: 1.1rem; font-weight: 700; color: #111; margin-bottom: 10px; }
.success-card p { font-size: 0.88rem; color: #777; line-height: 1.75; }

/* Gallery */
.store-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item span {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: #fff; font-size: 0.78rem; font-weight: 600;
  padding: 20px 12px 10px; text-align: center;
}

/* ======= SUPPORT ======= */
.support { background: #0d0d0d; }
.support-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.support-card {
  background: rgba(255,255,255,0.04); border: 1.5px solid rgba(212,168,67,0.35);
  border-radius: 16px; padding: 36px 24px; text-align: center;
  position: relative; overflow: hidden; transition: all 0.28s ease;
}
.support-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #b8860b, #f0c040);
}
.support-card:hover { background: rgba(212,168,67,0.08); transform: translateY(-4px); }
.support-card i { font-size: 1.8rem; color: #d4a843; margin-bottom: 14px; display: block; }
.support-card strong {
  display: block; font-family: 'Noto Serif KR', serif;
  font-size: 2.1rem; font-weight: 900; color: #f0c040; margin-bottom: 8px;
}
.support-card span { font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.support-extras {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 40px 40px 32px; margin-bottom: 40px;
}
.support-extras h3 {
  font-size: 1.15rem; color: #d4a843; margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.support-extras h3 i { font-size: 1.1rem; }
.extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.extra-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.92rem; color: rgba(255,255,255,0.78);
}
.extra-row i { color: #d4a843; font-size: 0.95rem; flex-shrink: 0; }
.note { text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-top: 12px; }
.support-cta-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}

/* ======= CHANGE ======= */
.change { background: #faf8f2; }
.change-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.change-img-stack { position: relative; }
.change-img-stack .main-img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: 16px; box-shadow: 0 16px 56px rgba(0,0,0,0.18);
}
.change-badge {
  position: absolute; top: 24px; left: 24px;
  background: #b8860b; color: #fff;
  padding: 14px 20px; border-radius: 12px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 8px 24px rgba(184,134,11,0.4);
}
.change-badge span { font-size: 0.75rem; font-weight: 600; opacity: 0.8; }
.change-badge strong { font-size: 1.05rem; font-weight: 900; }
.change-quote {
  background: #fff; border-left: 4px solid #d4a843;
  padding: 16px 20px; border-radius: 0 10px 10px 0;
  font-size: 0.9rem; color: #555; font-style: italic; line-height: 1.8;
  margin-bottom: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* ======= INQUIRY / FORM ======= */
.inquiry { background: #0a0a0a; }
.inquiry-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.inq-logo-wrap { margin-bottom: 24px; }
.inq-logo-svg { height: 52px; width: auto; }
.inq-desc { font-size: 0.97rem; color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 32px; }
.phone-big {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 8px;
}
.phone-icon {
  width: 54px; height: 54px; background: #c0392b; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(192,57,43,0.45);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 4px 16px rgba(192,57,43,0.45)} 50%{box-shadow:0 4px 28px rgba(192,57,43,0.7)} }
.phone-text small { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.phone-text strong {
  font-family: 'Noto Serif KR', serif; font-size: 1.9rem; font-weight: 900;
  color: #fff; letter-spacing: 0.02em;
}
.phone-hours { font-size: 0.8rem; color: rgba(255,255,255,0.35); padding-left: 70px; margin-bottom: 28px; }
.trust-badges { display: flex; flex-direction: column; gap: 10px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50px; padding: 9px 16px;
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
}
.trust-badge i { color: #d4a843; }

/* Form Box */
.form-box {
  background: #fff; border-radius: 20px; padding: 44px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.form-title {
  font-family: 'Noto Serif KR', serif; font-size: 1.4rem; font-weight: 900;
  color: #111; margin-bottom: 6px; text-align: center;
}
.form-subtitle { font-size: 0.82rem; color: #999; text-align: center; margin-bottom: 28px; }
.field-row { display: flex; gap: 14px; }
.field-row.two-col > * { flex: 1; }
.field-group { margin-bottom: 16px; }
.field-group label {
  display: block; font-size: 0.84rem; font-weight: 700;
  color: #333; margin-bottom: 7px;
}
.req { color: #c0392b; }
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #ddd; border-radius: 8px;
  font-size: 0.95rem; color: #1a1a1a;
  background: #faf9f7; outline: none;
  transition: all 0.25s ease;
  -webkit-appearance: none;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: #b8860b; background: #fff;
  box-shadow: 0 0 0 3px rgba(184,134,11,0.13);
}
.field-group input.is-error,
.field-group select.is-error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.field-group textarea { resize: vertical; min-height: 90px; }
.field-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

/* Checkbox */
.privacy-check { margin-bottom: 22px; }
.check-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.check-label input[type="checkbox"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.check-custom {
  width: 20px; height: 20px; border: 2px solid #ccc; border-radius: 4px;
  flex-shrink: 0; margin-top: 2px; background: #faf9f7;
  transition: all 0.2s; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.check-custom::after {
  content: '✓'; font-size: 12px; font-weight: 900; color: #fff;
  opacity: 0; transition: opacity 0.2s;
}
.check-label input:checked + .check-custom { background: #b8860b; border-color: #b8860b; }
.check-label input:checked + .check-custom::after { opacity: 1; }
.check-text { font-size: 0.83rem; color: #666; line-height: 1.6; }
.check-text strong { color: #333; }
.check-text small { color: #aaa; font-size: 0.75rem; }

/* Submit */
.btn-submit {
  width: 100%; padding: 17px 24px;
  background: linear-gradient(135deg, #b8860b, #d4a843);
  color: #fff; font-size: 1.05rem; font-weight: 700;
  border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(184,134,11,0.4);
  transition: all 0.28s ease;
  border: none;
}
.btn-submit:hover { background: linear-gradient(135deg, #8b6508, #b8860b); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(184,134,11,0.5); }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.btn-submit i { font-size: 1rem; }

/* Form Result */
.form-result {
  margin-top: 14px; padding: 14px 18px;
  border-radius: 8px; font-size: 0.9rem; font-weight: 600;
  display: none; text-align: center;
}
.form-result.ok { display: block; background: #f0fff4; border: 1px solid #68d391; color: #276749; }
.form-result.fail { display: block; background: #fff5f5; border: 1px solid #fc8181; color: #c53030; }

/* ======= FLOATING CTA ======= */
.floating-wrap {
  position: fixed; bottom: 28px; right: 20px; z-index: 900;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; transform: translateY(20px);
  transition: all 0.3s ease; pointer-events: none;
}
.floating-wrap.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-call, .float-form {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.02em;
}
.float-call:hover, .float-form:hover { transform: scale(1.1); }
.float-call { background: #c0392b; color: #fff; }
.float-call i { font-size: 1.05rem; }
.float-form { background: #b8860b; color: #fff; }
.float-form i { font-size: 0.95rem; }

/* ======= FOOTER ======= */
.footer {
  background: #050505; padding: 52px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 28px; margin-bottom: 28px;
}
.footer-logo-wrap { flex-shrink: 0; }
.footer-logo-svg { height: 40px; width: auto; }
.footer-info p { font-size: 0.8rem; color: rgba(255,255,255,0.38); line-height: 1.8; }
.footer-info a { color: #d4a843; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-nav a { font-size: 0.8rem; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-nav a:hover { color: #d4a843; }
.footer-copy { font-size: 0.74rem; color: rgba(255,255,255,0.2); text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); }

/* ======= ANIMATIONS ======= */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ======= RESPONSIVE ======= */

/* Tablet 1024px */
@media (max-width: 1024px) {
  .concept-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap, .rev-wrap, .change-wrap, .inquiry-wrap {
    grid-template-columns: 1fr; gap: 40px;
  }
  .about-img-col { flex-direction: row; }
  .about-img-frame img { height: 240px; }
  .about-img-frame.small img { height: 240px; }
  .rev-img-col { flex-direction: row; }
  .rev-img-col img:first-child, .rev-img-col img:last-child { height: 200px; flex: 1; }
  .hero-body { padding-left: 24px; }
  .support-extras { padding: 28px 24px; }
  .success-grid { grid-template-columns: repeat(2, 1fr); }
  .store-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile 768px */
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }

  /* Header Mobile */
  .hamburger { display: flex; }
  .header-nav {
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.98);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 999;
  }
  .header-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .header-nav ul { flex-direction: column; gap: 0; text-align: center; }
  .header-nav ul li { border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; }
  .header-nav a {
    display: block; padding: 20px 32px;
    font-size: 1.1rem; color: rgba(255,255,255,0.88);
  }
  .nav-cta { margin: 16px auto !important; display: inline-block; }

  /* Hero Mobile */
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn-gold, .hero-btns .btn-ghost { width: 100%; justify-content: center; }
  .hero-kpi { gap: 16px; }
  .kpi-sep { display: none; }

  /* About */
  .about-img-col { flex-direction: column; }
  .about-img-frame img { height: 220px; }
  .about-img-frame.small img { height: 160px; }

  /* Concept Bar */
  .concept-grid { grid-template-columns: repeat(2, 1fr); }
  .concept-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .concept-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .concept-item:last-child { border-bottom: none; }

  /* Revenue */
  .rev-img-col { flex-direction: column; }
  .rev-img-col img:first-child, .rev-img-col img:last-child { height: 200px; }
  .rev-row { flex-direction: column; }

  /* Success */
  .success-grid { grid-template-columns: 1fr; }
  .store-gallery { grid-template-columns: repeat(2, 1fr); }

  /* Support */
  .support-cards { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .support-cta-wrap { flex-direction: column; align-items: stretch; }
  .support-cta-wrap .btn-gold, .support-cta-wrap .btn-phone-big { text-align: center; justify-content: center; }

  /* Change */
  .change-img-stack .main-img { height: 280px; }

  /* Inquiry */
  .inquiry-wrap { gap: 36px; }
  .form-box { padding: 28px 20px; }
  .field-row.two-col { flex-direction: column; gap: 0; }
  .phone-text strong { font-size: 1.5rem; }
  .phone-hours { padding-left: 0; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-nav { gap: 14px; }
}

/* Small Mobile 480px */
@media (max-width: 480px) {
  .concept-grid { grid-template-columns: 1fr; }
  .concept-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .store-gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item img { height: 150px; }
  .floating-wrap { bottom: 16px; right: 12px; }
}
