@font-face {
  font-family: "Satoshi";
  src: url("source/fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Heitz";
  src: url("source/fonts/Heitz-Regular.woff2") format("woff2");
  font-weight: 400;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f0ede3;
  --red: #cf1f4a;
  --black: #1a1a1a;
  --gray: #888;
  --gutter: 60px;
}

body {
  background: var(--bg);
  color: var(--black);
  font-family: "Satoshi", sans-serif;
  min-width: 1440px;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 120px;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.nav-wordmark {
  height: 42px;
}

.nav-tagline {
  font-size: 10px;
  color: var(--red);
  line-height: 1.5;
  padding-top: 4px;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
  padding-top: 12px;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.07em;
  color: var(--black);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-icons {
  display: flex;
  width: 30px;
  gap: -20px;
  padding-top: 8px;
}

.nav-icons img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

/* ── FOOTER ── */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px var(--gutter);
  margin-top: 120px;
}

.footer-copy {
  font-size: 11px;
  color: var(--gray);
}

.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--black);
}

.footer-tiles {
  height: 64px;
  background-color: #b8ccb0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.25) 0,
      rgba(255, 255, 255, 0.25) 1px,
      transparent 1px,
      transparent 22px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.25) 0,
      rgba(255, 255, 255, 0.25) 1px,
      transparent 1px,
      transparent 22px
    );
  background-size: 22px 22px;
}

/* ── MAIN PAGE ── */
.hero-collage {
  padding: 0 var(--gutter);
  text-align: center;
}

.hero-collage img {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.content-split {
  display: flex;
  align-items: center;
  padding: 100px var(--gutter);
  gap: 100px;
}

.content-split.reverse {
  flex-direction: row-reverse;
}

.split-photo {
  flex: 0 0 auto;
  width: 330px;
}

.split-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.split-text {
  flex: 1;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-text p {
  font-size: 13px;
  line-height: 1.9;
  color: #333;
}

.keyword-section {
  display: flex;
  gap: 4px;
  padding: 40px var(--gutter) 80px;
}

.keyword-card {
  flex: 1;
}

.keyword-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 18px;
}

.keyword-card h3 {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 6px;
}

.keyword-card p {
  font-family: "Heitz", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  color: #444;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 4px;
  padding: 0 var(--gutter);
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-grid .span-col {
  grid-column: span 2;
}

/* ── ABOUT PAGE ── */
.page-hero {
  width: 100%;
}
.page-hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
}

.about-text-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding: 60px var(--gutter) 80px;
}

.about-text-col {
  font-family: "Heitz", "Satoshi", sans-serif;
  font-size: 12.5px;
  line-height: 2;
  color: #333;
}

.about-brand {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px var(--gutter);
  align-items: center;
}

.about-brand-letter img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.about-brand-logo img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.about-brand-text {
  font-size: 13px;
  line-height: 2;
  color: #333;
}

.about-brand-text .kr {
  font-family: "Heitz", sans-serif;
  margin-top: 28px;
  font-size: 12.5px;
}

.directions-section {
  padding: 60px var(--gutter) 0;
}

.directions-heading {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  color: #333;
}

.directions-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.directions-table-wrap {
  flex: 0 0 480px;
}

.directions-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.directions-table td {
  padding: 18px 20px;
  border: 1px solid #ccc;
  line-height: 1.7;
}

.directions-table td:first-child {
  color: #555;
  width: 140px;
  vertical-align: middle;
}

.directions-map {
  flex: 1;
}
.directions-map img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ── PROGRAM PAGE ── */
.program-section {
  display: flex;
  gap: 0;
  padding: 80px var(--gutter);
}

.program-section + .program-section {
  padding-top: 60px;
  border-top: none;
}

.program-label {
  flex: 0 0 260px;
}

.program-label h2 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.program-label p {
  font-size: 12px;
  line-height: 1.9;
  color: #555;
}

.program-items {
  flex: 1;
}

.program-item {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #d0d0d0;
}

.program-items .program-item:first-child {
  border-top: 1px solid #d0d0d0;
}

.program-item-num {
  font-size: 12px;
  color: var(--gray);
  width: 32px;
  flex-shrink: 0;
}

.program-item-name {
  flex: 1;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.program-item-price {
  font-size: 13px;
  letter-spacing: 0.03em;
}

/* ── PROGRAM DETAIL PAGE ── */
.detail-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 36px var(--gutter) 0;
}

.detail-title {
  font-size: 30px;
  font-weight: 400;
}

.detail-price {
  font-size: 30px;
  font-weight: 400;
}

.detail-row {
  display: flex;
  gap: 0;
  padding: 60px var(--gutter) 40px;
}

.detail-label-col {
  flex: 0 0 260px;
  font-size: 15px;
  font-weight: 400;
  padding-top: 4px;
}

.detail-body-col {
  flex: 1;
  font-size: 13px;
  line-height: 1.9;
  color: #444;
  max-width: 500px;
}

.detail-body-col p + p {
  margin-top: 18px;
}

.detail-body-col ol {
  padding-left: 18px;
}

.detail-body-col ol li {
  line-height: 2.2;
}

/* ── BOOKING PAGE ── */
.booking-bar {
  display: flex;
  align-items: baseline;
  gap: 100px;
  padding: 36px var(--gutter) 0;
}

.booking-title {
  font-size: 30px;
  font-weight: 400;
}
.booking-price {
  font-size: 30px;
  font-weight: 400;
}

.booking-content {
  display: flex;
  gap: 100px;
  padding: 48px var(--gutter) 80px;
  align-items: flex-start;
}

.calendar-wrap {
  flex: 0 0 auto;
}

.calendar-table {
  border-collapse: collapse;
  font-size: 12px;
  min-width: 460px;
}

.calendar-table th {
  font-weight: 400;
  padding: 10px 20px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #555;
}

.calendar-table td {
  padding: 14px 20px;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  min-width: 60px;
}

.calendar-table td:hover {
  background: rgba(207, 31, 74, 0.07);
}
.calendar-table td.selected {
  background: var(--red);
  color: #fff;
}

.booking-sidebar {
  flex: 1;
  padding-top: 10px;
}

.booking-sidebar p {
  font-size: 14px;
  line-height: 2.1;
}

.btn-box {
  display: inline-block;
  margin-top: 52px;
  padding: 14px 0;
  border: 1px solid var(--black);
  font-size: 14px;
  width: 200px;
  text-align: center;
  cursor: pointer;
  background: transparent;
  font-family: "Satoshi", sans-serif;
  letter-spacing: 0.04em;
}

.btn-box:hover {
  background: var(--black);
  color: #fff;
}

/* ── MY PAGE ── */
.mypage-wrap {
  display: flex;
  gap: 100px;
  padding: 80px var(--gutter);
  align-items: flex-start;
}

.mypage-photo {
  flex: 0 0 280px;
}

.mypage-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.mypage-info {
  flex: 1;
}

.mypage-guest {
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 56px;
}

.mypage-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.mypage-table {
  border-collapse: collapse;
  font-size: 13px;
  min-width: 420px;
}

.mypage-table td {
  padding: 18px 20px;
  border: 1px solid #ccc;
  line-height: 1.7;
}

.mypage-table td:first-child {
  color: #555;
  width: 140px;
  vertical-align: middle;
}

.mypage-sidebar {
  flex: 1;
  padding-top: 4px;
}
.mypage-sidebar p {
  font-size: 14px;
  line-height: 2.1;
}
