/* =========================================================
   0. RESET / CAFE24 LAYOUT RESET
========================================================= */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}


#wrap,
#container,
#contents,
#content,
#main {
  margin: 0;
  padding: 0;
}


/* =========================================================
   1. BASE
========================================================= */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", AppleGothic, sans-serif;
  color: #222222;
  background: #ffffff;
  line-height: 1.6;
  word-break: keep-all;
}


a {
  color: inherit;
  text-decoration: none;
}


img {
  display: block;
  max-width: 100%;
  border: 0;
}


button {
  font-family: inherit;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}


/* =========================================================
   2. LAYOUT
========================================================= */
.wrap {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}


.section {
  padding: 100px 0;
}


.section-white {
  background: #ffffff;
}


.section-soft {
  background: #f6f7f8;
}


.section-dark {
  background: #171717;
  color: #ffffff;
}


.hero,
.section,
.brand-story,
.sub-visual,
.sub-page-body {
  flex-shrink: 0;
}


@media all and (max-width: 768px) {
  .wrap {
    padding: 0 30px;
  }


  .section {
    padding: 72px 0;
  }
}


/* =========================================================
   3. TYPOGRAPHY SYSTEM
========================================================= */
.kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8c6749;
}


.section-dark .kicker {
  color: #d8c1ae;
}


.section-title,
.title {
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -0.03em;
}


.section-desc,
.desc {
  font-size: 17px;
  line-height: 1.8;
  color: #666666;
}


.section-dark .section-desc,
.section-dark .desc {
  color: #d6d6d6;
}


.card-title,
.signature-title {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.32;
  font-weight: 600;
  color: #111111;
}


.card-text {
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.75;
  color: #555555;
}


.signature-text {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.75;
  color: #555555;
  word-break: break-word;
}


.card-link,
.signature-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #5f4635;
}


@media all and (max-width: 768px) {
  .section-title,
  .title {
    font-size: 30px;
  }


  .section-desc,
  .desc,
  .signature-text {
    font-size: 16px;
    line-height: 1.75;
  }


  .card-title,
  .signature-title {
    font-size: 21px;
  }
}


/* =========================================================
   4. BUTTON
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    opacity 0.35s ease;
}


.btn-dark {
  background: #5f4635;
  color: #ffffff;
}


.btn-light {
  background: #ffffff;
  color: #222222;
}


.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}


.btn-dark:hover {
  background: #ffffff;
  color: #222222;
}


.btn-light:hover {
  background: #5f4635;
  color: #ffffff;
}


.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-color: #ffffff;
}


@media all and (max-width: 768px) {
  .btn {
    min-height: 46px;
    padding: 12px 18px;
    font-size: 14px;
  }
}


/* =========================================================
   5. HEADER / NAVIGATION
========================================================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}


.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  min-width: 0;
}


.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
}


.brand img {
  display: block;
  width: auto;
  height: 28px;
  transition: opacity 0.25s ease;
}


.brand:hover img {
  opacity: 0.7;
}


.nav {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 76px;
  flex: 0 0 auto;
}


.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}


.nav-item > a,
.nav-item > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 76px;
  margin: 0;
  padding: 0 18px;
  border: 0;
  background: transparent;
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #333333;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}


.nav-item > a:hover,
.nav-item > button:hover {
  color: #5f4635;
}


.nav-item > button::-moz-focus-inner {
  border: 0;
  padding: 0;
}


.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 220px;
  padding: 10px 0;
  background: #ffffff;
  border: 1px solid #e8e4df;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  z-index: 1001;
}


.nav-item:hover .submenu {
  display: block;
}


.submenu a {
  display: block;
  padding: 13px 18px;
  font-size: 15px;
  line-height: 1.5;
  color: #333333;
  transition: background-color 0.25s ease, color 0.25s ease;
}


.submenu a:hover {
  background: #f8f5f2;
  color: #5f4635;
}


.nav-right {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
}


.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #222222;
}


.mobile-nav {
  position: absolute;
  top: 68px;
  left: 16px;
  right: 16px;
  display: none;
  padding: 10px 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}


.mobile-nav.active {
  display: block;
}


.mobile-nav a,
.mobile-nav button {
  display: block;
  width: 100%;
  padding: 14px 18px;
  border: 0;
  background: none;
  text-align: left;
  font-size: 16px;
  color: #333333;
}


.mobile-submenu {
  display: none;
  background: #fafafa;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}


.mobile-submenu.active {
  display: block;
}


.mobile-submenu a {
  padding-left: 32px;
  font-size: 15px;
}


/* HEADER / TABLET */
@media all and (max-width: 1200px) {
  .nav-right {
    display: flex;
  }
}


/* HEADER / MOBILE */
@media all and (max-width: 1024px) {
  .nav {
    display: none;
  }


  .mobile-toggle {
    display: inline-flex;
  }
}


@media all and (max-width: 768px) {
  .topbar .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }


  .topbar-inner {
    height: 68px;
    gap: 10px;
  }


  .brand {
    flex: 1 1 auto;
    min-width: 0;
    margin-right: auto;
  }


  .brand img {
    height: 24px;
    max-width: 100%;
  }


  .nav-right {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
    margin-left: auto;
  }


  .nav-right .btn {
    min-height: 36px;
    height: 36px;
    padding: 0 12px;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    flex: 0 0 auto;
  }


  .mobile-toggle {
    width: 36px;
    height: 36px;
    font-size: 24px;
    flex: 0 0 auto;
  }


  .mobile-nav {
    top: 68px;
    left: 16px;
    right: 16px;
  }
}


@media all and (max-width: 480px) {
  .topbar-inner {
    gap: 8px;
  }


  .nav-right {
    gap: 6px;
  }


  .nav-right .btn {
    padding: 0 10px;
    font-size: 12px;
  }


  .brand img {
    height: 22px;
  }
}


/* =========================================================
   6. HERO
========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #ffffff;
}


.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.77vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}


.hero-video iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 10, 10, 0.38), rgba(10, 10, 10, 0.55)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.2) 100%);
}


.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 76px;
}


.hero-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}


.hero-inner {
  max-width: 720px;
  padding: 40px 0;
}


.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}


.hero-title {
  margin-bottom: 18px;
  font-size: 62px;
  line-height: 1.14;
  font-weight: 100;
  letter-spacing: -0.02em;
}


.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
}


.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


@media all and (max-width: 1024px) {
  .hero-main {
    display: block;
  }


  .hero-title {
    font-size: 46px;
  }
}


@media all and (max-width: 768px) {
  .hero-content {
    padding-top: 96px;
    padding-bottom: 56px;
  }


  .hero-title {
    font-size: 34px;
  }


  .hero-text {
    font-size: 16px;
  }


  .hero-btns {
    gap: 10px;
  }


  .hero-btns .btn {
    width: calc(50% - 5px);
    text-align: center;
  }
}


/* =========================================================
   7. SIGNATURE
========================================================= */
.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}


.signature-card {
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}


.signature-visual {
  width: 100%;
  height: 220px;
  background-position: center;
  background-size: cover;
}


.signature-visual.v1 {
  background-image: url('/base_2/img/sc/main/01.jpg');
}


.signature-visual.v2 {
  background-image: url('/base_2/img/sc/main/02.jpg');
}


.signature-visual.v3 {
  background-image: url('/base_2/img/sc/main/03.jpg');
}


.signature-body {
  padding: 28px 24px 24px;
  color: #222222;
}


@media all and (max-width: 1200px) {
  .signature-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   8. BRAND STORY
========================================================= */
.brand-story {
  position: relative;
  overflow: hidden;
  background: #111111;
  color: #ffffff;
}


.brand-story-media {
  position: absolute;
  inset: 0;
}


.brand-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.brand-story-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.34) 45%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.48));
}


.brand-story-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding: 110px 0;
}


.brand-story-content {
  max-width: 720px;
}


.brand-story-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}


.brand-story-title {
  margin-bottom: 20px;
  font-size: 46px;
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -0.03em;
}


.brand-story-text {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
}


.brand-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}


@media all and (max-width: 1024px) {
  .brand-story-inner {
    min-height: 500px;
    padding: 90px 0;
  }


  .brand-story-title {
    font-size: 38px;
  }
}


@media all and (max-width: 768px) {
  .brand-story-inner {
    min-height: 420px;
    padding: 72px 0;
  }


  .brand-story .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }


  .brand-story-content {
    padding: 0 4px;
  }


  .brand-story-title {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1.35;
  }


  .brand-story-text {
    font-size: 16px;
    line-height: 1.75;
  }


  .brand-story-actions {
    gap: 10px;
  }


  .brand-story-actions .btn {
    width: calc(50% - 5px);
    text-align: center;
  }
}


/* =========================================================
   9. NOTICE
========================================================= */
.notice-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}


.notice-board table {
  width: 100% !important;
  border-collapse: collapse !important;
}


.notice-board tr {
  border-bottom: 1px solid #e5e7eb;

}


.notice-board tr:last-child {
  border-bottom: 0;
}


.notice-board td {
  padding: 18px 5px !important;
  font-size: 18px !important;
  line-height: 1.7;
  color: #444444;
  vertical-align: middle;
}


.notice-board td a {
  color: #111111 !important;
  font-weight: 600;
}


.notice-board td a:hover {
  color: #5f4635 !important;
}


.notice-board img {
  vertical-align: middle;
}


@media all and (max-width: 768px) {
  .notice-head {
    display: block;
  }


  .notice-head .btn {
    margin-top: 14px;
display:none;
  }


  .notice-board td {
    padding: 14px 0 !important;
    font-size: 15px !important;
  }
}


/* =========================================================
   10. LOCATION SECTION
========================================================= */
.location-section {
  background: #f6f4f1;
}


.location-head {
  margin-bottom: 42px;
}


.location-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  align-items: stretch;
}


.location-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.location-card {
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(95, 70, 53, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(3px);
}


.location-card-label {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8c6749;
}


.location-card-title {
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
}


.location-note {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #6d665f;
}


/* CALL CARD */
.location-card-call {
  background: linear-gradient(135deg, #5f4635 0%, #735843 100%);
  border: 0;
  box-shadow: 0 18px 36px rgba(95, 70, 53, 0.18);
}


.location-card-call .location-card-label,
.location-card-call .location-card-title,
.location-card-call .location-note {
  color: #ffffff;
}


.location-phone {
  margin-bottom: 8px;
}


.location-phone a {
  display: inline-block;
  font-size: 50px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #ffffff;
}


/* PARKING CARD */
.location-card-parking {
  background: #fcfaf7;
}


.parking-item + .parking-item {
  margin-top: 0;
}


.parking-name {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
}


.parking-desc {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: #8c6749;
}


.parking-address {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.75;
  color: #444444;
}


.parking-divider {
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(
    to right,
    rgba(95, 70, 53, 0.14),
    rgba(95, 70, 53, 0.05)
  );
}


/* HOURS CARD */
.location-card-hours {
  background: rgba(255, 255, 255, 0.92);
}


.hours-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(95, 70, 53, 0.08);
}


.hours-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}


.hours-row strong {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: #222222;
}


.hours-row span {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: right;
  color: #111111;
}


/* MAP */
.location-map-wrap {
  min-width: 0;
}


.location-map {
  position: relative;
  height: 100%;
  min-height: 620px;
  overflow: hidden;
  background: #dddddd;
  border: 1px solid rgba(95, 70, 53, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}


.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
}


@media all and (max-width: 1200px) {
  .location-layout {
    grid-template-columns: 340px 1fr;
  }


  .location-phone a {
    font-size: 42px;
  }
}


@media all and (max-width: 1024px) {
  .location-layout {
    grid-template-columns: 1fr;
  }


  .location-map,
  .location-map iframe {
    min-height: 480px;
  }
}


@media all and (max-width: 768px) {
  .location-head {
    margin-bottom: 28px;
  }


  .location-panel {
    gap: 14px;
  }


  .location-card {
    padding: 22px 20px;
  }


  .location-card-title {
    margin-bottom: 16px;
    font-size: 21px;
  }


  .location-phone a {
    font-size: 34px;
  }


  .parking-name {
    font-size: 18px;
  }


  .parking-address {
    font-size: 16px;
    line-height: 1.7;
  }


  .hours-row {
    display: block;
    padding: 10px 0 12px;
  }


  .hours-row strong {
    display: block;
    margin-bottom: 4px;
  }


  .hours-row span {
    display: block;
    text-align: left;
    font-size: 18px;
  }


  .location-map,
  .location-map iframe {
    min-height: 360px;
  }
}


/* =========================================================
   11. FOOTER
========================================================= */
.footer {
  margin-top: auto;
  flex-shrink: 0;
  padding: 72px 0 30px;
  background: #171717;
  color: #d7d7d7;
}


.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}


.footer-title {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
}


.footer-sub {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}


.footer-text {
  font-size: 16px;
  line-height: 1.9;
  color: #c8c8c8;
}


.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333333;
  font-size: 12px;
  color: #999999;
}


@media all and (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   12. SUB VISUAL / SUB PAGE
========================================================= */
.sub-visual {
  position: relative;
  margin-top: 76px;
  height: 340px;
  overflow: hidden;
  color: #ffffff;
}


.sub-visual-media {
  position: absolute;
  inset: 0;
}


.sub-visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.sub-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 10, 10, 0.32), rgba(10, 10, 10, 0.56)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.16) 46%, rgba(0, 0, 0, 0.26) 100%);
}


.sub-visual-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}


.sub-visual-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}


.sub-visual-title {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.03em;
}


.sub-visual-desc {
  max-width: 620px;
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}


.sub-page-head {
  background: #ffffff;
  border-bottom: 1px solid #ece7e2;
}


.sub-page-path {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  font-size: 13px;
  color: #777777;
}


.sub-page-path span {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c7b7ab;
}


.sub-page-path strong {
  font-weight: 700;
  color: #5f4635;
}


.sub-page-body {
  padding: 72px 0 0;
  background: #ffffff;
}


.sub-page-intro {
  margin-bottom: 36px;
}


@media all and (max-width: 1024px) {
  .sub-visual {
    height: 300px;
  }


  .sub-visual-title {
    font-size: 38px;
  }
}


@media all and (max-width: 768px) {
  .sub-visual {
    margin-top: 68px;
    height: 250px;
  }


  .sub-visual-title {
    font-size: 30px;
    line-height: 1.28;
  }


  .sub-visual-desc {
    font-size: 16px;
    line-height: 1.75;
  }


  .sub-page-body {
    padding: 56px 0 0;
  }


  .sub-page-intro {
    margin-bottom: 28px;
  }
}




#location{
  scroll-margin-top: 100px;
}