@font-face{
  font-family:"Pretendard Variable";
  src: url("/wp-content/themes/generatepress-child/assets/fonts/PretendardVariable.woff2") format("woff2-variations");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face{
  font-family:"Poppins";
  src: url("/wp-content/themes/generatepress-child/assets/fonts/Poppins-Variable.woff2") format("woff2-variations");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root{
  --brand:    #7C4DFF;
  --brand-2:  #9A7BFF;
  --brand-3:  #CBB5FF;

  --bg-0:     #0e0f14;
  --bg-1:     #13141b;
  --bg-2:     #1a1b23;

  --text:     #ECECF1;
  --text-dim: #B9BBC6;
  --text-inv: #0d0f14;

  --line:     rgba(255,255,255,.08);
  --shadow:   0 12px 32px rgba(0,0,0,.35);
  --blur:     10px;

  --container-max: 1360px;
  --container: clamp(280px, 92vw, var(--container-max));

  --header-h: 72px;
  --adminbar: 0px;

  --fs-dsp: clamp(2.25rem, calc(1.81rem + 1.22vw), 3.375rem);
  --fs-h1:  clamp(1.90rem, calc(1.63rem + 0.76vw), 2.60rem);
  --fs-h2:  clamp(1.35rem, calc(1.15rem + 0.54vw), 1.85rem);
  --fs-p:   clamp(1.00rem, calc(0.95rem + 0.14vw), 1.125rem);

  --lh-tight:   1.15;
  --lh-normal:  1.55;
  --tracking-tight: -0.02em;
}


*{ 
  box-sizing: border-box; 
}
html, body{ 
  margin:0; padding:0; 
  background:var(--bg-0); 
  color:var(--text); 
  overflow-x:hidden;
}

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

a{ 
  color:inherit; 
  text-decoration:none; 
}
:focus-visible{ outline:2px solid var(--brand); outline-offset:2px; }

a, button{
  border: 0;
  background: transparent;
}

html { 
  font-size:100%; 
}
body{
  padding-top: calc(var(--header-h,72px) + var(--adminbar,0px));
  font-family:"Pretendard Variable", Pretendard, -apple-system, 
  BlinkMacSystemFont,
              "Segoe UI", Roboto, "Noto Sans KR", "Apple SD Gothic Neo",
              "Malgun Gothic", "Helvetica Neue", Arial, system-ui, sans-serif;
  font-size:var(--fs-p);
  line-height:var(--lh-normal);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

h1, h2, h3, .u-title{
  font-family:Poppins, "Pretendard Variable", system-ui, sans-serif;
  letter-spacing:var(--tracking-tight);
  line-height:var(--lh-tight);
  color:var(--brand);
}
h1, .u-h1{ 
  font-size:var(--fs-h1); 
}
h2, .u-h2{ 
  font-size:var(--fs-h2); 
}
.u-dsp{ 
  font-size:var(--fs-dsp); 
  font-weight:800; }
.p, .u-body{ color:var(--text); }
.subtext, .u-sub{ color:var(--text-dim); }

.container{ width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px; }
.section{ padding: clamp(48px, 8vw, 96px) 0; }
.section .section-title{ margin:0 0 .75rem; }
.section .section-sub{ margin:0 0 1.25rem; color:var(--text-dim); }

.btn{
  display:inline-flex; align-items:center; justify-content:center; white-space:nowrap;
  gap:.5rem; padding:.6rem 1.1rem; border-radius:999px;
  background:linear-gradient(180deg, var(--brand), color-mix(in oklab, var(--brand) 78%, #4f2fd6 22%));
  color:var(--text-inv); font-weight:800; letter-spacing:.02em;
  box-shadow:var(--shadow);
  transition:transform .15s ease, opacity .15s ease, filter .15s ease;
}
.btn:hover{ transform:translateY(-1px); opacity:.96; }

.surface{
  background:var(--bg-2);
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow);
}
a.link, .link{ color:var(--brand-2); text-underline-offset:3px; }
a.link:hover{ text-decoration:underline; }

.site-header{
  position: fixed;
  top: var(--adminbar, 0px);
  left: 0; right: 0;
  z-index: 2000;
  background: color-mix(in oklab, var(--bg-1) 70%, black 30%);
  backdrop-filter: blur(var(--blur,10px));
  border-bottom: 1px solid var(--line, rgba(255,255,255,.08));
}
.header-inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .75rem;
  min-height: 72px;         /* 고정 최소치 */
  padding-block: 10px;      /* 로고 크기에 따라 유연 */
}
.header-call{ justify-self:start; white-space:nowrap; }
.header-logo{ justify-self:center; }
.logo-link img{ height:32px; width:auto; display:block; }

.hamburger{
  justify-self:end;
  width:40px; height:40px; cursor:pointer; position:relative;
  display:inline-flex; align-items:center; justify-content:center;
}
.hamburger span{
  position:absolute; left:9px; right:9px; height:2px;
  background:var(--text); border-radius:1px; transition:.25s ease;
}
.hamburger span:nth-child(1){ top:12px; }
.hamburger span:nth-child(2){ top:19px; }
.hamburger span:nth-child(3){ top:26px; }
#navToggle:checked + .hamburger span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
#navToggle:checked + .hamburger span:nth-child(2){ opacity:0; }
#navToggle:checked + .hamburger span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.nav-overlay{
  position:fixed; inset:0;
  background:rgba(0,0,0,.45);
  opacity:0; pointer-events:none;
  transition:opacity .28s ease;
  z-index:1895;
}

.side-nav{
  position:fixed; inset:0;
  top: var(--adminbar);
  width:100vw; height:calc(100dvh - var(--adminbar));
  background:var(--bg-2);
  border:0;
  transform:translateX(100%);
  transition:transform .36s cubic-bezier(.2,.8,.2,1);
  z-index:1900;
  overflow:auto;
  visibility:hidden; pointer-events:none;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  padding: clamp(24px, 4vw, 40px);
  text-align:center;
  gap: clamp(16px, 3vw, 28px);
}

.side-nav-list{
  list-style:none; margin:0; padding:0;
  display:grid; gap: clamp(10px, 2.2vw, 16px);
}
.side-nav-list a{
  border:0 !important;
  padding: .55rem .9rem;
  border-radius:.6rem;
  font-size: clamp(1.1rem, calc(1rem + 1vw), 1.6rem);
  color: var(--text);
}
.side-nav-list a:hover{ color: var(--brand-3); }

.side-nav-cta{ margin-top: clamp(8px, 2vw, 16px); }
.side-nav-cta .btn{
  font-size: clamp(1rem, calc(.9rem + .5vw), 1.125rem);
}

body:has(#navToggle:checked) .nav-overlay{
  opacity:1; pointer-events:auto;
}
body:has(#navToggle:checked) .side-nav{
  transform:translateX(0);
  visibility:visible; pointer-events:auto;
}

.side-nav a:focus-visible{ outline:2px solid var(--brand); outline-offset:3px; }

@supports not (height:100dvh){
  .side-nav{ height: calc(100vh - var(--adminbar)); }
}


/* ===== Hero base ===== */
.hero{
  position: relative;
  min-height: 100vh;
  width: 100%;
  color: #fff;
  overflow: hidden;
}

.hero-bg{
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 0.25s ease-out;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(0,0,0,0.25), rgba(0,0,0,0.85)),
    linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.95));
  transition: background 0.25s ease-out;
}

.hero-inner{
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 0 16px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ===== 2단계에서 등장하는 카피 묶음 ===== */
.hero-copy{
  text-align: center;
  max-width: 720px;

  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
  pointer-events: none;
}

/* JS에서 progress에 따라 이 클래스를 토글/보간할 거라
   직접 쓰진 않지만, 참고용 */
.hero-copy.is-active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* 텍스트 스타일 */
.hero-kicker{
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.hero-title{
  font-family: "Lobster", cursive;
  font-size: clamp(3.2rem, 9vw, 5.6rem);
  line-height: 1;
  margin-bottom: 0.9rem;
}

.hero-sub{
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  opacity: 0.95;
  margin: 0 auto 1.3rem;
}

.hero-cta{
  display: flex;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.hero-meta{
  font-size: 0.8rem;
  opacity: 0.8;
}

/* 버튼 */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary{
  background-color: #ff3b7b;
  border-color: #ff3b7b;
  color: #fff;
}

/* ===== Scroll mouse hint ===== */
.hero-scroll-hint{
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
  opacity: 0.8;
}

/* 마우스 테두리 */
.scroll-mouse{
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 16px;
  position: relative;
  box-sizing: border-box;

  opacity: 0;
  transform: translateY(0);
  animation: scrollMouse 1.9s ease-out infinite 0.8s;
}

/* 안에 움직이는 휠 점 */
.scroll-wheel{
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #ffffff;
  transform: translateX(-50%);
  opacity: 0;
  animation: scrollWheel 1.9s ease-out infinite 0.8s;
}

@keyframes scrollMouse{
  0%   { opacity: 0; transform: translateY(0); }
  20%  { opacity: 1; transform: translateY(0); }
  70%  { opacity: 1; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(18px); }
}

@keyframes scrollWheel{
  0%   { opacity: 0; transform: translate(-50%, 0); }
  20%  { opacity: 1; transform: translate(-50%, 0); }
  70%  { opacity: 1; transform: translate(-50%, 8px); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* 스크린리더용 텍스트 숨김 */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ===========================
 * WHY CANTTAPPIYA – Scroll Timeline
 * =========================== */

.why-seq{
  position: relative;
  padding: clamp(72px, 12vh, 120px) 0;
  background:
    radial-gradient(circle at top, #1b0f2b 0, #05030b 55%, #020005 100%);
  color: #f7f1ff;
}

.why-shell{
  width: min(1040px, 100% - 32px);
  margin: 0 auto;
}

/* 헤더 */
.why-header{
  max-width: 640px;
  margin: 0 0 clamp(40px, 8vh, 72px);
}

.why-kicker{
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 8px;
}

.why-title{
  font-size: clamp(1.8rem, 3.1vw, 2.4rem);
  margin: 0 0 10px;
  font-weight: 700;
}

.why-subtitle{
  margin: 0;
  line-height: 1.75;
  opacity: .9;
}

/* 카드 트랙 */
.why-track{
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

/* 카드 기본 */
.why-card{
  --why-p: 0; /* JS에서 0~1로 갱신 */

  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  gap: 20px;
  padding: 22px 24px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left,
      rgba(132, 84, 255, calc(.16 + .24 * var(--why-p))),
      transparent 60%)
    ,
    linear-gradient(135deg,
      rgba(9, 0, 40, 1),
      rgba(28, 5, 46, 1)
    );
  border: 1px solid rgba(255, 255, 255, calc(.04 + .4 * var(--why-p)));
  box-shadow:
    0 26px 60px rgba(0, 0, 0, .65),
    0 0 0 1px rgba(0, 0, 0, .6) inset;

  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}

/* 카드 이미지 */
.why-photo{
  position: relative;
  padding-top: 75%; /* 세로 비율 */
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.why-photo::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top,
      rgba(255, 255, 255, .24),
      transparent 55%);
  mix-blend-mode: screen;
  opacity: .6;
}

/* 카드 텍스트 영역 */
.why-card-body{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-card-title{
  margin: 0 0 8px;
  font-size: 1.06rem;
  font-weight: 600;
}

.why-card-text{
  margin: 0;
  font-size: .95rem;
  line-height: 1.8;
  opacity: .94;
}

/* ===== Gallery Section ===== */

.gallery{
  background: radial-gradient(circle at top, #161124 0, #050308 55%, #020105 100%);
}

.gallery-inner{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gallery-header{
  text-align: left;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #0b0b12;
}

.gallery-item img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease-out, filter .6s ease-out;
}

.gallery-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45), transparent 40%);
  mix-blend-mode: multiply;
}

.gallery-item:hover img{
  transform: scale(1.06);
  filter: brightness(1.05);
}

/* ===== Blog Section ===== */

.blog-inner{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-header{
  text-align: left;
}

.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card{
  background: #080814;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 18px 40px rgba(0,0,0,.55);
}

.blog-card-link{
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-thumb{
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}

.blog-thumb-img,
.blog-thumb-placeholder{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-thumb-placeholder{
  background: linear-gradient(135deg, #1f1634, #080710);
}

.blog-body{
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blog-title{
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
}

.blog-meta{
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.7;
}

.blog-excerpt{
  margin: 4px 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
}

.blog-empty{
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Blog hover */
.blog-card:hover .blog-thumb-img{
  transform: scale(1.04);
  transition: transform .5s ease-out;
}

/* ===== FAQ Section ===== */

.faq-inner{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-header{
  text-align: left;
}

.faq-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item{
  background: #080814;
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.08);
}

.faq-question{
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 24px;
  font-size: 0.95rem;
}

.faq-question::-webkit-details-marker{
  display: none;
}

.faq-question::after{
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
  opacity: 0.8;
}

.faq-item[open] .faq-question::after{
  content: "–";
}

.faq-answer{
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.9;
}


/* ===== Reviews Section ===== */

.reviews{
  background: radial-gradient(circle at top, #1b1025 0, #050308 60%, #020105 100%);
}

.reviews-inner{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reviews-header{
  text-align: left;
}

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.review-card{
  background: #080814;
  border-radius: 16px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 14px 32px rgba(0,0,0,.5);
}

.review-stars{
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: #ffd75a;
  margin-bottom: 6px;
}

.review-text{
  margin: 0 0 6px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.review-meta{
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.75;
}

.reviews-cta{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.reviews-note{
  margin: 0;
  font-size: 0.86rem;
  opacity: 0.8;
}

/* ===========================
   Contact / Map Section
   =========================== */

.contact{
  position: relative;
  background: radial-gradient(circle at top, #1b0825 0%, #05030b 50%, #020106 100%);
  overflow: hidden;
}

/* 살짝 비네팅 느낌 */
.contact::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 140, 255, 0.18), transparent 60%),
    radial-gradient(circle at bottom, rgba(255, 77, 77, 0.11), transparent 65%);
  opacity: .9;
  pointer-events: none;
}

.contact-inner{
  position: relative;
  /* 오버레이 위에 보이도록 */
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(26px, 4vw, 34px);
}

/* 헤더 */

.contact-header{
  max-width: 820px;
}

.contact-header .section-title{
  margin-bottom: 0.35em;
}

.contact-header .section-subtitle{
  max-width: 700px;
}

.contact-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-size: 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  letter-spacing: .01em;
}

.chip-soft{
  background: rgba(255,255,255,.06);
}

/* 그리드 레이아웃 */

.contact-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
}

/* 정보 카드 */

.contact-info-card{
  position: relative;
}

.contact-info-card::before{
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,120,210,.5), rgba(129,94,255,.4));
  opacity: .6;
  filter: blur(10px);
  z-index: 0;
}

.contact-info-inner{
  position: relative;
  z-index: 1;
  background: rgba(3, 1, 10, 0.96);
  border-radius: 22px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 50px rgba(0,0,0,.75);
  backdrop-filter: blur(10px);
}

.contact-card-title{
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
}

/* 정보 리스트 */

.contact-list{
  margin: 0;
  padding: 0;
}

.contact-row{
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 4px;
  margin-bottom: 12px;
}

.contact-row:last-child{
  margin-bottom: 0;
}

.contact-row dt{
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
}

.contact-row dd{
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* 전화 */

.contact-tel{
  font-weight: 600;
  text-decoration: none;
  color: #ff8fd4;
}

.contact-tel:hover{
  text-decoration: underline;
}

.contact-tel-note{
  display: inline-block;
  margin-left: 6px;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* CTA 버튼 */

.contact-cta-group{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 기본 .btn 스타일이 없다면 최소 보정 */
.btn{
  border: none;
  cursor: pointer;
  font: inherit;
}

.contact-btn-main,
.contact-btn-sub{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  font-size: 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

/* 메인 CTA – 그라데이션 + 살짝 글로우 */
.contact-btn-main{
  background: linear-gradient(135deg, #ff6bc1, #ffb66b);
  color: #0a040e;
  font-weight: 600;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.18),
    0 16px 30px rgba(0,0,0,.7),
    0 0 25px rgba(255, 90, 190, .7);
  text-shadow: 0 0 6px rgba(255,255,255,.4);
  transition: transform .18s ease-out, box-shadow .18s ease-out;
}

.contact-btn-main:hover{
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.25),
    0 20px 40px rgba(0,0,0,.85),
    0 0 32px rgba(255, 120, 200, .9);
}

/* 서브 CTA */

.contact-btn-sub{
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(10, 7, 25, .85);
  color: rgba(255,255,255,.86);
  font-weight: 500;
  transition: background .15s ease-out, border-color .15s ease-out;
}

.contact-btn-sub:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
}

.contact-footnote{
  margin-top: 11px;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* 지도 쪽 */

.contact-map-wrap{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 바깥 글로우 프레임 */
.contact-map-glow{
  position: relative;
  border-radius: 26px;
  padding: 3px;
  background: radial-gradient(circle at top, rgba(255,120,210,.6), rgba(104,78,255,.4));
  box-shadow: 0 24px 60px rgba(0,0,0,.8);
  animation: contactGlow 4s ease-in-out infinite alternate;
}

@keyframes contactGlow{
  0%{
    box-shadow: 0 24px 60px rgba(0,0,0,.82),
                0 0 18px rgba(255, 120, 210, .45);
  }
  100%{
    box-shadow: 0 28px 70px rgba(0,0,0,.92),
                0 0 30px rgba(255, 160, 230, .75);
  }
}

.map-frame{
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #05050a;
}

/* aspect-ratio 있는 브라우저 */
.map-frame{
  aspect-ratio: 4 / 3;
}

/* fallback용 */
.map-frame::before{
  content: "";
  display: block;
  padding-bottom: 75%;
}

.map-frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-note{
  font-size: 0.8rem;
  opacity: 0.72;
}

/* =========================
   Footer — Canttappiya
   ========================= */
.site-footer{
  background: #05050a;
  color: #e5e5f0;
  padding: 60px 0 32px;
  font-size: 0.9rem;
}

.site-footer a{
  color: inherit;
}

/* 안쪽 레이아웃 */
.footer-inner{
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

/* 공통 컬럼 */
.footer-column{
  flex: 1;
  min-width: 0;
}

/* 브랜드 영역 */
.footer-brand{
  max-width: 420px;
}

.footer-logo img{
  display: block;
  margin-bottom: 18px;
}

.footer-desc{
  margin: 0 0 18px;
  line-height: 1.7;
  opacity: 0.8;
}

/* 연락처 리스트 */
.footer-contact{
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

.footer-contact li + li{
  margin-top: 4px;
}

.footer-contact strong{
  display: inline-block;
  width: 3.8em;
  font-weight: 600;
  color: #ffffff;
}

.footer-contact a{
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-contact a:hover{
  color: #ff7be0;
  border-color: #ff7be0;
  transform: translateY(-1px);
}

/* 퀵 메뉴 */
.footer-menu .footer-title{
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 4px 0 14px;
  color: rgba(255,255,255,0.6);
}

.footer-menu-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.footer-menu-list li{
  margin: 0;
}

.footer-menu-list a{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  padding-left: 2px;
  transition: color 0.18s ease;
}

/* 작은 네온 포인트 */
.footer-menu-list a::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle, #ff9ed1 0, #ff5abf 40%, #ff006f 100%);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.footer-menu-list a:hover{
  color: #ffffff;
}

.footer-menu-list a:hover::before{
  opacity: 1;
  transform: scale(1);
}

/* 하단 카피라이트 */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 16px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* =========================
   Admin Bar (Desktop Only)
   ========================= */
@media (min-width: 783px){
  .admin-bar{
    --adminbar: 46px;
  }
}


/* =========================
   ≤ 1024px : Reviews
   ========================= */
@media (max-width: 1024px){
  .reviews-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* =========================
   ≤ 960px : Contact 레이아웃
   ========================= */
@media (max-width: 960px){
  .contact-grid{
    grid-template-columns: 1fr;
  }

  .contact-map-wrap{
    order: -1;
  }
}


/* =========================
   ≤ 900px : Gallery / Blog
   ========================= */
@media (max-width: 900px){
  .gallery-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* =========================
   ≤ 768px : 공통 모바일 레이아웃
   ========================= */
@media (max-width: 768px){
  /* Footer */
  .site-footer{
    padding: 40px 0 24px;
  }

  .footer-inner{
    flex-direction: column;
    gap: 32px;
  }

  .footer-brand{
    max-width: none;
  }

  /* Why 섹션 */
  .why-header{
    text-align: left;
  }

  .why-card{
    grid-template-columns: 1fr;
    padding: 18px 16px;
  }

  .why-photo{
    order: -1;
  }

  /* Hero 섹션 */
  .hero-inner{
    padding: 24px 16px 72px;
  }

  .hero-sub{
    max-width: 90%;
  }

  /* Header 레이아웃 */
  .header-inner{
    grid-template-columns: auto 1fr auto;
  }

  .inside-header{
    padding-right: 15px;
    padding-left: 15px;
  }
}


/* =========================
   ≤ 640px : 세부 모바일 튜닝
   ========================= */
@media (max-width: 640px){
  /* Contact 카드 */
  .contact-info-inner{
    padding: 18px 16px 16px;
    border-radius: 18px;
  }

  .contact-info-card::before{
    border-radius: 20px;
  }

  .contact-row{
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .contact-btn-main,
  .contact-btn-sub{
    width: 100%;
    justify-content: center;
  }

  /* Reviews / Blog / Gallery 1열 */
  .reviews-grid{
    grid-template-columns: 1fr;
  }

  .blog-grid{
    grid-template-columns: 1fr;
  }

  .gallery-grid{
    grid-template-columns: 1fr;
  }
}
