/* =========================================================
   웨딩리저브 메인 페이지 스타일
   - 모바일 우선
   - 시스템 폰트 + SUIT 폴백
   - 검색엔진/AEO 친화: 간결 마크업, 큰 클릭 영역
   ========================================================= */

@import url("https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/static/woff2/SUIT.css");

:root{
  --font:"SUIT",system-ui,-apple-system,"Segoe UI",Roboto,"Noto Sans KR",sans-serif;
  --bg:#f7f8fb;
  --surface:#ffffff;
  --ink:#0b1020;
  --ink-2:#1f2937;
  --muted:#6b7280;
  --line:rgba(15,23,42,.10);
  --line-2:rgba(15,23,42,.06);
  --brand:#F26B2C;
  --brand-2:#FF8B4A;
  --brand-deep:#B84A18;
  --accent:#183507;
  --warn:#f59e0b;
  --shadow-1:0 8px 24px rgba(15,23,42,.06);
  --shadow-2:0 18px 45px rgba(15,23,42,.10);
  --r-sm:12px;
  --r-md:18px;
  --r-lg:24px;
  --r-xl:32px;
  --container:1180px;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;
  font-family:var(--font);line-height:1.2;
  color:var(--ink);
  background:linear-gradient(180deg,#fafafc,#fff 36%);
  letter-spacing:-.3px;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}

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

.container{max-width:var(--container);margin:0 auto;padding:0 20px;}
.container.narrow{max-width:780px;}

.skip{position:absolute;left:-9999px;top:0;background:#000;color:#fff;padding:8px 12px;}
.skip:focus{left:12px;top:12px;z-index:9999;border-radius:8px;}

/* ===== Header ===== */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line-2);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:64px;}
.brand{display:inline-flex;align-items:center;gap:8px;font-weight:900;letter-spacing:-.5px;}
.brand-mark{
  display:inline-flex;align-items:center;justify-content:center;
  width:18px;height:14px;
  filter:drop-shadow(0 2px 4px rgba(242,107,44,.30));
}
.brand-mark svg{width:100%;height:100%;display:block;}
.brand-name{font-size:18px;}
.primary-nav{display:flex;align-items:center;gap:18px;}
.primary-nav a{font-weight:700;font-size:14px;color:var(--ink-2);}
.primary-nav a:hover{color:var(--brand-deep);}
.primary-nav .nav-cta{
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;padding:9px 14px;border-radius:999px;
  box-shadow:0 8px 18px rgba(242,107,44,.30);
}


/* ===== Hero ===== */
.hero{
  position:relative;
  padding:56px 0 76px;
  overflow:hidden;
  background:
    radial-gradient(60% 70% at 18% -5%, rgba(255,200,160,.22), transparent 62%),
    radial-gradient(55% 65% at 82% 0%,  rgba(255,139,74,.12),  transparent 65%),
    linear-gradient(180deg, rgba(255,247,240,.55) 0%, transparent 70%);
}
.hero::after{
  content:"";
  position:absolute;left:0;right:0;bottom:0;height:80px;
  background:linear-gradient(180deg, transparent, #fff);
  pointer-events:none;z-index:1;
}
.hero-inner{position:relative;z-index:2;}

.hero-inner{max-width:880px;}
.eyebrow{
  display:inline-block;
  font-size:12.5px;font-weight:800;color:var(--brand-deep);
  background:rgba(242,107,44,.10);border:1px solid rgba(242,107,44,.25);
  padding:7px 12px;border-radius:999px;margin-bottom:16px;
}
.hero h1 .hl{background:linear-gradient(135deg,var(--brand),var(--brand-2));-webkit-background-clip:text;background-clip:text;color:transparent;}
.hero .lead{
  margin:0 0 20px;color:var(--ink-2);font-size:clamp(15px,1.5vw,17px);
  line-height:1.2;font-weight:500;max-width:62ch;
}
.hero .lead strong{font-weight:800;color:var(--ink);}

.hero-cta{display:flex;flex-wrap:wrap;gap:10px;}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  height:48px;padding:0 22px;border-radius:999px;
  font-weight:800;font-size:14.5px;letter-spacing:-.3px;
  border:1px solid var(--line);background:var(--surface);
  color:var(--ink);transition:transform .12s,box-shadow .18s,border-color .18s,background .18s;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px);box-shadow:var(--shadow-1);}
.btn-primary{
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;border-color:transparent;
  box-shadow:0 12px 28px rgba(242,107,44,.30);
}
.btn-primary:hover{box-shadow:0 16px 36px rgba(242,107,44,.40);}
.btn-ghost{background:rgba(255,255,255,.7);}
.btn-sm{height:38px;padding:0 14px;font-size:13px;}

/* ===== Sections ===== */
.section{padding:54px 0;}
.section-alt{background:#fbfbfd;border-top:1px solid var(--line-2);border-bottom:1px solid var(--line-2);}

.section-head{margin-bottom:24px;}

/* ===== Featured ===== */
@media(max-width:980px){}
@media(max-width:740px){}
.event-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
@media(max-width:980px){.event-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){.event-grid{grid-template-columns:1fr;gap:14px;}}
.featured-card{display:flex;flex-direction:column;background:var(--surface);border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow-1);transition:transform .15s,box-shadow .25s;}
.event-card{display:flex;flex-direction:column;background:var(--surface);border:1px solid var(--line);border-radius:var(--r-md);overflow:hidden;box-shadow:var(--shadow-1);transition:transform .15s,box-shadow .25s;}
.featured-card:hover,.event-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-2);}
.featured-media,.event-media{position:relative;display:block;overflow:hidden;background:linear-gradient(180deg,#f7f5f0,#efece4);}
.featured-media img,.event-media img{aspect-ratio:4/5;object-fit:contain;width:100%;height:auto;display:block;background:linear-gradient(180deg,#f7f5f0,#efece4);transition:transform .35s;}
.featured-card:hover .featured-media img,.event-card:hover .event-media img{transform:scale(1.02);}
.featured-tag,.event-tag{position:absolute;left:12px;top:12px;z-index:2;background:rgba(0,0,0,.62);color:#fff;padding:6px 10px;border-radius:999px;font-size:11.5px;font-weight:800;letter-spacing:.2px;}
.featured-body,.event-body{padding:18px 18px 20px;display:flex;flex-direction:column;gap:8px;flex:1;}
.featured-body h3,.event-body h3{margin:2px 0 0;font-size:16.5px;line-height:1.2;font-weight:900;letter-spacing:-.4px;}
.featured-body h3 a:hover,.event-body h3 a:hover{color:var(--brand-deep);}

.subtitle{margin:0;color:var(--ink-2);font-size:12.5px;line-height:1.2;font-weight:600;}
.summary{margin:2px 0 0;color:var(--muted);font-size:12.8px;line-height:1.2;font-weight:500;}
.meta-row{display:flex;flex-wrap:wrap;gap:6px;margin-top:2px;}
.chip{
  display:inline-flex;align-items:center;gap:4px;
  background:rgba(15,23,42,.05);border:1px solid var(--line);
  padding:5px 9px;border-radius:999px;font-size:12px;font-weight:700;color:var(--ink-2);
}
.chip-region{background:rgba(242,107,44,.08);border-color:rgba(242,107,44,.22);color:var(--brand-deep);}
.card-foot{
  margin-top:auto;padding-top:12px;
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  border-top:1px dashed var(--line);
}
.venue{font-size:12.5px;color:var(--muted);font-weight:700;}

/* ===== 필터 ===== */
.filters{
  display:flex;flex-direction:column;gap:10px;
  background:var(--surface);border:1px solid var(--line);
  padding:14px;border-radius:var(--r-md);margin-bottom:22px;
  box-shadow:var(--shadow-1);
}
.filter-group{display:flex;flex-wrap:wrap;align-items:center;gap:6px;}
.filter-label{
  font-size:12px;font-weight:800;color:var(--muted);
  margin-right:6px;letter-spacing:.3px;text-transform:uppercase;
}
.filter{
  display:inline-flex;align-items:center;gap:5px;
  padding:7px 12px;border:1px solid var(--line);
  border-radius:999px;font-size:13px;font-weight:700;color:var(--ink-2);
  background:#fafbff;transition:all .15s;
}
.filter em{font-style:normal;color:var(--muted);font-weight:700;font-size:11.5px;}
.filter:hover{border-color:var(--brand);color:var(--brand-deep);}
.filter.is-on{
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;border-color:transparent;box-shadow:0 6px 14px rgba(242,107,44,.25);
}
.filter.is-on em{color:rgba(255,255,255,.85);}

/* ===== 이벤트 그리드 ===== */
@media(max-width:980px){}
@media(max-width:600px){}
.event-card:hover .event-body h3{font-size:16.5px;}
.event-body .subtitle{font-size:13px;}

/* ===== 빈 상태 ===== */
.empty{
  text-align:center;padding:48px 16px;background:var(--surface);
  border:1px dashed var(--line);border-radius:var(--r-md);
  color:var(--muted);font-weight:600;
}
.empty p{margin:0 0 14px;}


/* ===== Footer ===== */
.site-footer{margin-top:0;padding:36px 0 28px;
  background:#0b1020;color:#cbd5e1;
}
.footer-inner{display:flex;flex-direction:column;gap:18px;}
.footer-brand strong{display:block;color:#fff;font-size:16px;font-weight:900;margin-bottom:6px;}
.footer-brand p{margin:0;color:#94a3b8;font-size:13px;line-height:1.2;}
.footer-meta{display:flex;flex-wrap:wrap;gap:16px;font-size:13px;color:#cbd5e1;}
.footer-meta a{color:#fff;border-bottom:1px solid rgba(255,255,255,.30);}
.footer-meta a:hover{border-bottom-color:#fff;}
.copyright{margin:6px 0 0;font-size:12px;color:#64748b;}

@media(min-width:760px){
  .footer-inner{flex-direction:row;flex-wrap:wrap;align-items:flex-start;justify-content:space-between;}
  .footer-brand{flex:1 1 320px;max-width:520px;}
  .copyright{flex-basis:100%;text-align:center;}
}

/* ===== Why (B2C 차별점) ===== */
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
@media(max-width:820px){.why-grid{grid-template-columns:1fr;}}
.why-card{
  background:var(--surface);border:1px solid var(--line);
  border-radius:var(--r-md);padding:28px 24px 26px;
  box-shadow:var(--shadow-1);
  transition:transform .15s,box-shadow .25s,border-color .25s;
}
.why-card:hover{
  transform:translateY(-3px);box-shadow:var(--shadow-2);
  border-color:rgba(242,107,44,.35);
}
.why-num{
  display:inline-flex;align-items:center;justify-content:center;
  width:46px;height:46px;border-radius:14px;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;font-weight:900;font-size:15px;letter-spacing:.4px;
  box-shadow:0 8px 18px rgba(242,107,44,.32);
  margin-bottom:16px;
}
.why-card h3{font-size:17.5px;font-weight:900;letter-spacing:-.4px;margin:0 0 8px;}
.why-card p{margin:0;font-size:13.8px;line-height:1.2;font-weight:500;color:var(--ink-2);}

/* ===== How (이용 방법) ===== */
.section-how .section-head{margin-bottom:28px;}
.how-steps{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
@media(max-width:820px){.how-steps{grid-template-columns:1fr;}}
.how-step{
  display:flex;align-items:flex-start;gap:14px;
  background:var(--surface);border:1px solid var(--line);
  border-radius:var(--r-md);padding:22px 20px;
  box-shadow:var(--shadow-1);
}
.step-num{
  flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;
  width:40px;height:40px;border-radius:50%;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;font-weight:900;font-size:16px;
  box-shadow:0 6px 14px rgba(242,107,44,.30);
}
.step-body{flex:1;min-width:0;}
.step-body h3{font-size:16.5px;font-weight:900;letter-spacing:-.3px;margin:2px 0 6px;}
.step-body p{margin:0;font-size:13.8px;line-height:1.2;font-weight:500;color:var(--ink-2);}

/* ===== Section CTA (밝은 그라디언트 위 가독성 보강) ===== */

/* ===== Section CTA (밝은 그라디언트, 진한 번트 텍스트) ===== */
.section-cta{background:linear-gradient(135deg,#FFC8A0 0%,#FF8B4A 45%,#F26B2C 100%);color:#3D1408;padding:64px 0 72px;}
.section-cta h2{margin:0 0 12px;font-size:clamp(22px,3vw,30px);font-weight:900;letter-spacing:-.5px;color:#3D1408;}
.section-cta p{margin:0 0 22px;font-size:15.5px;line-height:1.2;color:#4A1B0C;font-weight:600;}
.section-cta p strong{color:#2A0E05;font-weight:850;}
.section-cta .btn-primary{box-shadow:0 14px 30px rgba(184,74,24,.40);}
.section-cta .btn-ghost{background:rgba(255,255,255,.65);color:#3D1408;border-color:rgba(61,20,8,.22);font-weight:800;}
.section-cta .btn-ghost:hover{background:rgba(255,255,255,.85);border-color:rgba(61,20,8,.40);}

/* ===== FAQ (아코디언 + 셰브론) ===== */
.faq-list{display:flex;flex-direction:column;gap:10px;margin:0;padding:0;}
.faq-item{
  background:var(--surface);border:1px solid var(--line);
  border-radius:var(--r-md);padding:0;list-style:none;
  transition:border-color .18s, box-shadow .18s, background .18s;
}
.faq-item:hover{border-color:rgba(242,107,44,.35);}
.faq-item[open]{
  border-color:rgba(242,107,44,.55);
  box-shadow:0 6px 18px rgba(242,107,44,.10);
  background:#fffaf6;
}
.faq-item summary{
  cursor:pointer;padding:18px 22px;
  font-weight:800;font-size:15.5px;letter-spacing:-.3px;
  list-style:none;display:flex;align-items:center;justify-content:space-between;gap:12px;
  user-select:none;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:"";flex:0 0 auto;width:14px;height:9px;margin-left:8px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 14 9\'><path d=\'M1 1l6 6 6-6\' stroke=\'%23999\' stroke-width=\'2\' fill=\'none\' stroke-linecap=\'round\' stroke-linejoin=\'round\'/></svg>");
  background-repeat:no-repeat;background-position:center;
  transition:transform .22s ease;
}
.faq-item[open] summary::after{transform:rotate(180deg);}
.faq-item[open] summary{color:var(--brand-deep);}
.faq-item p{
  margin:0;padding:0 22px 20px;
  color:var(--ink-2);font-size:14.2px;line-height:1.2;font-weight:500;
  border-top:1px solid rgba(242,107,44,.10);padding-top:14px;
}

/* ===== 상태 탭 (진행중 / 종료) ===== */
.status-tabs{
  display:flex;gap:4px;margin:0 0 14px;
  border-bottom:1px solid var(--line);
  padding:0 4px;
}
.status-tabs .tab{
  padding:11px 18px;margin-bottom:-1px;
  font-weight:800;font-size:14px;letter-spacing:-.2px;
  color:var(--muted);
  border-bottom:2px solid transparent;
  transition:color .15s, border-color .15s;
}
.status-tabs .tab:hover{color:var(--ink);}
.status-tabs .tab.is-on{
  color:var(--brand-deep);
  border-bottom-color:var(--brand);
}

/* ===== 줄바꿈 보존 (입력한 개행을 그대로 표시) ===== */
.summary,.subtitle,.event-body p,.featured-body p,.hero .lead{
  white-space:pre-line;
}

/* ===== Admin: 이미지 입력 영역 ===== */
.image-field{
  display:flex;flex-direction:column;gap:8px;
  background:#fafafb;border:1px solid var(--line);border-radius:11px;
  padding:14px;
}
.image-field .img-label{
  font-size:12.5px;color:var(--muted);font-weight:700;
}
.image-field .image-preview{
  display:inline-block;
}
.image-field .image-preview img{
  max-width:200px;max-height:200px;border-radius:9px;
  border:1px solid var(--line);object-fit:cover;display:block;
}
.image-field .image-inputs{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
}
.image-field .image-inputs input[type=url]{
  flex:1;min-width:240px;
  border:1px solid var(--line);border-radius:9px;
  padding:9px 11px;font-size:14px;background:#fff;
}
.image-field .image-inputs input[type=file]{
  font-size:13px;color:var(--muted);
}
.image-field .image-inputs .or{
  font-size:11.5px;color:var(--muted);font-weight:700;
  padding:0 4px;
}
.image-field .img-hint{
  font-size:11.5px;color:var(--muted);
}

/* ===== AJAX 전환 로딩 (부드럽게 디밍) ===== */
body.is-fetching #events,
body.is-fetching #featured{
  opacity:.55;transition:opacity .18s ease;pointer-events:none;
}
body.is-fetching{cursor:progress;}
/* ===== "캐치웨딩이 다른 이유" 섹션 — 주황빛 + 글래스 카드 ===== */
.section-why{
  background:linear-gradient(135deg,#FFE0CC 0%,#FFC8A0 35%,#FF8B4A 100%);
  border-top:none;border-bottom:none;
  position:relative;
  overflow:hidden;
}
.section-why::before{
  content:"";position:absolute;inset:-10%;
  background:
    radial-gradient(40% 50% at 12% 18%, rgba(255,255,255,.30), transparent 60%),
    radial-gradient(35% 40% at 85% 80%, rgba(255,180,120,.30), transparent 60%);
  pointer-events:none;
}
.section-why > .container{position:relative;z-index:1;}
.section-why .section-why 
.section-why .why-card{
  background:rgba(255,255,255,.30);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  backdrop-filter:blur(18px) saturate(160%);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:
    0 12px 32px rgba(120,40,0,.18),
    inset 0 1px 0 rgba(255,255,255,.50);
}
.section-why .why-card:hover{
  background:rgba(255,255,255,.42);
  border-color:rgba(255,255,255,.75);
  box-shadow:
    0 22px 48px rgba(120,40,0,.25),
    inset 0 1px 0 rgba(255,255,255,.60);
  transform:translateY(-3px);
}
.section-why .why-card h3{color:#2A0E05;}
.section-why .why-card p{color:rgba(42,14,5,.78);}
.section-why .why-num{
  position:relative;
  background:transparent;
  color:#F26B2C;
  font-weight:900;
  border:none;
  box-shadow:none;
  -webkit-background-clip:initial;
          background-clip:initial;
}
.section-why .why-num::before{
  content:"";
  position:absolute;inset:0;z-index:-1;
  background:#fff;
  border:1px solid rgba(255,255,255,.70);
  border-radius:14px;
  box-shadow:0 10px 22px rgba(120,40,0,.18);
}

/* ===== 가격 칩 ===== */
.chip-price{background:rgba(184,74,24,.08);border-color:rgba(184,74,24,.22);color:var(--brand-deep);font-weight:850;}

/* ===== Hero 중앙정렬 ===== */
.hero-inner{margin:0 auto;text-align:center;}
.hero .lead{margin-left:auto;margin-right:auto;}
.hero-cta{justify-content:center;}

/* ===== FAQ 섹션 (복원) ===== */
.section-faq{padding:54px 0 64px;background:#fafbfd;border-top:1px solid var(--line);}
.section-faq .section-head{margin-bottom:18px;}
.section-faq 
/* ===== Breadcrumb (이벤트 상세 / 컬렉션 공용) ===== */
.breadcrumb{padding:14px 0;font-size:12.5px;color:var(--muted);}
.breadcrumb a{color:var(--muted);text-decoration:none;}
.breadcrumb a:hover{color:var(--brand-deep);}
.breadcrumb span[aria-hidden]{margin:0 6px;color:#ccc;}

/* ===== 이벤트 상세 페이지 ===== */
.event-detail{padding:18px 0 56px;}
.event-detail__head{margin-bottom:18px;}
.event-detail__subtitle{margin:0;color:var(--ink-2);font-size:15px;font-weight:600;line-height:1.2;white-space:pre-line;}
.event-detail__media{margin:18px 0;border-radius:var(--r-lg);overflow:hidden;background:linear-gradient(180deg,#f7f5f0,#efece4);}
.event-detail__media img{width:100%;height:auto;display:block;aspect-ratio:4/5;object-fit:contain;}
.event-detail__summary{font-size:16px;line-height:1.2;color:var(--ink);font-weight:600;margin:18px 0;white-space:pre-line;}
.event-detail__body{font-size:15px;line-height:1.2;color:var(--ink-2);white-space:pre-line;margin:14px 0 24px;}

.event-detail__facts{display:grid;grid-template-columns:1fr;gap:0;margin:24px 0;border:1px solid var(--line);border-radius:var(--r-md);overflow:hidden;background:var(--surface);}
.event-detail__facts > div{display:grid;grid-template-columns:120px 1fr;padding:12px 16px;border-bottom:1px solid var(--line);font-size:14px;}
.event-detail__facts > div:last-child{border-bottom:0;}
.event-detail__facts dt{margin:0;color:var(--muted);font-weight:700;font-size:13px;}
.event-detail__facts dd{margin:0;color:var(--ink);font-weight:600;}
.event-detail__facts dd small{color:var(--muted);font-weight:500;font-size:12.5px;margin-left:6px;}

.event-detail__cta{display:flex;gap:10px;flex-wrap:wrap;margin:24px 0;}
.event-detail__cta .btn-primary{flex:1;min-width:200px;height:54px;font-size:15px;}
.event-detail__faq{margin-top:36px;}
.event-detail__faq h2{font-size:18px;font-weight:900;margin:0 0 14px;}

/* ===== 푸터 — B2B 행사 등록 문의 (작게) ===== */
.footer-biz{
  font-size:12.5px;color:#94a3b8;margin:6px 0 4px;
  display:flex;align-items:center;gap:8px;flex-wrap:wrap;
}
.footer-biz a{
  color:#fff;font-weight:700;
  border-bottom:1px solid rgba(255,255,255,.30);
  padding-bottom:1px;
}
.footer-biz a:hover{border-bottom-color:#fff;}

/* ===== 추천 슬라이더 ===== */
.featured-slider{position:relative;}
.featured-track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:calc((100% - 32px) / 3);
  gap:16px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  -ms-overflow-style:none;
  -webkit-overflow-scrolling:touch;
  padding:4px 2px;
  scroll-padding-left:0;
}
.featured-track::-webkit-scrollbar{display:none;}
.featured-track > .featured-card{scroll-snap-align:start;}

@media(max-width:980px){
  .featured-track{grid-auto-columns:calc((100% - 16px) / 2);}
}
@media(max-width:600px){
  .featured-track{grid-auto-columns:100%;}
}

.slider-btn{
  position:absolute;top:50%;transform:translateY(-50%);
  width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.96);
  border:1px solid var(--line);
  box-shadow:0 8px 18px rgba(0,0,0,.10);
  display:flex;align-items:center;justify-content:center;
  font-size:24px;font-weight:900;color:var(--ink);
  cursor:pointer;z-index:5;
  transition:transform .18s, box-shadow .18s, opacity .18s;
  font-family:system-ui,-apple-system,sans-serif;
  line-height:1;padding:0 0 3px 0;
}
.slider-btn:hover{transform:translateY(-50%) scale(1.06);box-shadow:0 12px 26px rgba(0,0,0,.14);}
.slider-btn:active{transform:translateY(-50%) scale(.98);}
.slider-btn:disabled{opacity:.30;cursor:not-allowed;}
.slider-btn--prev{left:-12px;}
.slider-btn--next{right:-12px;}
@media(max-width:600px){
  .slider-btn{width:38px;height:38px;font-size:20px;}
  .slider-btn--prev{left:6px;}
  .slider-btn--next{right:6px;}
}

/* ===== section-head H 태그 폰트 정리 (h1/h2 모두) ===== */
.section-head h1{font-size:clamp(24px,3.4vw,32px);font-weight:900;letter-spacing:-.5px;margin:0 0 6px;line-height:1.2;}
.section-head h2{font-size:clamp(22px,3vw,30px);font-weight:900;letter-spacing:-.5px;margin:0 0 6px;line-height:1.2;}
.section-head .section-sub{margin:0;color:var(--muted);font-size:14.5px;font-weight:600;line-height:1.2;}

/* event detail h1 (개별 페이지) */
.event-detail__head h1{font-size:clamp(22px,3vw,28px);font-weight:900;letter-spacing:-.5px;margin:10px 0 6px;line-height:1.2;}

/* hero h1 — 메인 타이틀 */
.hero h1{font-size:clamp(28px,5vw,42px);line-height:1.18;font-weight:900;letter-spacing:-1px;margin:0 0 14px;}

/* ===== 모바일 햄버거 메뉴 ===== */
.nav-toggle{
  display:none;
  flex-direction:column;justify-content:center;gap:5px;
  width:38px;height:38px;border-radius:10px;
  background:transparent;border:1px solid var(--line);
  cursor:pointer;padding:0;
  transition:background .15s, border-color .15s;
}
.nav-toggle:hover{background:#fafafb;}
.nav-toggle span{
  display:block;width:18px;height:2px;background:var(--ink);
  border-radius:2px;margin:0 auto;
  transition:transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

@media(max-width:760px){
  .nav-toggle{display:flex;}
  .primary-nav{
    position:absolute;
    top:64px;left:0;right:0;
    flex-direction:column;align-items:stretch;
    background:#fff;
    padding:8px 18px 16px;
    gap:0;
    border-top:1px solid var(--line);
    box-shadow:0 16px 30px rgba(0,0,0,.10);
    transform:translateY(-12px);
    opacity:0;
    pointer-events:none;
    transition:transform .22s, opacity .22s;
    z-index:60;
  }
  .primary-nav.is-open{transform:none;opacity:1;pointer-events:auto;}
  .primary-nav a{
    display:block !important;
    padding:14px 4px;
    border-bottom:1px solid var(--line-2);
    font-size:15px;font-weight:800;letter-spacing:-.3px;
  }
  .primary-nav a:last-child{border-bottom:0;}
  body.nav-open{overflow:hidden;}
}

.faq-link{
  display:inline-block;margin-top:8px;
  color:var(--brand-deep);font-weight:800;font-size:13.5px;
  border-bottom:1px solid rgba(184,74,24,.30);
  padding-bottom:1px;text-decoration:none;
  transition:.15s;
}
.faq-link:hover{color:var(--brand);border-bottom-color:var(--brand);}
