:root {
  --yellow: #f5c542;
  --navy: #1f2a37;
  --ivory: #faf8f1;
  --green: #223c29;
  --green-light: #2f4a35;
  --white: #ffffff;
  --text: #222222;
  --muted: #4b5563;
  --line: rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  word-break: keep-all;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  letter-spacing: -0.02em;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: stretch;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.site-header{
  position:fixed;
  top:0;
  left:0;

  width:100%;

  z-index:9999;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.42),
      rgba(0,0,0,.18)
    );

  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);

  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav{
  height:76px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:32px;
}

/* =========================
   LOGO
========================= */

.logo{
  color:#fff;

  font-size:30px;
  font-weight:500;

  line-height:1;
  letter-spacing:.14em;

  white-space:nowrap;

  flex-shrink:0;
}

.logo::after{
  content:"QUIET COMMUNITY SPACE";

  display:block;

  margin-top:8px;

  font-size:10px;
  font-weight:600;

  letter-spacing:.18em;

  opacity:.82;
}

/* =========================
   RIGHT AREA
========================= */

.nav > div{
  display:flex;
  align-items:center;
  gap:24px;
}

/* =========================
   DESKTOP MENU
========================= */

.desktop-nav{
  display:flex;
  align-items:center;
  gap:34px;
}

.desktop-nav a{
  position:relative;

  color:#fff;

  font-size:15px;
  font-weight:700;

  letter-spacing:-0.02em;

  white-space:nowrap;

  opacity:.95;

  transition:.25s ease;
}

.desktop-nav a::after{
  content:"";

  position:absolute;

  left:0;
  bottom:-10px;

  width:0;
  height:1px;

  background:#fff;

  transition:.25s ease;
}

.desktop-nav a:hover{
  opacity:1;
}

.desktop-nav a:hover::after{
  width:100%;
}

/* =========================
   RESERVE BUTTON
========================= */

.header-btn{
  height:44px;

  padding:0 22px;

  border:1px solid rgba(255,255,255,.72);
  border-radius:999px;

  background:rgba(255,255,255,.05);

  color:#fff;

  font-size:14px;
  font-weight:800;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  white-space:nowrap;

  transition:.25s ease;
}

.header-btn:hover{
  background:#fff;
  color:#111;

  transform:translateY(-2px);
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.mobile-menu-btn{
  display:none;

  width:44px;
  height:44px;

  padding:0;

  border:none;
  background:none;

  position:relative;

  cursor:pointer;

  z-index:10001;
}

.mobile-menu-btn span{
  position:absolute;

  left:10px;

  width:24px;
  height:2px;

  background:#fff;

  border-radius:999px;

  transition:.3s ease;
}

.mobile-menu-btn span:nth-child(1){
  top:14px;
}

.mobile-menu-btn span:nth-child(2){
  top:21px;
}

.mobile-menu-btn span:nth-child(3){
  top:28px;
}

/* active */

.mobile-menu-btn.active span:nth-child(1){
  top:21px;
  transform:rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2){
  opacity:0;
}

.mobile-menu-btn.active span:nth-child(3){
  top:21px;
  transform:rotate(-45deg);
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu{
  position:fixed;
  inset:0;

  z-index:9998;

  background:
    linear-gradient(
      to bottom,
      rgba(15,12,10,.98),
      rgba(15,12,10,.96)
    );

  backdrop-filter:blur(14px);

  opacity:0;
  visibility:hidden;

  transition:.3s ease;
}

.mobile-menu.active{
  opacity:1;
  visibility:visible;
}

.mobile-menu-inner{
  width:100%;
  height:100%;

  display:flex;
  flex-direction:column;

  align-items:center;
  justify-content:center;

  gap:28px;

  padding:40px 24px;
}

.mobile-menu-inner a{
  color:#fff;

  font-size:22px;
  font-weight:700;

  letter-spacing:-0.02em;

  transition:.25s ease;
}

.mobile-menu-inner a:hover{
  opacity:.7;
}

.mobile-reserve-btn{
  margin-top:18px;

  width:100%;
  max-width:260px;
  height:54px;

  border:1px solid rgba(255,255,255,.72);
  border-radius:999px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:16px;
  font-weight:800;
}

/* =========================
   MOBILE
========================= */

@media (max-width:1024px){

  .desktop-nav{
    gap:22px;
  }

  .desktop-nav a{
    font-size:14px;
  }

}

@media (max-width:860px){

  .site-header{
    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,.58),
        rgba(0,0,0,.24)
      );
  }

  .nav{
    height:64px;
  }

  .logo{
    font-size:22px;
  }

  .logo::after{
    font-size:8px;
    margin-top:5px;
  }

  .desktop-nav{
    display:none;
  }

  .header-btn{
    display:none;
  }

  .mobile-menu-btn{
    display:block;
  }

}

@media (max-width:420px){

  .logo{
    font-size:18px;
  }

}

/* =========================
   SCROLL HEADER
========================= */

.site-header.scrolled{
  background:
    linear-gradient(
      to bottom,
      rgba(20,18,14,.92),
      rgba(20,18,14,.82)
    );

  border-bottom:1px solid rgba(255,255,255,.06);
}

/* =========================
   MOBILE
========================= */

@media (max-width:860px){

  .site-header{
    background:
      linear-gradient(
        to bottom,
        rgba(15,12,10,.92),
        rgba(15,12,10,.78)
      );
  }

  .nav{
    height:64px;
    gap:18px;
  }

  .logo{
    font-size:22px;
  }

  .logo::after{
    font-size:8px;
    margin-top:5px;
  }

  .desktop-nav{
    display:none;
  }

  .header-btn{
    height:38px;
    padding:0 14px;
    font-size:12px;
  }
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.mobile-menu-btn{
  display:none;

  width:44px;
  height:44px;

  padding:0;

  border:none;
  background:none;

  position:relative;
  z-index:10001;

  cursor:pointer;
}

.mobile-menu-btn span{
  position:absolute;

  left:10px;

  width:24px;
  height:2px;

  background:#fff;

  border-radius:999px;

  transition:.3s ease;
}

.mobile-menu-btn span:nth-child(1){
  top:14px;
}

.mobile-menu-btn span:nth-child(2){
  top:21px;
}

.mobile-menu-btn span:nth-child(3){
  top:28px;
}

/* active */

.mobile-menu-btn.active span:nth-child(1){
  transform:rotate(45deg);
  top:21px;
}

.mobile-menu-btn.active span:nth-child(2){
  opacity:0;
}

.mobile-menu-btn.active span:nth-child(3){
  transform:rotate(-45deg);
  top:21px;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu{
  position:fixed;

  inset:0;

  z-index:9998;

  background:
    linear-gradient(
      to bottom,
      rgba(15,12,10,.98),
      rgba(15,12,10,.95)
    );

  backdrop-filter:blur(14px);

  opacity:0;
  visibility:hidden;

  transition:.3s ease;
}

.mobile-menu.active{
  opacity:1;
  visibility:visible;
}

.mobile-menu-inner{
  width:100%;
  height:100%;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  gap:28px;

  padding:40px 24px;
}

.mobile-menu-inner a{
  color:#fff;

  font-size:22px;
  font-weight:700;

  letter-spacing:-0.02em;

  transition:.25s ease;
}

.mobile-menu-inner a:hover{
  opacity:.7;
}

.mobile-reserve-btn{
  margin-top:18px;

  width:100%;
  max-width:260px;
  height:54px;

  border:1px solid rgba(255,255,255,.7);
  border-radius:999px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:16px;
  font-weight:800;
}

/* =========================
   MOBILE ONLY
========================= */

@media (max-width:860px){

  .mobile-menu-btn{
    display:block;
  }

  .desktop-nav{
    display:none;
  }

}

/* Buttons */

.btn-main,
.btn-line,
.btn-line-dark,
.btn-line-light,
.btn-primary,
.btn-secondary,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 54px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn-main,
.btn-primary {
  background: var(--green-light);
  color: #fff;
}

.btn-line,
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.8);
  background: transparent;
  color: #fff;
}

.btn-line-dark {
  border: 1px solid var(--green-light);
  background: transparent;
  color: var(--green-light);
}

.btn-line-light {
  border: 1px solid rgba(255,255,255,0.7);
  background: transparent;
  color: #fff;
}

.btn-dark {
  background: var(--navy);
  color: #fff;
}

.btn-main:hover,
.btn-line:hover,
.btn-line-dark:hover,
.btn-line-light:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-dark:hover,
.header-btn:hover {
  transform: translateY(-2px);
}

/* Common Section */

.section,
.home-section {
  padding: 100px 0;
  background: var(--ivory);
}

.section-label,
.eyebrow,
.sub-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
}

.title-line {
  width: 56px;
  height: 1px;
  background: var(--green-light);
  margin: 32px 0;
}

.center-line {
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons,
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================
   HOME HERO FINAL
========================= */
.home-hero {
  position: relative;
  min-height: 100vh;

  display: flex;
  align-items: center;

  background-image: url('/assets/images/hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  color: #fff;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.64) 0%,
      rgba(0,0,0,.46) 26%,
      rgba(0,0,0,.16) 62%,
      rgba(0,0,0,.08) 100%
    );
}

.home-hero-inner {
  position: relative;
  z-index: 2;

  width: min(1180px, calc(100% - 48px));
  padding-top: 80px;
}

.home-hero h1 {
  margin: 0 0 28px;

  font-size: clamp(46px, 6.6vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.07em;
  font-weight: 500;
}

.home-hero h1::after {
  content: "";
  display: block;

  width: 58px;
  height: 1px;

  margin-top: 28px;

  background: rgba(255,255,255,.78);
}

.hero-desc {
  margin: 0 0 34px;

  max-width: 420px;

  font-size: 18px;
  line-height: 1.85;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons .btn-main,
.hero-buttons .btn-line {
  min-width: 150px;
  height: 54px;

  border-radius: 8px;

  font-size: 15px;
  font-weight: 800;
}

.hero-buttons .btn-main {
  background: #2f4a35;
  color: #fff;
}

.hero-buttons .btn-line {
  border: 1px solid rgba(255,255,255,.85);
  color: #fff;
  background: rgba(255,255,255,.04);
}

.scroll-mark {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  opacity: .85;
}

.scroll-mark::before {
  content: "";
  display: block;
  width: 18px;
  height: 32px;
  margin: 0 auto 8px;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 999px;
}

.scroll-mark::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 7px;
  transform: translateX(-50%);
  background: rgba(255,255,255,.85);
  border-radius: 999px;
}

/* 모바일 */
@media (max-width: 860px) {
  .home-hero {
    min-height: 100vh;
    padding: 120px 0 90px;

    background-position: center center;
  }

  .home-hero::before {
    background:
      linear-gradient(
        90deg,
        rgba(0,0,0,.70) 0%,
        rgba(0,0,0,.46) 58%,
        rgba(0,0,0,.20) 100%
      );
  }

  .home-hero-inner {
    padding-top: 0;
  }

  .home-hero h1 {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-buttons {
    flex-direction: column;
    max-width: 260px;
  }

  .hero-buttons .btn-main,
  .hero-buttons .btn-line {
    width: 100%;
  }

  .scroll-mark {
    bottom: 22px;
  }
}

/* =========================
   HOME ABOUT SECTION
========================= */

.about-block,
.home-section.about-block {
  padding: 110px 0;
  background: #faf8f1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
  align-items: center;
}

/* 이미지 */

.about-photo {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.about-photo img {
  width: 100%;
  height: 430px;

  object-fit: cover;
  object-position: center center;

  border-radius: 16px;

  transition: transform .5s ease;
}

.about-photo:hover img {
  transform: scale(1.03);
}

/* 텍스트 */

.about-text {
  max-width: 520px;
}

.about-text .section-label {
  display: block;

  margin-bottom: 22px;

  color: #2f4a35;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: .18em;
}

.about-text h2 {
  margin: 0;

  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.32;
  letter-spacing: -0.06em;
  font-weight: 500;

  color: #111;
}

/* 라인 */

.about-text .title-line {
  width: 56px;
  height: 1px;

  margin: 34px 0;

  background: rgba(34,60,41,.35);
}

/* 본문 */

.about-text p {
  margin: 0 0 26px;

  font-size: 17px;
  line-height: 1.95;
  letter-spacing: -0.02em;

  color: #444;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 860px) {

  .about-block,
  .home-section.about-block {
    padding: 72px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-photo img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .about-text {
    max-width: 100%;
  }

  .about-text h2 {
    font-size: 38px;
    line-height: 1.28;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.85;
  }

}

/* =========================
   WHY BLOCK
   screenshot style
========================= */

.why-block{
  padding: 90px 0 110px;
  background: #faf8f1;
}

/* 제목 */

.center-title{
  text-align: center;
  margin-bottom: 56px;
}

.center-title .section-label{
  display: block;

  margin-bottom: 18px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;

  color: #2f4a35;
}

.center-title h2{
  margin: 0;

  font-size: clamp(42px, 4vw, 68px);
  line-height: 1.2;
  letter-spacing: -0.06em;
  font-weight: 500;

  color: #111;
}

/* 카드 영역 */

.why-card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 카드 */

.why-card-grid article{
  background: #f5f1ea;
  border-radius: 18px;
  padding:
    52px
    42px
    46px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* 아이콘 */

.why-card-grid .icon{
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  line-height: 1;
  color: #2f4a35;
}

/* 텍스트 */

.why-card-grid article > div:last-child{
  flex: 1;
}

.why-card-grid h3{
  margin: 0 0 18px;

  font-size: 30px;
  line-height: 1.35;
  letter-spacing: -0.04em;
  font-weight: 600;

  color: #1f2a37;
}

.why-card-grid p{
  margin: 0;

  font-size: 17px;
  line-height: 1.9;
  letter-spacing: -0.02em;

  color: #555;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 860px){

  .why-block{
    padding: 72px 0;
  }

  .center-title{
    margin-bottom: 36px;
  }

  .center-title h2{
    font-size: 40px;
    line-height: 1.28;
  }

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

  .why-card-grid article{
    min-height: auto;
    padding: 34px 28px;
    gap: 22px;
  }

  .why-card-grid .icon{
    width: 100px;
    height: 100px;
    font-size: 34px;
  }

  .why-card-grid h3{
    font-size: 24px;
    margin-bottom: 12px;
  }

  .why-card-grid p{
    font-size: 15px;
    line-height: 1.8;
  }

}

.why-card-grid .icon{
  flex-shrink:0;

  width:100px;
  height:100px;

  display:flex;
  align-items:center;
  justify-content:center;
}

.why-card-grid .icon img{
  width:100px;
  height:100px;

  object-fit:contain;
}

/* =========================
   MONDAY BANNER
========================= */

.monday-banner,
.home-section.monday-banner{
  padding: 0 0 100px;
  background:#faf8f1;
}

.monday-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;

  overflow:hidden;

  border-radius:22px;

  background:#223c29;
}

/* 이미지 */

.monday-img{
  position:relative;
  overflow:hidden;
}

.monday-img img{
  width:100%;
  height:100%;

  min-height:360px;

  object-fit:cover;
  object-position:center center;

  border-radius:0;

  transition:transform .5s ease;
}

.monday-inner:hover .monday-img img{
  transform:scale(1.03);
}

/* 텍스트 */

.monday-copy{
  position:relative;
  padding:
    64px
    72px;
  display:flex;
  flex-direction:column;
  justify-content:center;

  color:#fff;
  background: url(../images/monday-bg.jpg) no-repeat;
  background-size: cover;
  background-position: bottom right;
}

/* 잎 배경 */

.monday-copy::after{
  content:"";

  position:absolute;

  right:-10px;
  bottom:-10px;

  width:240px;
  height:240px;

  background:
    url('/assets/images/leaf-line.svg')
    center / contain
    no-repeat;

  opacity:.12;

  pointer-events:none;
}

/* 라벨 */

.monday-copy .section-label{
  margin-bottom:22px;

  color:rgba(255,255,255,.78);

  font-size:12px;
  font-weight:800;

  letter-spacing:.18em;
}

/* 제목 */

.monday-copy h2{
  margin:0;

  font-size:clamp(38px,4vw,62px);
  line-height:1.28;
  letter-spacing:-0.06em;
  font-weight:500;
}

/* 라인 */

.monday-copy .title-line{
  width:58px;
  height:1px;

  margin:30px 0;

  background:rgba(255,255,255,.58);
}

/* 설명 */

.monday-copy p{
  margin:0 0 36px;

  font-size:18px;
  line-height:1.9;
  letter-spacing:-0.02em;

  color:rgba(255,255,255,.88);
}

/* 버튼 */

.monday-copy .btn-line-light{
  width:max-content;

  min-width:220px;
  height:56px;

  padding:0 28px;

  border:1px solid rgba(255,255,255,.72);
  border-radius:10px;

  background:rgba(255,255,255,.04);

  color:#fff;

  font-size:16px;
  font-weight:800;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  transition:.28s ease;
}

.monday-copy .btn-line-light:hover{
  background:#fff;
  color:#111;

  transform:translateY(-2px);
}

/* =========================
   MOBILE
========================= */

@media (max-width:860px){

  .monday-banner,
  .home-section.monday-banner{
    padding:0 0 72px;
  }

  .monday-inner{
    grid-template-columns:1fr;
  }

  .monday-img img{
    min-height:auto;
    aspect-ratio:16 / 10;
  }

  .monday-copy{
    padding:42px 28px;
  }

  .monday-copy h2{
    font-size:40px;
    line-height:1.3;
  }

  .monday-copy p{
    font-size:15px;
    line-height:1.8;
  }

  .monday-copy .btn-line-light{
    width:100%;
    min-width:100%;
  }

  .monday-copy::after{
    width:160px;
    height:160px;
  }

}

/* =========================
   LOCATION PREVIEW
========================= */
.location-preview{
  padding: 120px 0;
  background: #f8f6f1;
}

.location-wrap{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

.location-info .section-label{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #6b6b6b;
  margin-bottom: 18px;
}

.location-info h2{
  font-size: 46px;
  line-height: 1.35;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 34px;
  letter-spacing: -0.03em;
}

.location-meta{
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
  padding-left: 0;
}

.location-meta li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.location-meta img{
  width: 20px;
  margin-top: 4px;
  opacity: .8;
}

.location-actions{
  display: flex;
  gap: 14px;
}

.location-actions a{
  height: 54px;
  padding: 0 26px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: .25s ease;
}

.btn-naver{
  background: #31472d;
  color: #fff;
}

.btn-naver:hover{
  background: #243420;
}

.btn-kakao{
  border: 1px solid #d8d3ca;
  background: #fff;
  color: #333;
}

.btn-kakao:hover{
  background: #f3efe7;
}

.location-map{
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 400px;
}

.location-map img{
  width: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 991px){

  .location-preview{
    padding: 80px 0;
  }

  .location-wrap{
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .location-info h2{
    font-size: 34px;
  }

  .location-map{
    border-radius: 20px;
  }

  .location-actions{
    flex-direction: column;
  }

  .location-actions a{
    width: 100%;
  }

}

/* =========================
   SUB PAGE HERO GAP FIX
========================= */

.sub-hero {
  position: relative;

  min-height: 560px;
  padding-top: 96px;

  display: flex;
  align-items: center;

  color: #fff;

  background-size: cover;
  background-position: center;
}

.sub-hero-dim {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
}

.sub-hero-inner {
  position: relative;
  z-index: 2;

  padding-top: 30px;
  padding-bottom: 80px;
}

.sub-hero h1 {
  font-size: clamp(52px, 8vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.06em;
  font-weight: 500;
  margin: 0 0 24px;
}

.sub-hero p {
  font-size: 20px;
  line-height: 1.85;
  font-weight: 600;
  max-width: 760px;
}

/* 모바일 */
@media (max-width: 860px) {
  .sub-hero {
    min-height: auto;
    padding: 120px 0 76px;
  }

  .sub-hero-inner {
    padding-top: 0;
  }

  .sub-hero h1 {
    font-size: 42px;
    line-height: 1.18;
  }

  .sub-hero p {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* Layout */

.two-col,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo img,
.two-col img {
  height: 430px;
  border-radius: 14px;
}

.section h2,
.about-text h2,
.center-title h2,
.kahawa-time h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.25;
  letter-spacing: -0.05em;
  margin: 0 0 28px;
  font-weight: 500;
}

.section p,
.about-text p,
.card-grid p,
.feature-list li {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
}

.center-title {
  text-align: center;
  margin-bottom: 50px;
}

/* Cards */

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

.card-grid article {
  background: #f3efe6;
  border-radius: 14px;
  padding: 34px 36px;
}

.card-grid h3 {
  font-size: 21px;
  margin: 0 0 12px;
}

/* Time Grid */

.time-grid,
.three-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.time-grid img,
.three-col img {
  height: 150px;
  border-radius: 10px;
}

.time-grid p {
  text-align: center;
  font-weight: 700;
  margin-top: 12px;
}

/* =========================
   FOOTER
========================= */
.site-footer{
  position: relative;
  overflow: hidden;
  padding: 58px 0 38px;
  background:
    radial-gradient(circle at left, rgba(92,120,70,.35), transparent 35%),
    radial-gradient(circle at right, rgba(72,88,45,.28), transparent 32%),
    linear-gradient(90deg,#23291f 0%, #2f3b24 45%, #25301f 100%);
  color: rgba(255,255,255,.92);
}

.site-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom,
      rgba(255,255,255,.03),
      rgba(255,255,255,0));
  pointer-events:none;
}

.footer-grid{
  position: relative;
  z-index: 2;

  display:grid;
  grid-template-columns: 1.2fr 1.4fr 1.6fr;
  gap: 60px;
  align-items:flex-start;
}

.footer-logo{
  font-size: 36px;
  font-weight: 700;
  letter-spacing: .18em;
  color:#fff;
  margin-bottom: 10px;
}

.footer-sub{
  display:block;
  font-size:11px;
  letter-spacing:.22em;
  color:rgba(255,255,255,.72);
  margin-top:4px;
}

.footer-desc{
  margin-top: 22px;
  font-size:15px;
  line-height:1.9;
  color:rgba(255,255,255,.82);
}

.footer-title{
  font-size:13px;
  font-weight:700;
  letter-spacing:.16em;
  color:#fff;
  margin-bottom:20px;
}

.footer-info{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-info p,
.footer-links a{
  font-size:15px;
  line-height:1.8;
  color:rgba(255,255,255,.82);
  text-decoration:none;
  margin: 0;
}
.footer-links {
  display:flex;
  flex-wrap: wrap;
  gap:10px;
}
.footer-links a {
  flex: 1 0 calc(50% - 5px);
}

.footer-links a:hover{
  color:#fff;
}

.footer-sns{
  display:flex;
  gap:14px;
  align-items:center;
}

.footer-sns a{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.18);

  display:flex;
  align-items:center;
  justify-content:center;

  transition:.25s ease;
  backdrop-filter: blur(4px);
}

.footer-sns a:hover{
  background:rgba(255,255,255,.1);
  transform:translateY(-2px);
}

.footer-sns img{
  width:20px;
  opacity:.92;
}

.footer-bottom{
  margin-top: 48px;
  padding-top: 24px;
  border-top:1px solid rgba(255,255,255,.08);

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.footer-copy{
  font-size:13px;
  color:rgba(255,255,255,.58);
}

.footer-top-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:#2d3926;

  display:flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;
  font-size:18px;
  font-weight:700;

  transition:.25s ease;
}

.footer-top-btn:hover{
  transform:translateY(-3px);
  background:#fff;
}

/* =========================
   MOBILE
========================= */
@media (max-width:991px){

  .site-footer{
    padding: 70px 0 34px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:42px;
  }

  .footer-logo{
    font-size:30px;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

}

/* Admin / Form */

.form-wrap {
  max-width: 720px;
}

.reservation-hero {
  background-image: url('/assets/images/reservation-hero.jpg');
}

.reservation-form {
  background: #fff;
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 20px 45px rgba(31,42,55,.06);
}

.reservation-form label {
  display: block;
  font-weight: 800;
  margin-bottom: 20px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(31,42,55,.16);
  border-radius: 14px;
  font: inherit;
  background: #fff;
}

.admin-wrap {
  width: min(1100px, calc(100% - 40px));
  margin: 60px auto;
  background: #fff;
  border-radius: 24px;
  padding: 30px;
}

/* Responsive */

@media (max-width: 1024px) {
  .container {
    width: min(100%, calc(100% - 36px));
  }

  .logo {
    font-size: 25px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .header-btn {
    height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 34px;
  }
}

@media (max-width: 860px) {
  .container {
    width: calc(100% - 32px);
  }

  .nav {
    height: 64px;
  }

  .site-header {
    background: rgba(20,18,14,.48);
  }

  .logo {
    font-size: 22px;
  }

  .logo::after {
    font-size: 8px;
    margin-top: 6px;
  }

  .desktop-nav {
    display: none;
  }

  .header-btn {
    height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .home-hero,
  .hero {
    min-height: auto;
    padding: 140px 0 90px;
  }

  .home-hero h1,
  .hero h1 {
    font-size: 44px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-buttons,
  .hero-actions {
    flex-direction: column;
  }

  .btn-main,
  .btn-line,
  .btn-line-dark,
  .btn-line-light,
  .btn-primary,
  .btn-secondary,
  .btn-dark {
    width: 100%;
  }

  .section,
  .home-section {
    padding: 72px 0;
  }

  .sub-hero {
    height: auto;
    padding: 130px 0 80px;
  }

  .sub-hero h1 {
    font-size: 48px;
  }

  .sub-hero p {
    font-size: 16px;
  }

  .two-col,
  .about-grid,
  .monday-inner,
  .card-grid,
  .why-card-grid,
  .time-grid,
  .three-col,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-photo img,
  .two-col img,
  .time-grid img,
  .three-col img {
    height: auto;
  }

  .monday-copy {
    padding: 34px 26px;
  }

  .site-footer {
    padding: 44px 0 24px;
  }

  .footer-grid {
    text-align: left;
  }

  .footer-grid strong {
    font-size: 28px;
  }

  .footer-grid p,
  .footer-grid a {
    font-size: 13px;
  }

  .copyright {
    width: calc(100% - 32px);
    margin-top: 26px;
    font-size: 12px;
  }

  .reservation-form {
    padding: 26px;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 24px);
  }

  .logo {
    font-size: 19px;
  }

  .header-btn {
    height: 36px;
    padding: 0 12px;
    font-size: 11px;
  }

  .home-hero h1,
  .hero h1,
  .sub-hero h1 {
    font-size: 40px;
  }
}

/*
space style
*/
.sub-hero {
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.space-hero {
  background-image: url('/assets/images/space-hero.jpg');
}

.sub-hero-dim {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
}

.sub-hero-inner {
  position: relative;
  z-index: 2;
}

.sub-hero h1 {
  font-size: clamp(52px, 8vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.06em;
  margin: 0 0 24px;
  font-weight: 500;
}

.sub-hero p {
  font-size: 22px;
  line-height: 1.8;
  font-weight: 600;
}

.space-intro {
  padding: 110px 0 70px;
  background: #faf8f1;
}

.space-intro-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.space-intro-text h2 {
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.3;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin: 0;
}

.title-line {
  width: 56px;
  height: 1px;
  background: #2f4a35;
  margin: 34px 0;
}

.space-intro-text p {
  font-size: 18px;
  line-height: 2;
  color: #333;
}

.space-intro-img img {
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

.space-feature-wrap {
  padding: 40px 0 90px;
  background: #faf8f1;
}

.space-feature-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f2eee6;
  border-radius: 18px;
  padding: 44px 36px;
}

.space-feature-box article {
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid rgba(0,0,0,.12);
}

.space-feature-box article:last-child {
  border-right: none;
}

.feature-icon {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
}

.feature-icon img {
  object-fit: contain;
}

.space-feature-box h3 {
  font-size: 21px;
  margin: 0 0 12px;
}

.space-feature-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.space-gallery {
  padding: 70px 0 100px;
  background: #faf8f1;
}

.space-gallery h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.05em;
  margin-bottom: 36px;
}

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

.gallery-grid img {
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-grid p {
  text-align: center;
  font-weight: 700;
  margin-top: 12px;
}

.space-promise {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  background: #edf0e9 url(../images/space-end-bg.png) no-repeat bottom right;
  background-size: auto calc(100% - 20px);
  height: 490px;
}
.promise-img {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promise-img img {
  object-fit: cover;
  border-radius: 0;
}

.promise-text {
  padding: 70px 80px;
  position: relative;
}

.promise-text h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.05em;
  margin: 0 0 24px;
}

.promise-text p {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 34px;
}

@media (max-width: 860px) {
  .sub-hero {
    height: auto;
    padding: 140px 0 90px;
  }

  .sub-hero h1 {
    font-size: 54px;
  }

  .sub-hero p {
    font-size: 17px;
  }

  .space-intro {
    padding: 70px 0 40px;
  }

  .space-intro-grid,
  .space-promise {
    grid-template-columns: 1fr;
    gap: 40px;
    height: auto;
  }

  .space-promise {
    background-image: none;
  }

  .space-intro-img img,
  .promise-img img {
    height: auto;
  }

  .space-feature-box {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .space-feature-box article {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.12);
    padding: 28px 10px;
  }

  .space-feature-box article:last-child {
    border-bottom: none;
  }

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

  .gallery-grid img {
    height: 130px;
  }

  .promise-text {
    padding: 46px 24px;
  }
}

/*
meeting style
*/
.meeting-hero {
  background-image: url('/assets/images/meeting-hero.jpg');
}

.sub-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 20px;
}

.meeting-reason {
  padding: 96px 0 60px;
  background: #faf8f1;
}

.reason-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 34px;
  align-items: start;
}

.reason-title h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.25;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin: 0;
}

.reason-grid article {
  padding-left: 28px;
  border-left: 1px solid rgba(0,0,0,.12);
}

.reason-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
}

.reason-grid h3 {
  font-size: 20px;
  margin: 0 0 12px;
  text-align: center;
}

.reason-grid p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  text-align: center;
}

.meeting-layout {
  padding: 50px 0 90px;
  background: #faf8f1;
}

.layout-grid {
  display: grid;
  grid-template-columns: .75fr repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.layout-title h2,
.meeting-types h2 {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -0.05em;
  margin: 0 0 20px;
}

.layout-title p {
  font-size: 18px;
  line-height: 1.8;
}

.layout-grid img {
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
}

.layout-grid h3 {
  font-size: 20px;
  margin: 18px 0 10px;
}

.layout-grid p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.meeting-types {
  padding: 70px 0;
  background: #faf8f1;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.type-grid article {
  padding: 0 22px;
  border-right: 1px solid rgba(0,0,0,.12);
}

.type-grid article:last-child {
  border-right: none;
}

.type-grid div {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}


.type-grid h3 {
  font-size: 18px;
  margin: 0 0 10px;
  text-align: center;
}

.type-grid p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  text-align: center;
}

.meeting-info {
  padding: 60px 0 80px;
  background: #faf8f1;
}

.meeting-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.meeting-info-img {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.meeting-info-img img {
  object-fit: cover;
  border-radius: 12px;
}

.info-box {
  background: #f2eee6;
  border-radius: 12px;
  padding: 42px;
}

.info-box h2 {
  margin: 0 0 24px;
  font-size: 28px;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box li {
  margin-bottom: 18px;
  line-height: 1.8;
}

.info-box strong {
  display: inline-block;
  width: 80px;
  color: #2f4a35;
}

.meeting-cta {
  padding: 0 0 80px;
  background: #faf8f1;
}

.meeting-cta-inner {
  background: #223c29;
  color: #fff;
  border-radius: 16px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 40px;
  align-items: center;
}

.meeting-cta .section-label {
  color: rgba(255,255,255,.75);
}

.meeting-cta h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.25;
  margin: 0;
  font-weight: 500;
}

.meeting-cta p {
  line-height: 1.8;
}

@media (max-width: 860px) {
  .reason-grid,
  .layout-grid,
  .type-grid,
  .meeting-info-grid,
  .meeting-cta-inner {
    grid-template-columns: 1fr;
  }

  .reason-grid article,
  .type-grid article {
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.12);
    padding: 24px 0;
  }

  .layout-grid img,
  .meeting-info-img img {
    height: auto;
  }

  .meeting-cta-inner {
    padding: 34px 26px;
  }

  .info-box {
    padding: 28px 22px;
  }
}

/*
monday-rental style
*/
.monday-hero {
  background-image: url('/assets/images/monday-hero.jpg');
}

.monday-only {
  padding: 100px 0 70px;
  background: #faf8f1;
}

.monday-only-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

.monday-only h2,
.monday-use h2,
.guide-box h2,
.reservation-box h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.25;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin: 0 0 28px;
}

.monday-only p {
  font-size: 18px;
  line-height: 1.9;
  color: #333;
}

.monday-info-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 55px;
}

.monday-info-icons article {
  text-align: center;
  border-right: 1px solid rgba(0,0,0,.12);
  padding: 0 18px;
}

.monday-info-icons article:last-child {
  border-right: none;
}

.monday-info-icons div {
  width: 100px;
  height: 100px;
  margin-bottom: 14px;
  margin-left: auto;
  margin-right: auto;
}

.monday-info-icons h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.monday-info-icons p {
  font-size: 14px;
  line-height: 1.7;
}

.monday-only-img img {
  height: 390px;
  object-fit: cover;
  border-radius: 14px;
}

.monday-use {
  padding: 70px 0 40px;
  background: #faf8f1;
}

.monday-use-grid {
  display: grid;
  grid-template-columns: 1.45fr .9fr;
  gap: 48px;
  align-items: start;
}

.use-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.use-card-grid img {
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.use-card-grid h3 {
  text-align: center;
  font-size: 15px;
  margin: 14px 0 0;
}

.advantage-box,
.guide-box,
.reservation-box {
  background: #f2eee6;
  border-radius: 14px;
  padding: 42px;
}

.advantage-box h2,
.guide-box h2 {
  font-size: 26px;
}

.advantage-box ul,
.guide-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advantage-box li {
  margin-bottom: 15px;
  padding-left: 28px;
  position: relative;
}

.advantage-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2f4a35;
  font-weight: 800;
}

.monday-guide {
  padding: 40px 0 70px;
  background: #faf8f1;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr .75fr 1fr;
  gap: 26px;
}

.guide-box li {
  margin-bottom: 18px;
  line-height: 1.8;
}

.guide-box strong {
  display: inline-block;
  width: 90px;
  color: #2f4a35;
}

.guide-img img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 14px;
}

.reservation-box p {
  line-height: 1.8;
  margin-bottom: 30px;
}

.monday-final {
  padding: 0 0 80px;
  background: #faf8f1;
}

.monday-final-inner {
  background: #223c29;
  color: #fff;
  border-radius: 16px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 40px;
  align-items: center;
}

.monday-final h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.25;
  font-weight: 500;
  margin: 0;
}

.monday-final p {
  line-height: 1.8;
}

@media (max-width: 860px) {
  .monday-only-grid,
  .monday-use-grid,
  .guide-grid,
  .monday-final-inner {
    grid-template-columns: 1fr;
  }

  .monday-info-icons {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .monday-info-icons article {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.12);
    padding-bottom: 24px;
  }

  .monday-only-img img,
  .guide-img img {
    height: auto;
  }

  .use-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .advantage-box,
  .guide-box,
  .reservation-box {
    padding: 30px 24px;
  }

  .monday-final-inner {
    padding: 34px 26px;
  }
}

/*
art-space style
*/
.art-hero {
  background-image: url('/assets/images/art-hero.jpg');
}

.art-intro {
  padding: 100px 0 70px;
  background: #faf8f1;
}

.art-intro-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.art-intro h2,
.art-gallery h2,
.art-support-box h2,
.art-guide-box h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.25;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin: 0 0 28px;
}

.art-intro p {
  font-size: 18px;
  line-height: 1.9;
  color: #333;
}

.art-intro img {
  height: 390px;
  object-fit: cover;
  border-radius: 14px;
}

.art-feature {
  padding: 40px 0 70px;
  background: #faf8f1;
}

.art-feature-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #f2eee6;
  border-radius: 18px;
  padding: 42px 30px;
}

.art-feature-box article {
  text-align: center;
  padding: 0 22px;
  border-right: 1px solid rgba(0,0,0,.12);
}

.art-feature-box article:last-child {
  border-right: none;
}

.art-feature-box div {
  font-size: 34px;
  margin-bottom: 16px;
}

.art-feature-box h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.art-feature-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

.art-gallery {
  padding: 70px 0 60px;
  background: #faf8f1;
}

.art-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.art-gallery-grid img {
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.art-gallery-grid p {
  text-align: center;
  font-weight: 700;
  margin-top: 12px;
}

.art-info {
  padding: 40px 0 70px;
  background: #faf8f1;
}

.art-info-grid {
  display: grid;
  grid-template-columns: .85fr 1fr 1fr;
  gap: 26px;
}

.art-support-img img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 14px;
}

.art-support-box,
.art-guide-box {
  background: #f2eee6;
  border-radius: 14px;
  padding: 42px;
}

.art-support-box ul,
.art-guide-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.art-support-box li {
  margin-bottom: 15px;
  padding-left: 28px;
  position: relative;
  line-height: 1.8;
}

.art-support-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2f4a35;
  font-weight: 800;
}

.art-guide-box li {
  margin-bottom: 18px;
  line-height: 1.8;
}

.art-guide-box strong {
  display: inline-block;
  width: 90px;
  color: #2f4a35;
}

.art-final {
  padding: 0 0 80px;
  background: #faf8f1;
}

.art-final-inner {
  background: #223c29;
  color: #fff;
  border-radius: 16px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 40px;
  align-items: center;
}

.art-final h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.25;
  font-weight: 500;
  margin: 0;
}

.art-final p {
  line-height: 1.8;
}

@media (max-width: 860px) {
  .art-intro-grid,
  .art-info-grid,
  .art-final-inner {
    grid-template-columns: 1fr;
  }

  .art-feature-box {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .art-feature-box article {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.12);
    padding: 28px 10px;
  }

  .art-feature-box article:last-child {
    border-bottom: none;
  }

  .art-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .art-intro img,
  .art-support-img img {
    height: auto;
  }

  .art-gallery-grid img {
    height: 130px;
  }

  .art-support-box,
  .art-guide-box {
    padding: 30px 24px;
  }

  .art-final-inner {
    padding: 34px 26px;
  }
}

/*
location style
*/
.location-hero {
  background-image: url('/assets/images/location-hero.jpg');
}

.location-page {
  padding: 80px 0 90px;
  background: #faf8f1;
}

.location-title {
  text-align: center;
  margin-bottom: 60px;
}

.location-title h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.25;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin: 0;
}

.location-title p {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
}

.center-line {
  margin-left: auto;
  margin-right: auto;
}

.location-main-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.location-main-img img {
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  border-radius: 0;
}

.location-info-list {
  padding: 42px 52px;
}

.location-info-list article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 34px;
}

.location-info-list article:last-child {
  margin-bottom: 0;
}

.loc-icon {
  font-size: 30px;
}

.location-info-list h3 {
  font-size: 20px;
  margin: 0 0 8px;
}

.location-info-list p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.transport-grid article {
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 14px;
  padding: 36px;
}

.transport-icon {
  font-size: 34px;
  margin-bottom: 18px;
  color: #2f4a35;
}

.transport-grid h3 {
  font-size: 22px;
  margin: 0 0 24px;
}

.transport-grid p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 12px;
}

.transport-grid ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.transport-grid li {
  margin-bottom: 8px;
}

.notice-box {
  margin-top: 22px;
  background: #f2eee6;
  border-radius: 10px;
  padding: 18px;
  line-height: 1.7;
}

.map-wide {
  margin-top: 28px;
}

.map-wide img {
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

.location-cta-box {
  margin-top: 28px;
  background: #f2eee6;
  border-radius: 14px;
  padding: 34px 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.plant-icon {
  font-size: 54px;
}

.location-cta-box h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.35;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 0 0 10px;
}

.location-cta-box p {
  margin: 0;
  color: #444;
}

@media (max-width: 860px) {
  .location-page {
    padding: 60px 0 70px;
  }

  .location-main-card,
  .transport-grid,
  .location-cta-box {
    grid-template-columns: 1fr;
  }

  .location-info-list {
    padding: 30px 24px;
  }

  .location-info-list article {
    grid-template-columns: 36px 1fr;
    gap: 16px;
  }

  .transport-grid article {
    padding: 28px 22px;
  }

  .map-wide img {
    height: 220px;
  }

  .location-cta-box {
    padding: 30px 24px;
    text-align: center;
  }

  .plant-icon {
    font-size: 42px;
  }
}

/*
menu style
*/
.menu-hero {
  position: relative;
  overflow: hidden;
  background-image: url('/assets/images/menu-hero.jpg');
}

.menu-hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 540px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.18));
}

.menu-hero-copy {
  color: #fff;
  position: relative;
  z-index: 2;
}

.menu-hero-copy h1 {
  font-size: clamp(54px, 7vw, 92px);
  line-height: 1.1;
  letter-spacing: -0.06em;
  margin: 0 0 28px;
  font-weight: 500;
}

.menu-hero-copy p {
  font-size: 20px;
  line-height: 1.9;
}

.menu-note {
  margin-top: 38px;
  font-size: 15px;
  opacity: .85;
}

.menu-hero-image img {
  height: 540px;
  object-fit: cover;
  border-radius: 0;
}

.menu-board {
  padding: 80px 0 50px;
  background: #faf8f1;
}

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

.menu-grid article {
  padding: 0 24px;
  border-right: 1px solid rgba(0,0,0,.1);
}

.menu-grid article:last-child {
  border-right: none;
}

.menu-title {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 34px;
}

.menu-title span {
  font-size: 32px;
}

.menu-title small {
  display: block;
  font-size: 12px;
  letter-spacing: .18em;
  color: #666;
  margin-bottom: 6px;
}

.menu-title h2 {
  margin: 0;
  font-size: 28px;
}

.menu-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-grid ul.mb-30 {
  margin-bottom: 52px;
}

.menu-grid li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 17px;
}

.menu-grid strong {
  font-weight: 700;
}

.menu-desc {
  margin-top: 34px;
  color: #666;
  font-size: 14px;
}

.option-bar {
  margin-top: 48px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px 1fr;
}

.option-title {
  background: #223c29;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: .12em;
}

.option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: center;
  padding: 22px 28px;
}

.option-list span {
  font-size: 15px;
}

.option-list strong {
  margin-left: 8px;
}

.recommend-menu {
  padding: 80px 0;
  background: #fff;
}

.recommend-grid {
  display: grid;
  grid-template-columns: 1fr repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.recommend-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.25;
  margin: 0 0 24px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.recommend-copy p {
  line-height: 1.9;
  color: #444;
}

.recommend-grid article img {
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
}

.recommend-grid h3 {
  margin: 18px 0 8px;
  font-size: 22px;
}

.recommend-grid strong {
  display: block;
  margin-bottom: 12px;
}

.recommend-grid article p {
  line-height: 1.7;
  color: #555;
}

.menu-footer-info {
  padding: 60px 0 90px;
  background: #faf8f1;
}

.footer-info-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr .8fr;
  gap: 40px;
}

.footer-info-grid h2 {
  font-size: 42px;
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.footer-info-grid h3 {
  margin-bottom: 18px;
}

.footer-info-grid p,
.footer-info-grid li {
  line-height: 1.9;
  color: #444;
}

.footer-info-grid ul {
  padding-left: 18px;
}

.sns-icons {
  display: flex;
  gap: 14px;
  font-size: 28px;
}

@media (max-width: 860px) {
  .menu-hero-grid,
  .menu-grid,
  .recommend-grid,
  .footer-info-grid,
  .option-bar {
    grid-template-columns: 1fr;
  }

  .menu-hero-image img {
    height: 320px;
  }

  .menu-grid article {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding: 0 0 30px;
  }

  .option-title {
    padding: 16px;
  }

  .option-list {
    gap: 18px;
    padding: 20px;
  }

  .recommend-grid article img {
    height: 220px;
  }
}

/*
hobby-class style
*/
.hobby-hero {
  background-image: url('/assets/images/hobby-hero.jpg');
}

.hobby-intro {
  padding: 90px 0 60px;
  background: #faf8f1;
}

.hobby-intro-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 50px;
}

.hobby-intro-head h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.25;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin: 0;
}

.hobby-intro-head p {
  font-size: 18px;
  line-height: 1.9;
  color: #333;
}

.hobby-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hobby-card-grid article {
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 16px;
  overflow: hidden;
}

.hobby-card-grid img {
  height: 260px;
  object-fit: cover;
  border-radius: 0;
}

.hobby-card-body {
  padding: 28px;
}

.hobby-card-body h3 {
  font-size: 24px;
  margin: 0 0 14px;
}

.hobby-card-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.hobby-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hobby-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  background: #faf8f1;
  border: 1px solid rgba(0,0,0,.1);
  font-size: 13px;
}

.hobby-point {
  padding: 90px 0;
  background: #f8f6f2;
}

.hobby-point-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fbfaf7;
  border: 1px solid #ece7df;
  border-radius: 18px;
  overflow: hidden;
}

.hobby-point-grid article {
  position: relative;
  padding: 42px 30px;
  text-align: center;
}

.hobby-point-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 92px;
  background: #e5ded3;
  transform: translateY(-50%);
}

.hobby-point-grid article > div {
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hobby-point-grid article img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hobby-point-grid h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  letter-spacing: -0.3px;
}

.hobby-point-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  letter-spacing: -0.2px;
  word-break: keep-all;
}

/* 태블릿 */
@media (max-width: 900px) {

  .hobby-point {
    padding: 70px 0;
  }

  .hobby-point-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hobby-point-grid article {
    border-bottom: 1px solid #ece7df;
  }

  .hobby-point-grid article:nth-child(2)::after {
    display: none;
  }

  .hobby-point-grid article:nth-child(3),
  .hobby-point-grid article:nth-child(4) {
    border-bottom: none;
  }
}

/* 모바일 */
@media (max-width: 600px) {

  .hobby-point-grid {
    grid-template-columns: 1fr;
  }

  .hobby-point-grid article {
    padding: 34px 24px;
    border-bottom: 1px solid #ece7df;
  }

  .hobby-point-grid article:last-child {
    border-bottom: none;
  }

  .hobby-point-grid article::after {
    display: none;
  }

  .hobby-point-grid h3 {
    font-size: 17px;
  }

  .hobby-point-grid p {
    font-size: 13px;
    line-height: 1.7;
  }
}

.hobby-guide {
  padding: 50px 0 80px;
  background: #f8f6f1;
}

.hobby-guide-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr .75fr;
  gap: 22px;
  align-items: stretch;
}

.hobby-guide-img,
.hobby-guide-box,
.hobby-reserve-box {
  border-radius: 14px;
  overflow: hidden;
}

.hobby-guide-img img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  display: block;
}

.hobby-guide-box,
.hobby-reserve-box {
  background: #f2eee6;
  padding: 38px 42px;
}

.hobby-guide-box h2,
.hobby-reserve-box h2 {
  margin: 0 0 24px;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #222;
}

.hobby-guide-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hobby-guide-box li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 17px;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.hobby-guide-box li:last-child {
  margin-bottom: 0;
}

.hobby-guide-box strong {
  font-weight: 700;
  color: #222;
}

.hobby-reserve-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hobby-reserve-box::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 120px;
  height: 150px;
  opacity: .18;
  background: url("/assets/images/leaf-line.png") center / contain no-repeat;
  pointer-events: none;
}

.hobby-reserve-box p {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  position: relative;
  z-index: 1;
}

.hobby-reserve-box .btn-main {
  width: fit-content;
  min-width: 150px;
  height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  background: #223c29;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hobby-guide-grid {
    grid-template-columns: 1fr;
  }

  .hobby-guide-img img {
    height: auto;
    min-height: unset;
  }
}

.hobby-reserve-box p {
  line-height: 1.8;
  margin-bottom: 28px;
}

.hobby-final {
  padding: 0 0 80px;
  background: #faf8f1;
}

.hobby-final-inner {
  background: #223c29 url(../images/0f31c7bae37932ff19829e90a68f747eb37c9c910f2efd40fc128ecd21a4a450.jpg) no-repeat bottom right;
  background-size: cover;
  color: #fff;
  border-radius: 16px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 40px;
  align-items: center;
}

.hobby-final h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.25;
  font-weight: 500;
  margin: 0;
}

.hobby-final p {
  line-height: 1.8;
}

.hobby-final p a {
  margin-top: 15px;
}

@media (max-width: 860px) {
  .hobby-intro-head,
  .hobby-card-grid,
  .hobby-point-grid,
  .hobby-guide-grid,
  .hobby-final-inner {
    grid-template-columns: 1fr;
  }

  .hobby-card-grid img,
  .hobby-guide-img img {
    height: auto;
  }

  .hobby-point-grid article {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.12);
    padding: 28px 0;
  }

  .hobby-point-grid article:last-child {
    border-bottom: none;
  }

  .hobby-guide-box,
  .hobby-reserve-box {
    padding: 30px 24px;
  }

  .hobby-final-inner {
    padding: 34px 26px;
  }
}
.reservation-contact {
  padding: 80px 0 90px;
  background: #faf8f1;
}

.reservation-contact-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  max-width: 1180px;
  min-height: 430px;
  background: #f6f2ea;
  border: 1px solid rgba(34, 60, 41, 0.18);
  border-radius: 24px;
  overflow: hidden;
}

.reservation-contact-left {
  padding: 58px 64px;
  border-right: 1px solid rgba(34, 60, 41, 0.12);
}

.script-label {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 24px;
  color: #c8a56a;
}

.reservation-contact-left h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #203626;
}

.title-line {
  width: 48px;
  height: 1px;
  margin: 26px 0;
  background: #203626;
}

.reservation-contact-left p {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

.phone-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  height: 76px;
  padding: 0 28px;
  margin-bottom: 22px;
  border-radius: 12px;
  background: #223c29;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.phone-box span {
  font-size: 24px;
}

.contact-small {
  margin: 0;
  font-size: 13px !important;
  line-height: 1.9 !important;
  color: #555 !important;
}

.reservation-contact-right {
  padding: 64px 58px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reservation-contact-right h3 {
  margin: 0 0 38px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #222;
  letter-spacing: -0.04em;
}

.reservation-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px 28px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(34, 60, 41, 0.16);
}

.reservation-icon-grid article {
  text-align: center;
}

.reservation-icon-grid img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.reservation-icon-grid p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.reserve-notice {
  margin: 24px 0 0;
  text-align: center;
  font-size: 14px;
  color: #8a8176;
}

@media (max-width: 900px) {
  .reservation-contact-card {
    grid-template-columns: 1fr;
  }

  .reservation-contact-left {
    padding: 42px 28px;
    border-right: none;
    border-bottom: 1px solid rgba(34, 60, 41, 0.12);
  }

  .reservation-contact-right {
    padding: 42px 28px;
  }

  .reservation-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-box {
    width: 100%;
    justify-content: center;
    min-width: auto;
    font-size: 24px;
  }
}