:root{
  --bg-side: rgba(155, 133, 104, 0.6);
  --bg-mid: rgba(0, 0, 0, 0);
  --text: #111;
  --muted: rgba(17, 17, 17, 0.72);
  --card: rgba(255, 255, 255, 0.75);
  --border: rgba(0, 0, 0, 0.08);
  --footer-bg: #000;
  --footer-text: #fff;
  --footer-muted: #99a1af;
  --footer-divider: #1e2939;
}

*{box-sizing:border-box}
html,body{height:100%}
html{ overflow-x: hidden; }
body{
  margin:0;
  max-width:100vw;
  overflow-x: hidden;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  background:#fafaf9;
}

.container{
  width:min(1120px, calc(100% - 32px));
  margin-inline:auto;
}
.container--wide{
  width:min(1216px, calc(100% - 32px));
}

/* Header (Figma 1:528) */
.site-header{ position:sticky; top:0; z-index:10; max-width:100%; overflow-x: hidden; }

/* 상단 공지 (1:556) - 다크 그라데이션, 52px */
.announce{
  height:52px;
  background: linear-gradient(180deg, #9b8568 0%, #3d2f1f 50%, #9b8568 100%);
  overflow:hidden;
}
.announce__track{
  height:100%;
  display:flex;
  width:max-content;
  animation: marquee 24s linear infinite;
}
.announce__group{
  display:flex;
  align-items:center;
  gap:32px;
  padding-inline:24px;
  white-space:nowrap;
}
.announce__item{
  font-family: "Pretendard", -apple-system, sans-serif;
  font-weight:300;
  font-size:14px;
  line-height:20px;
  letter-spacing:4.2px;
  color:#fff;
}
.announce__icon{
  width:20px;
  height:20px;
  flex-shrink:0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='m12 2 2.4 7.4h7.6l-6 4.6 2.3 7-6.3-4.6-6.3 4.6 2.3-7-6-4.6h7.6z'/%3E%3C/svg%3E") no-repeat center / contain;
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .announce__track{ animation: none; }
}

/* 메인 네비 (1:529) - 하단선 #c9a86a, 로고·메뉴·아이콘 */
.site-nav{
  border-bottom:1px solid #c9a86a;
  padding-top:16px;
  padding-bottom:1px;
  padding-inline:24px;
  background: rgba(255,255,255,0.95);
}
.site-nav__inner{
  height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  max-width:1216px;
  margin:0 auto;
}
.site-nav__brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#704214;
  min-width:0;
}
.site-nav__logo{
  width:48px;
  height:48px;
  flex-shrink:0;
  border-radius:50%;
  background: linear-gradient(135deg, #c9a86a 0%, #704214 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:600;
  color:#fff;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  letter-spacing:0.02em;
}
.site-nav__brandWrap{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0;
}
.site-nav__brandImage{
  display:block;
  height:28px;
  width:auto;
  object-fit:contain;
}
.site-nav__brandText{
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight:600;
  font-size:16px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#704214;
  line-height:1.2;
}
.site-nav__brandSub{
  font-size:11px;
  letter-spacing:0.02em;
  color:rgba(112,66,20,0.85);
  margin-top:2px;
  line-height:1.2;
}
.site-nav__menu{
  display:flex;
  align-items:center;
  gap:48px;
  flex:1;
  justify-content:center;
}
.site-nav__link{
  font-family: "Pretendard", -apple-system, sans-serif;
  font-weight:500;
  font-size:14px;
  line-height:20px;
  letter-spacing:0.7px;
  text-transform:uppercase;
  color:#704214;
  text-decoration:none;
  padding:4px 0;
}
.site-nav__link:hover{ color:#3d2f1f; }
.site-nav__actions{
  display:flex;
  align-items:center;
  gap:4px;
  min-width:128px;
  justify-content:flex-end;
}
.site-nav__iconBtn{
  width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:50%;
  background:transparent;
  color:#704214;
  cursor:pointer;
  padding:0;
}
.site-nav__iconBtn--filled{
  background:#704214;
  color:#fff;
}
.site-nav__iconBtn:focus-visible{
  outline:2px solid #704214;
  outline-offset:2px;
}

/* 햄버거 버튼 (데스크톱에서 숨김) */
.site-nav__hamburger{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #704214;
}
.site-nav__hamburger-bar{
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
.site-nav__hamburger[aria-expanded="true"] .site-nav__hamburger-bar:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.site-nav__hamburger[aria-expanded="true"] .site-nav__hamburger-bar:nth-child(2){
  opacity: 0;
}
.site-nav__hamburger[aria-expanded="true"] .site-nav__hamburger-bar:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}
.site-nav__hamburger:focus-visible{
  outline: 2px solid #704214;
  outline-offset: 2px;
}

/* 모바일: 햄버거 메뉴, 로고 좌측 고정 */
@media (max-width: 768px){
  .site-nav{
    padding-inline: 16px;
  }
  .announce__group{
    padding-inline: 16px;
  }
  .site-nav__inner{
    position: relative;
    gap: 12px;
    min-width: 0;
  }
  .site-nav__brand{
    flex-shrink: 0;
    min-width: 0;
    margin-right: auto;
  }
  .site-nav__brandWrap{
    min-width: 0;
  }
  .site-nav__brandImage{
    height: 24px;
    max-width: 120px;
    object-fit: contain;
  }
  .site-nav__hamburger{
    display: flex;
    flex-shrink: 0;
    margin-left: auto;
  }
  .site-nav__menu{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid #c9a86a;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    display: none;
  }
  .site-header.is-menu-open .site-nav__menu{
    display: flex;
  }
  .site-header.is-menu-open{
    overflow: visible;
  }
  .site-nav__menu .site-nav__link{
    color: #704214;
  }
  .site-nav__link{
    display: block;
    padding: 14px 0;
    font-size: 14px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .site-nav__link:last-child{
    border-bottom: none;
  }
  .site-nav__actions{
    flex-shrink: 0;
    min-width: auto;
  }
  .container,
  .container--wide{
    width: 100%;
  }
  .hero-figma__inner{
    padding-inline: 16px;
  }
  .page{
    padding-inline: 0;
  }
}

/* Page */
.page{
  min-height: calc(100vh - 22px);
  /* padding-block: 48px 72px; */
}

.hero{
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
}
.hero__title{
  margin:0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.hero__subtitle{
  margin: 10px 0 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.55;
}

/* Hero (Figma node-id 1:8) */
.hero-figma{
  background:#fafaf9;
}
.hero-figma__inner{
  padding-top:48px;
  padding-inline:32px;
  padding-bottom:56px;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:0;
}
.hero-figma__title{
  margin:0;
  text-align:center;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-weight:500;
  font-size:clamp(32px, 5vw, 60px);
  line-height:1.25;
  color:#1a1a1a;
  min-height:1.25em;
}
.hero-figma__grid{
  position:relative;
  width:100%;
  max-width:1216px;
  margin:64px auto 0;
  height:450px;
}
.hero-figma__card{
  position:absolute;
  top:0;
}
/* 왼쪽 카드 (Figma node 1:7) - 배경만 blur(backdrop-filter), 내용은 선명 */
.hero-figma__card--left{
  left:0;
  width:320px;
  display:flex;
  flex-direction:column;
  gap:24px;
  background:#f8f7f4;
  border-radius:12px;
  padding:24px;
  box-sizing:border-box;
}
.hero-figma__card--center{
  left:448px;
  width:320px;
  height:450px;
}
.hero-figma__card--right{
  right:0;
  left:auto;
  width:320px;
  height:320px;
}
@media (min-width: 1217px){
  .hero-figma__card--center{
    left:50%;
    margin-left:-160px;
  }
}

.hero-figma__img{
  background:#d1d5db;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex-shrink:0;
}
.hero-figma__img--rect{
  width:320px;
  height:240px;
}
.hero-figma__img--square{
  width:320px;
  height:450px;
  position:relative;
  z-index:1;
}
.hero-figma__photo{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}
.hero-figma__img--circle{
  width:320px;
  height:320px;
  border-radius:50%;
  position:relative;
  z-index:1;
}
.hero-figma__img--rect{
  position:relative;
  z-index:1;
}

.hero-figma__icon{
  width:96px;
  height:96px;
  display:block;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Cpath d='M8 16l2.5-2.5a1 1 0 011.4 0L14 15l2.1-2.1a1 1 0 011.4 0L20 16'/%3E%3Ccircle cx='9' cy='9' r='1.2' fill='%23999'/%3E%3C/svg%3E");
}
.hero-figma__icon--sm{
  width:64px;
  height:64px;
}

.hero-figma__ring{
  position:absolute;
  left:50%;
  top:50%;
  width:450px;
  height:450px;
  margin-left:-225px;
  margin-top:-225px;
  pointer-events:none;
  z-index:0;
  border:2px dashed rgba(201,168,106,0.6);
  border-radius:50%;
  box-sizing:border-box;
}

.hero-figma__copy{
  margin:0;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight:600;
  font-size:20px;
  line-height:32.5px;
  color:#374151;
  max-width:264px;
}

@media (max-width: 1216px){
  .hero-figma__grid{
    height:auto;
    margin-top:48px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:32px;
  }
  .hero-figma__card{
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    width:100%;
    max-width:320px;
    margin-inline:auto;
  }
  .hero-figma__card--left{ gap:24px; }
  .hero-figma__card--center{ height:auto; margin-left:0; }
  .hero-figma__img--square{ height:400px; }
  .hero-figma__card--right{ height:auto; }
  .hero-figma__ring{ display:none; }
  .hero-figma__copy{ max-width:100%; }
}

.content-grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.card{
  grid-column: span 4;
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(10px);
}
.card__title{
  margin:0;
  font-size:16px;
  letter-spacing:-0.01em;
}
.card__body{
  margin: 8px 0 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Top events section (Figma selection 1:35) */
.top-events{
  background:#fff;
  padding-top:48px;
  padding-bottom:48px;
}
.top-events__title{
  margin:0;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight:600;
  font-size:30px;
  line-height:36px;
  color:#1a1a1a;
}
.top-events__grid{
  margin-top:24px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:20px;
}
.event-card{
  position:relative;
  background:#f8f8f8;
  border-radius:10px;
  padding: 48px 20px 20px 20px;
  min-height:176px;
}
.event-card__badge{
  position:absolute;
  top:16px;
  left:16px;
  height:20px;
  padding-inline:10px;
  border-radius:4px;
  background:#704214;
  color:#fff;
  font-size:12px;
  line-height:20px;
}
.event-card__name{
  margin:0;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight:600;
  font-size:16px;
  line-height:24px;
  color:#1a1a1a;
}
.event-card__bottom{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.event-card__price{
  display:flex;
  align-items:flex-end;
  gap:4px;
  color:#1a1a1a;
}
.event-card__price strong{
  font-size:20px;
  line-height:28px;
  font-weight:400;
}
.event-card__price span{
  font-size:16px;
  line-height:24px;
  color:#4a5565;
  transform: translateY(-2px);
}
.event-card__cta{
  width:36px;
  height:36px;
  border:0;
  border-radius:9999px;
  background:#704214;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex: 0 0 auto;
}
.event-card__cta img{ width:16px; height:16px; display:block; }
.event-card__cta:focus-visible{
  outline:4px solid rgba(112,66,20,0.22);
  outline-offset:2px;
}

/* About page (Figma node 56:2894) - services와 동일하게 배경 이미지 + 반투명 헤더 */
.about-hero{
  position:relative;
  height: 384px;
  overflow: hidden;
}
.about-hero__bg{
  position:absolute;
  inset:0;
  background-image: url("img/about-hero.png");
  background-size: cover;
  background-position: center;
}
.about-hero__overlay{
  position:absolute;
  inset:0;
  background: rgba(9,5,2,0.55);
}
.about-hero__inner{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:8px;
}
.about-hero__title{
  margin:0;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  color:#fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.about-hero__titleBase{ margin-right: 10px; }
.about-hero__titleAccent{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.about-hero__subtitle{
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.about-hero__subtitle + .about-hero__subtitle{ margin-top: 4px; }
.about-hero__badge{
  width:96px;
  height:96px;
  border-radius: 9999px;
  border: 2px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
  margin: 24px auto 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}
.about-hero__badgeIcon{
  width:40px;
  height:40px;
  opacity: 0.9;
  background-repeat:no-repeat;
  background-size:40px 40px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%3E%3Cpath%20d='M4%207.5A3.5%203.5%200%200%201%207.5%204h9A3.5%203.5%200%200%201%2020%207.5v9A3.5%203.5%200%200%201%2016.5%2020h-9A3.5%203.5%200%200%201%204%2016.5v-9Z'%20stroke='%23fff'%20stroke-width='1.5'/%3E%3Cpath%20d='M7%2015l2.6-2.6a1%201%200%200%201%201.4%200L13%2014.4l1.1-1.1a1%201%200%200%201%201.4%200L18%2015'%20stroke='%23fff'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3Cpath%20d='M9%209.2a1.2%201.2%200%201%200%200%202.4%201.2%201.2%200%200%200%200-2.4Z'%20fill='%23fff'/%3E%3C/svg%3E");
}

.about-content{
  background:#fff;
  padding-top: 80px;
  padding-bottom: 80px;
}
.about-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 64px;
  row-gap: 80px;
}
.about-card{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.about-card--offset{ padding-top: 96px; }
.about-card--offset2{ padding-top: 96px; }
.about-card__media{
  height: 661px;
  border-radius: 10px;
  background:#e5e7eb;
  display:flex;
  align-items:center;
  justify-content:center;
}
.about-card__media--sm{
  height: 372px;
}
.about-card__media--smWide{
  height: 372px;
  max-width: 496px;
}
.about-card__mediaIcon{
  width:64px;
  height:64px;
  opacity:0.6;
  background-repeat:no-repeat;
  background-size:64px 64px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%3E%3Cpath%20d='M4%207.5A3.5%203.5%200%200%201%207.5%204h9A3.5%203.5%200%200%201%2020%207.5v9A3.5%203.5%200%200%201%2016.5%2020h-9A3.5%203.5%200%200%1%204%2016.5v-9Z'%20stroke='%23555'%20stroke-width='1.5'/%3E%3Cpath%20d='M7%2015l2.6-2.6a1%201%200%200%201%201.4%200L13%2014.4l1.1-1.1a1%201%200%200%201%201.4%200L18%2015'%20stroke='%23555'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3Cpath%20d='M9%209.2a1.2%201.2%200%201%200%200%202.4%201.2%201.2%200%200%200%200-2.4Z'%20fill='%23555'/%3E%3C/svg%3E");
}
.about-card__title{
  margin:0;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight:600;
  font-size: 30px;
  line-height: 36px;
  color:#1a1a1a;
}
.about-card__accent{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-weight: 500;
  color:#704214;
}
.about-card__desc{
  margin: 8px 0 0 0;
  font-size: 14px;
  line-height: 20px;
  color:#4a5565;
}
.about-banner{
  position:relative;
  height:568px;
  overflow:hidden;
}
.about-banner__bg{
  position:absolute;
  inset:0;
  background: url("img/about-banner.jpg") center center / cover no-repeat;
}
.about-banner__bgIcon{
  width:96px;
  height:96px;
  opacity:0.2;
  background-repeat:no-repeat;
  background-size:96px 96px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%3E%3Cpath%20d='M4%207.5A3.5%203.5%200%200%1%207.5%204h9A3.5%203.5%200%200%1%2020%207.5v9A3.5%203.5%200%200%1%2016.5%2020h-9A3.5%203.5%200%200%1%204%2016.5v-9Z'%20stroke='%23fff'%20stroke-width='1.5'/%3E%3Cpath%20d='M7%2015l2.6-2.6a1%201%200%200%1%201.4%200L13%2014.4l1.1-1.1a1%201%200%200%1%201.4%200L18%2015'%20stroke='%23fff'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3Cpath%20d='M9%209.2a1.2%201.2%200%201%200%200%202.4%201.2%201.2%200%200%0%200-2.4Z'%20fill='%23fff'/%3E%3C/svg%3E");
}
.about-banner__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.25);
}
.about-banner__inner{
  position:relative;
  padding: 128px 32px 80px;
  max-width: 1216px;
  margin: 0 auto;
}
.about-banner__title{
  margin:0;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight:600;
  font-size: 48px;
  line-height: 60px;
  color:#fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.about-banner__desc{
  margin: 24px 0 0 0;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
}

@media (max-width: 900px){
  .about-hero{ height: 320px; }
  .about-hero__title{ font-size: 40px; line-height: 44px; }
  .about-content{ padding-top: 64px; padding-bottom: 64px; }
  .about-grid{ grid-template-columns: 1fr; row-gap: 56px; }
  .about-card--offset, .about-card--offset2{ padding-top: 0; }
  .about-card__media{ height: 460px; }
  .about-card__media--sm, .about-card__media--smWide{ height: 320px; }
  .about-banner__inner{ padding: 96px 24px 64px; }
  .about-banner__title{ font-size: 38px; line-height: 48px; }
}
@media (max-width: 560px){
  .about-hero{ height: 320px; }
  .about-hero__title{ font-size: 34px; line-height: 40px; }
  .about-hero__subtitle{ font-size: 16px; }
  .about-card__title{ font-size: 24px; line-height: 32px; }
  .about-banner{ height: 520px; }
  .about-banner__inner{ padding: 72px 16px 56px; }
  .about-banner__title{ font-size: 28px; line-height: 36px; }
}

/* Treatment page (Figma node 1:894) */
.treat-hero{
  position:relative;
  height:384px;
  overflow:hidden;
}
.treat-hero__bg{
  position:absolute;
  inset:0;
  /* 기존 프로젝트 이미지(섹션 배너) 재사용 */
  background-image: url("img/4a9bae238b93203e03c1b4d6942b3ad2d784a6e7.png");
  background-size: cover;
  background-position: center;
}
.treat-hero__overlay{
  position:absolute;
  inset:0;
  background: rgba(9, 5, 2, 0.4);
}
.treat-hero__inner{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  text-align:center;
}
.treat-hero__title{
  margin:0;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight:600;
  font-size:48px;
  line-height:48px;
  color:#fff;
}
.treat-hero__subtitle{
  margin:0;
  font-size:20px;
  line-height:28px;
  color:#fff;
}

.treat-grid{
  background:#fff;
  padding-top:80px;
  padding-bottom:80px;
}
.treat-grid__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:32px;
}
.treat-tile{
  position:relative;
  border-radius:10px;
  overflow:hidden;
  background:#d1d5dc;
  height:384px;
}
.treat-tile__media{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.treat-tile__icon{
  width:80px;
  height:80px;
  opacity:0.65;
  background-repeat:no-repeat;
  background-size:80px 80px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%3E%3Cpath%20d='M4%207.5A3.5%203.5%200%200%1%207.5%204h9A3.5%203.5%200%200%1%2020%207.5v9A3.5%203.5%200%200%1%2016.5%2020h-9A3.5%203.5%200%200%1%204%2016.5v-9Z'%20stroke='%23555'%20stroke-width='1.5'/%3E%3Cpath%20d='M7%2015l2.6-2.6a1%201%200%200%1%201.4%200L13%2014.4l1.1-1.1a1%201%200%200%1%201.4%200L18%2015'%20stroke='%23555'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3Cpath%20d='M9%209.2a1.2%201.2%200%201%200%200%202.4%201.2%201.2%200%200%0%200-2.4Z'%20fill='%23555'/%3E%3C/svg%3E");
}
.treat-tile__title{
  position:absolute;
  left:32px;
  bottom:32px;
  margin:0;
  max-width: 320px;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight:600;
  font-size:30px;
  line-height:36px;
  color:#1e2939;
}

.treat-cta{
  background:#704214;
  padding-top:80px;
  padding-bottom:80px;
  text-align:center;
}
.treat-cta__title{
  margin:0;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight:600;
  font-size:36px;
  line-height:40px;
  color:#fff;
}
.treat-cta__desc{
  margin: 24px 0 0 0;
  font-size:18px;
  line-height:28px;
  color: rgba(255,255,255,0.9);
}
.treat-cta__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:56px;
  padding-inline: 28px;
  margin-top: 32px;
  border-radius: 9999px;
  background:#fff;
  color:#704214;
  text-decoration:none;
  font-size:16px;
  font-weight:600;
}
.treat-cta__btn:focus-visible{
  outline:4px solid rgba(255,255,255,0.35);
  outline-offset:2px;
}

/* Services page (Figma 1:1188, hero 1:1401) */
.page-services .page{
  padding-top:0;
}
.page-services .services-hero{
  margin-top:-65px;
  padding-top:65px;
}
.page-services .site-nav{
  background:transparent;
  border-bottom-color: rgba(255,255,255,0.25);
}
.page-services .site-nav .site-nav__link{
  color:#fff;
}
.page-services .site-nav .site-nav__link:hover{
  color: rgba(255,255,255,0.85);
}
.page-services .site-nav .site-nav__brandWrap .site-nav__brandImage{
  filter: brightness(0) invert(1);
}
.page-services .site-nav .site-nav__iconBtn{
  color:#fff;
  border-color: rgba(255,255,255,0.4);
}
.page-services .site-nav .site-nav__iconBtn--filled{
  background:#fff;
  border-color:#fff;
  color:#704214;
}
.page-services .site-nav__hamburger{
  color:#fff;
}
.page-services .site-nav__menu .site-nav__link{
  color:#704214;
}
/* 스크롤 시 헤더 기존 색상으로 (우선 적용) */
.page-services .site-header.is-scrolled .site-nav{
  background: rgba(255,255,255,0.95) !important;
  border-bottom-color: #c9a86a !important;
}
.page-services .site-header.is-scrolled .site-nav .site-nav__link{
  color: #704214 !important;
}
.page-services .site-header.is-scrolled .site-nav .site-nav__link:hover{
  color: #3d2f1f !important;
}
.page-services .site-header.is-scrolled .site-nav__brandWrap .site-nav__brandImage{
  filter: none !important;
}
.page-services .site-header.is-scrolled .site-nav__hamburger{
  color: #704214 !important;
}
.page-services .site-header.is-scrolled .site-nav__hamburger .site-nav__hamburger-bar{
  background-color: #704214 !important;
}

/* Treatment page: header overlay on hero (Figma 1:898) */
.page-treatment .page{
  padding-top:0;
}
.page-treatment .treat-hero{
  margin-top:-65px;
  padding-top:65px;
}
.page-treatment .site-nav{
  background:transparent;
  border-bottom-color: rgba(255,255,255,0.25);
}
.page-treatment .site-nav .site-nav__link{
  color:#fff;
}
.page-treatment .site-nav .site-nav__link:hover{
  color: rgba(255,255,255,0.85);
}
.page-treatment .site-nav .site-nav__brandWrap .site-nav__brandImage{
  filter: brightness(0) invert(1);
}
.page-treatment .site-nav .site-nav__iconBtn{
  color:#fff;
  border-color: rgba(255,255,255,0.4);
}
.page-treatment .site-nav .site-nav__iconBtn--filled{
  background:#fff;
  border-color:#fff;
  color:#704214;
}
.page-treatment .site-nav__hamburger{
  color:#fff;
}
.page-treatment .site-nav__menu .site-nav__link{
  color:#704214;
}
/* 스크롤 시 헤더 기존 색상으로 (우선 적용) */
.page-treatment .site-header.is-scrolled .site-nav{
  background: rgba(255,255,255,0.95) !important;
  border-bottom-color: #c9a86a !important;
}
.page-treatment .site-header.is-scrolled .site-nav .site-nav__link{
  color: #704214 !important;
}
.page-treatment .site-header.is-scrolled .site-nav .site-nav__link:hover{
  color: #3d2f1f !important;
}
.page-treatment .site-header.is-scrolled .site-nav__brandWrap .site-nav__brandImage{
  filter: none !important;
}
.page-treatment .site-header.is-scrolled .site-nav__hamburger{
  color: #704214 !important;
}
.page-treatment .site-header.is-scrolled .site-nav__hamburger .site-nav__hamburger-bar{
  background-color: #704214 !important;
}

/* About 페이지: 히어로 배경 이미지 + 반투명 헤더 (services/treatment 동일) */
.page-about .about-hero{
  margin-top: -65px;
  padding-top: 65px;
}
.page-about .site-nav{
  background: transparent;
  border-bottom-color: rgba(255,255,255,0.25);
}
.page-about .site-nav .site-nav__link{
  color: #fff;
}
.page-about .site-nav .site-nav__link:hover{
  color: rgba(255,255,255,0.85);
}
.page-about .site-nav .site-nav__brandWrap .site-nav__brandImage{
  filter: brightness(0) invert(1);
}
.page-about .site-nav__hamburger{
  color: #fff;
}
.page-about .site-nav__menu .site-nav__link{
  color: #704214;
}
.page-about .site-header.is-scrolled .site-nav{
  background: rgba(255,255,255,0.95) !important;
  border-bottom-color: #c9a86a !important;
}
.page-about .site-header.is-scrolled .site-nav .site-nav__link{
  color: #704214 !important;
}
.page-about .site-header.is-scrolled .site-nav .site-nav__link:hover{
  color: #3d2f1f !important;
}
.page-about .site-header.is-scrolled .site-nav__brandWrap .site-nav__brandImage{
  filter: none !important;
}
.page-about .site-header.is-scrolled .site-nav__hamburger{
  color: #704214 !important;
}
.page-about .site-header.is-scrolled .site-nav__hamburger .site-nav__hamburger-bar{
  background-color: #704214 !important;
}

.services-hero{
  position:relative;
  height: 384px;
  overflow:hidden;
}
.services-hero__bg{
  position:absolute;
  inset:0;
  background-image: url("img/4a9bae238b93203e03c1b4d6942b3ad2d784a6e7.png");
  background-size: cover;
  background-position: center 25%;
}
.services-hero__overlay{
  position:absolute;
  inset:0;
  background: rgba(9,5,2,0.4);
}
.services-hero__inner{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:12px;
}
.services-hero__title{
  margin:0;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-weight:600;
  font-size:48px;
  line-height:1.15;
  color:#fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.services-hero__subtitle{
  margin:0;
  font-size:14px;
  line-height:20px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.services-tabs{
  background:#fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.services-tabs__row{
  display:flex;
  align-items:center;
  gap:10px;
  padding-block: 14px;
  overflow:auto;
}
.services-tab{
  height:28px;
  padding-inline: 14px;
  border-radius: 9999px;
  border: 1px solid rgba(0,0,0,0.08);
  background:#f3f4f6;
  color:#111827;
  font-size:11px;
  line-height: 28px;
  white-space:nowrap;
  cursor:pointer;
}
.services-tab--active{
  background:#704214;
  border-color:#704214;
  color:#fff;
}
.services-tab:focus-visible{
  outline:4px solid rgba(112,66,20,0.22);
  outline-offset:2px;
}

.services-main{
  background:#f9fafb;
  padding-top: 24px;
  padding-bottom: 72px;
}
.services-layout{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 24px;
  align-items:start;
}
.services-list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* 기존 더미 카드 제거: data-category-id가 있는 DB 카드만 노출 */
.services-list .svc-card:not([data-category-id]){
  display:none;
}
.svc-card{
  background:#fff;
  border-radius:10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.10);
  padding: 24px;
}
.svc-card__row{
  display:flex;
  gap:24px;
}
.svc-card__thumb{
  width:160px;
  height:160px;
  border-radius:10px;
  background:#e5e7eb;
  position:relative;
  flex: 0 0 auto;
}
.svc-card--has-thumb .svc-card__thumb::after{
  display:none;
}
.svc-card__thumbImg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:10px;
}
.svc-card__thumb::after{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width:64px;
  height:64px;
  opacity:0.65;
  background-repeat:no-repeat;
  background-size:64px 64px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%3E%3Cpath%20d='M4%207.5A3.5%203.5%200%200%1%207.5%204h9A3.5%203.5%200%200%1%2020%207.5v9A3.5%203.5%200%200%1%2016.5%2020h-9A3.5%203.5%200%200%1%204%2016.5v-9Z'%20stroke='%23555'%20stroke-width='1.5'/%3E%3Cpath%20d='M7%2015l2.6-2.6a1%201%200%200%1%201.4%200L13%2014.4l1.1-1.1a1%201%200%200%1%201.4%200L18%2015'%20stroke='%23555'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3Cpath%20d='M9%209.2a1.2%201.2%200%201%200%200%202.4%201.2%201.2%200%200%0%200-2.4Z'%20fill='%23555'/%3E%3C/svg%3E");
}
.svc-card__body{
  flex: 1 1 auto;
  min-width: 0;
  position:relative;
}
.svc-card__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:24px;
  padding-inline: 12px;
  border-radius:4px;
  background:#fb2c36;
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing: 0.02em;
}
.svc-card__title{
  margin: 8px 0 0 0;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight:600;
  font-size:20px;
  line-height:28px;
  color:#1a1a1a;
}
.svc-card__desc{
  margin: 8px 0 0 0;
  font-size:14px;
  line-height: 22.75px;
  color:#4a5565;
  max-width: 560px;
}
.svc-card__meta{
  margin-top: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.svc-price{
  display:flex;
  align-items:baseline;
  gap:12px;
  flex-wrap:wrap;
}
.svc-price__old{
  font-size:14px;
  line-height:20px;
  color:#99a1af;
  text-decoration: line-through;
}
.svc-price__new{
  font-size:20px;
  line-height:28px;
  color:#101828;
  font-weight:700;
}
.svc-price__off{
  font-size:14px;
  line-height:20px;
  color:#fb2c36;
  font-weight:700;
}
.svc-card__cta{
  height:36px;
  padding-inline: 18px;
  border-radius:9999px;
  border:0;
  background:#704214;
  color:#fff;
  font-size:14px;
  line-height:20px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  flex: 0 0 auto;
}
.svc-card__cta:focus-visible{
  outline:4px solid rgba(112,66,20,0.22);
  outline-offset:2px;
}

.services-aside__card{
  background:#fff;
  border-radius:10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.10);
  padding: 24px;
  min-height: 214px;
}
.services-aside__title{
  margin:0;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight:600;
  font-size:14px;
  line-height:20px;
  color:#1a1a1a;
}
.services-aside__empty{
  margin: 18px 0 0 0;
  font-size:12px;
  line-height:16px;
  color:#99a1af;
}

@media (max-width: 1100px){
  .services-layout{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .services-hero{ height: 320px; }
  .services-hero__title{ font-size: 38px; line-height: 40px; }
  .svc-card{ padding: 18px; }
  .svc-card__row{ flex-direction:column; }
  .svc-card__thumb{ width:100%; height: 180px; }
  .svc-card__meta{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 900px){
  .treat-grid__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .treat-tile{ height: 320px; }
}
@media (max-width: 560px){
  .treat-hero{ height: 320px; }
  .treat-hero__title{ font-size: 38px; line-height: 40px; }
  .treat-hero__subtitle{ font-size: 16px; }
  .treat-grid{ padding-top: 56px; padding-bottom: 56px; }
  .treat-grid__grid{ grid-template-columns: 1fr; }
  .treat-tile{ height: 280px; }
  .treat-tile__title{ left: 20px; bottom: 20px; font-size: 24px; line-height: 30px; }
  .treat-cta{ padding-top: 64px; padding-bottom: 64px; }
}

/* Popular treatments section (Figma selection 1:135) */
.popular{
  background:#faf7f2;
  padding-top:96px;
  padding-bottom:96px;
}
.popular__header{
  text-align:center;
}
.popular__sparkle{
  width:64px;
  height:64px;
  display:block;
  margin: 0 auto;
}
.popular__title{
  margin: 24px 0 0 0;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight:600;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.25;
  color:#1a1a1a;
}
.popular__title span{ display:block; }
.popular__star{
  width:48px;
  height:48px;
  display:block;
  margin: 24px auto 0 auto;
}
.popular__grid{
  margin-top:64px;
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap:32px;
}
.popular__item{
  height:217.6px;
  border-radius:10px;
  background:#d1d5dc;
  display:flex;
  align-items:center;
  justify-content:center;
}
.popular__item img{
  width:64px;
  height:64px;
  display:block;
}

/* Figma 선택 영역 (110라인, node 1:175) */
.figma-selection{
  position:relative;
  width:100%;
  margin:0;
  /* Figma 선택 영역 배너 비율에 맞춤 */
  aspect-ratio: 512 / 151;
  min-height:0;
  overflow:hidden;
}
.figma-selection__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.figma-selection__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  /* 배너처럼 꽉 채우되(필요 시 상하 일부 크롭) */
  object-fit:cover;
  object-position: center;
}
.figma-selection__overlay{
  position:absolute;
  inset:0;
  /* 선택 영역 시각 효과(이미지 색감 방해하지 않게) */
  background:transparent;
  pointer-events:none;
}

.figma-selection__text{
  position:absolute;
  left:clamp(16px, 5vw, 72px);
  top:clamp(18px, 7vw, 56px);
  right:clamp(16px, 5vw, 72px);
  max-width:clamp(320px, 55%, 560px);
  color:#fff;
}
.figma-selection__title{
  margin:0;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight:600;
  text-transform:uppercase;
  font-size:clamp(22px, 2.8vw, 40px);
  line-height:1.05;
  letter-spacing:-0.02em;
  text-shadow:0 2px 8px rgba(0,0,0,0.28);
}
.figma-selection__desc{
  margin:10px 0 0 0;
  font-size:clamp(12px, 1.35vw, 14px);
  line-height:1.55;
  max-width:48ch;
  color:rgba(255,255,255,0.92);
  text-shadow:0 2px 8px rgba(0,0,0,0.20);
}

/* Real-time rankings section (Figma selection 1:182) */
.rankings{
  background:#faf7f2;
  padding-top:64px;
  padding-bottom:64px;
}
.rankings__title{
  margin:0;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight:600;
  font-size:30px;
  line-height:36px;
  color:#1a1a1a;
}
.rankings__grid{
  margin-top:48px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 48px;
}
.rankings__row{
  display:flex;
  align-items:center;
  gap:16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}
.rankings__num{
  width:32px;
  height:32px;
  border-radius:9999px;
  background:#704214;
  color:#fff;
  font-size:14px;
  line-height:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.rankings__name{
  margin:0;
  flex:1 1 auto;
  min-width:0;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight:600;
  font-size:16px;
  line-height:24px;
  color:#1a1a1a;
}
.rankings__icon{
  width:16px;
  height:16px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.rankings__icon img{
  width:16px;
  height:16px;
  display:block;
}
.rankings__change{
  font-size:14px;
  line-height:20px;
  color:#99a1af;
  flex-shrink:0;
}

/* Reels section (Figma selection 1:254) */
.reels{
  background: #f3ede3;
  padding-top: 80px;
  padding-bottom: 80px;
}
.reels__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 48px;
}
.reels__title{
  margin:0;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight:600;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 0.02em;
  color:#1a1a1a;
}
.reels__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding-inline: 18px;
  background:#704214;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  line-height:20px;
  font-weight:600;
}
.reels__cta:focus-visible{
  outline: 4px solid rgba(112, 66, 20, 0.22);
  outline-offset: 2px;
}
.reels__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:24px;
}
.reel{margin:0}
.reel__media{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  height: 508px;
  background: linear-gradient(119.358deg, #e5e7eb 0%, #d1d5dc 100%);
}
.reel__placeholder{
  position:absolute;
  inset:0;
  width:64px;
  height:64px;
  margin:auto;
  opacity:0.0;
}
.reel__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.2);
  display:flex;
  align-items:center;
  justify-content:center;
}
.reel__play{
  width:64px;
  height:64px;
  border-radius: 9999px;
  border:0;
  background: rgba(255,255,255,0.9);
  display:flex;
  align-items:center;
  justify-content:center;
  padding-left: 4px;
}
.reel__play img{ width:32px; height:32px; display:block; }
.reel__stats{
  position:absolute;
  right:12px;
  top: 236px;
  display:flex;
  flex-direction:column;
  gap:16px;
  width:40px;
}
.stat{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  color:#fff;
}
.stat__icon{
  width:40px;
  height:40px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.2);
  display:flex;
  align-items:center;
  justify-content:center;
}
.stat__icon img{ width:20px; height:20px; display:block; }
.stat__value{
  font-size:12px;
  line-height:16px;
  font-weight:600;
  color:#fff;
}
.stat--iconOnly .stat__value{ display:none; }
.reel__meta{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding: 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  color:#fff;
}
.reel__handle{
  font-size:14px;
  line-height:20px;
  font-weight:600;
}
.reel__desc{
  margin-top: 8px;
  font-size:12px;
  line-height:16px;
  opacity:0.9;
}

/* Contact section (Figma selection 1:405) */
.contact{
  position: relative;
  background: #fff;
  overflow: hidden;
  padding-block: 96px 110px;
}
.contact__inner{
  position: relative;
  max-width: 896px;
  padding-inline: 32px;
}
.contact__blob{
  position:absolute;
  width:384px;
  height:384px;
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events:none;
}
.contact__blob--right{
  right:-120px;
  top:80px;
  background: rgba(212, 184, 150, 0.10);
}
.contact__blob--left{
  left:-120px;
  top:346px;
  background: rgba(201, 168, 106, 0.10);
}
.contact__header{
  text-align:center;
  margin-bottom: 48px;
}
.contact__mark{
  width:48px;
  height:48px;
  margin: 0 auto 16px auto;
}
.contact__mark img{ width:100%; height:100%; display:block; }
.contact__title{
  margin:0;
  font-family: ui-serif, "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  color: #2a2a2a;
}
.contact__subtitle{
  margin: 14px 0 0 0;
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
}
.contact__form{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.contact__row2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:24px;
}
.field{ display:flex; flex-direction:column; gap:8px; }
.field__label{
  font-size:14px;
  line-height:20px;
  font-weight:600;
  color:#364153;
}
.field__input{
  height:58px;
  padding: 16px 20px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  font-size:16px;
  color:#111827;
  outline:none;
}
.field__input::placeholder{ color:#99a1af; }
.field__input:focus{
  border-color: rgba(112, 66, 20, 0.45);
  box-shadow: 0 0 0 4px rgba(112, 66, 20, 0.12);
}

.phone{
  display:flex;
  gap:12px;
  align-items:stretch;
}
.phone__country{
  width:192px;
  height:62px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-inline: 18px 14px;
  color:#364153;
  flex: 0 0 auto;
}
.phone__flag{ font-size:18px; line-height:1; }
.phone__cc{ font-size:14px; color:#6a7282; margin-left:auto; margin-right:10px; }
.phone__chev{ width:16px; height:16px; display:block; opacity:0.9; }
.phone__input{
  flex: 1 1 auto;
  height:62px;
  padding: 16px 20px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  font-size:16px;
  outline:none;
}
.phone__input::placeholder{ color:#99a1af; }
.phone__input:focus{
  border-color: rgba(112, 66, 20, 0.45);
  box-shadow: 0 0 0 4px rgba(112, 66, 20, 0.12);
}

.picker{
  height:58px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-inline: 21px 18px;
}
.picker__input{
  border:0;
  outline:none;
  font-size:16px;
  width:100%;
}
.picker__input::placeholder{ color:#99a1af; }
.picker__icon{ width:20px; height:20px; display:block; opacity:0.9; flex: 0 0 auto; margin-left: 12px; }

.contact__submit{
  height:68px;
  border:0;
  border-radius:10px;
  background:#704214;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
}
.contact__submit:focus-visible{
  outline: 4px solid rgba(112, 66, 20, 0.25);
  outline-offset: 2px;
}
.contact__submitIcon{ width:20px; height:20px; display:block; }

/* Footer */
.site-footer{
  background: var(--footer-bg);
  color: var(--footer-text);
}
.site-footer__grid{
  padding-top: 64px;
  padding-bottom: 48px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
}
.site-footer__brand{display:flex; flex-direction:column; gap:16px}
.site-footer__logo{
  font-size:30px;
  line-height:36px;
  letter-spacing: 3px;
  color: var(--footer-text);
}
.site-footer__tagline{
  margin:0;
  font-size:14px;
  line-height:22.75px;
  color: var(--footer-muted);
}
.site-footer__heading{
  margin:0;
  font-size:18px;
  line-height:28px;
  font-weight:600;
  letter-spacing: 0.02em;
  color: var(--footer-text);
}
.site-footer__list{
  margin: 16px 0 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.site-footer__link{
  color: var(--footer-muted);
  text-decoration:none;
  font-size:14px;
  line-height:20px;
}
.site-footer__link:hover{ text-decoration:underline; }
.site-footer__social{
  margin-top: 16px;
  display:flex;
  align-items:center;
  gap:16px;
}
.site-footer__icon{
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.site-footer__icon img,
.site-footer__icon svg{
  width:20px;
  height:20px;
  display:block;
}
.site-footer__bottom{
  border-top: 1px solid var(--footer-divider);
  padding-top: 32px;
  padding-bottom: 18px;
}
.site-footer__copyright{
  margin:0;
  text-align:center;
  font-size:14px;
  line-height:20px;
  color: var(--footer-muted);
}

/* Responsive */
@media (max-width: 900px){
  .card{ grid-column: span 6; }
  .site-footer__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact{ padding-block: 72px 90px; }
  .reels__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .top-events__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .popular__grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .page{ padding-block: 28px 52px; }
  .hero{ padding: 22px 18px; border-radius: 16px; }
  .card{ grid-column: span 12; }
  .site-footer__grid{ grid-template-columns: 1fr; gap: 32px; }
  .site-footer__copyright{ text-align:left; }
  .contact__inner{ padding-inline: 0; }
  .contact__row2{ grid-template-columns: 1fr; }
  .phone{ flex-direction:column; }
  .phone__country{ width:100%; }
  .reels__head{ flex-direction:column; align-items:flex-start; }
  .reels__grid{ grid-template-columns: 1fr; }
  .reel__media{ height: 460px; }
  .top-events__grid{ grid-template-columns: 1fr; }
  .popular{ padding-top:72px; padding-bottom:72px; }
  .popular__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap:16px; }
  .popular__item{ height: 170px; }
  .rankings__grid{ grid-template-columns: 1fr; gap: 8px 0; }
}
