:root {
  --ink: #22211f;
  --muted: #6f6a63;
  --paper: #fbfaf7;
  --soft: #f0eee8;
  --line: #ddd8cf;
  --olive: #62714b;
  --terracotta: #b45f3a;
  --aqua: #4a8f9d;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(30, 27, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(221, 216, 207, 0.8);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.hero-actions,
.contact-list {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  text-decoration: none;
}

.brand span:last-child {
  overflow: hidden;
  max-width: min(52vw, 620px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0;
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.header-cta,
.property-content a,
.contact-list a {
  text-decoration: none;
}

.nav a:hover,
.property-content a:hover,
.contact-list a:hover {
  color: var(--terracotta);
}

.kakao-button {
  width: fit-content;
  border: 0;
  border-radius: 8px;
  background: #fee500;
  color: #191600;
  font: inherit;
  font-weight: 900;
  padding: 10px 14px;
  cursor: pointer;
}

.kakao-button:hover {
  background: #f4d900;
}

.header-cta {
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  min-height: auto;
  display: grid;
  gap: 34px;
  padding: clamp(46px, 7vw, 82px) clamp(18px, 5vw, 70px) clamp(34px, 5vw, 62px);
  background: var(--paper);
}

.hero-content {
  width: min(760px, 100%);
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--terracotta);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-family: inherit;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: inherit;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
}

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 180px));
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.button.primary {
  background: var(--terracotta);
  color: var(--white);
}

.button.secondary {
  border-color: var(--line);
  color: var(--ink);
}

.section,
.services,
.contact-section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 70px);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.property-grid,
.room-grid,
.service-grid,
.product-grid {
  display: grid;
  gap: 22px;
}

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

.property-card,
.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 36px rgba(40, 36, 30, 0.08);
}

.property-card {
  display: flex;
  flex-direction: column;
}

.property-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-placeholder {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  align-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #f4f0e8, #e5ece8);
  color: var(--ink);
  text-align: center;
}

.photo-placeholder span,
.photo-placeholder small {
  color: var(--muted);
  font-weight: 800;
}

.photo-placeholder strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.property-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.feature-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.detail-grid div {
  padding: 14px;
  border-radius: 8px;
  background: var(--soft);
}

.detail-grid strong,
.detail-grid span {
  display: block;
}

.detail-grid strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 14px;
}

.detail-grid span {
  color: var(--muted);
  font-size: 14px;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.photo-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.location,
.room-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.stay-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.property-content p,
.room-card p,
.service-grid span,
.contact-copy p {
  color: var(--muted);
}

.property-content a {
  display: inline-block;
  margin-top: 8px;
  color: var(--terracotta);
  font-weight: 800;
}

.property-content .detail-link {
  width: 100%;
  margin-top: 18px;
  color: var(--ink);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 70px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.detail-hero-copy {
  max-width: 720px;
}

.detail-hero-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.detail-hero-image,
.detail-hero-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.detail-hero-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #f4f0e8, #e5ece8);
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.detail-hero-placeholder strong {
  color: var(--ink);
  font-size: 30px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 70px);
}

.detail-main {
  display: grid;
  gap: 18px;
}

.detail-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(20px, 3vw, 30px);
}

.detail-panel h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.detail-panel p,
.detail-panel li,
.detail-side p {
  color: var(--muted);
}

.detail-intro {
  margin: 6px 0 18px;
  max-width: 760px;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

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

.detail-note {
  padding: 14px;
  border-radius: 8px;
  background: var(--soft);
}

.detail-note strong,
.detail-note span {
  display: block;
}

.detail-note strong {
  margin-bottom: 6px;
}

.detail-note span {
  color: var(--muted);
  font-size: 14px;
}

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

.nearby-list {
  display: grid;
  gap: 10px;
}

.nearby-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 2fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  text-decoration: none;
}

.nearby-row strong {
  font-size: 18px;
  line-height: 1.3;
}

.nearby-row span {
  color: var(--muted);
  line-height: 1.6;
}

.nearby-row em {
  min-width: 54px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--white);
  color: var(--accent);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.nearby-row:hover {
  border-color: rgba(190, 96, 55, 0.45);
  transform: translateY(-1px);
}

.service-list {
  display: grid;
  gap: 10px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 2fr) minmax(92px, auto);
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--soft);
}

.service-row strong {
  font-size: 18px;
  line-height: 1.3;
}

.service-row span {
  color: var(--muted);
  line-height: 1.6;
}

.service-row em {
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--white);
  color: var(--accent);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.message-list {
  display: grid;
  gap: 12px;
}

.message-box {
  padding: 18px;
  border-radius: 8px;
  background: var(--soft);
}

.message-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.message-box p + p {
  margin-top: 10px;
}

.message-box p:first-child {
  color: var(--ink);
  font-weight: 900;
}

.nearby-card {
  display: grid;
  gap: 10px;
  min-height: 174px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  text-decoration: none;
}

.nearby-card strong,
.nearby-card span,
.nearby-card em {
  display: block;
}

.nearby-card strong {
  font-size: 18px;
  line-height: 1.3;
}

.nearby-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.nearby-card em {
  align-self: end;
  color: var(--accent);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.nearby-card:hover {
  border-color: rgba(190, 96, 55, 0.45);
  transform: translateY(-2px);
}

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

.detail-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.detail-side {
  position: sticky;
  top: 88px;
  align-self: start;
  display: grid;
  gap: 16px;
}

.detail-contact {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 22px;
}

.detail-contact p {
  color: rgba(255, 255, 255, 0.72);
}

.detail-contact .kakao-button {
  margin-top: 8px;
}

.rooms-section {
  background: var(--soft);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 36px rgba(40, 36, 30, 0.08);
}

.product-photo-placeholder {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  align-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ece8df, #e3ece8);
  color: var(--muted);
  text-align: center;
}

.product-photo-placeholder span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-photo-placeholder strong {
  color: var(--ink);
  font-size: 20px;
}

.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-content {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 20px;
}

.product-content > span {
  display: block;
  margin-bottom: 12px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card p {
  color: var(--muted);
}

.product-price {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.product-price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.product-price strong {
  color: var(--ink);
  font-size: 17px;
}

.detail-price-box {
  display: grid;
  gap: 6px;
  width: fit-content;
  margin: 20px 0 24px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-price-box span {
  color: var(--muted);
  font-weight: 800;
}

.detail-price-box strong {
  color: var(--ink);
  font-size: 20px;
}

.product-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-info-list div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
}

.product-info-list strong {
  color: var(--ink);
}

.product-info-list span {
  color: var(--muted);
  line-height: 1.55;
}

.product-content .button {
  width: 100%;
  margin-top: auto;
}

.detail-photo-grid a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.active {
  border-color: var(--olive);
  background: var(--olive);
  color: var(--white);
}

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

.room-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.room-card[hidden] {
  display: none;
}

.room-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.room-card div {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 20px;
}

.room-card p {
  margin-bottom: 18px;
}

.room-card strong {
  margin-top: auto;
  color: var(--ink);
}

.services {
  background: var(--ink);
  color: var(--white);
}

.services .eyebrow {
  color: #f3c3a9;
}

.services h2 {
  max-width: 720px;
}

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

.service-grid div {
  min-height: 142px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.service-grid strong,
.service-grid span {
  display: block;
}

.service-grid strong {
  margin-bottom: 10px;
  font-size: 19px;
}

.service-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 96px;
}

.contact-list {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
  font-weight: 800;
}

.contact-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card span,
.contact-card strong {
  display: block;
}

.contact-card span {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .property-grid,
  .room-grid,
  .service-grid,
  .product-grid,
  .hero,
  .contact-section,
  .detail-hero,
  .detail-layout,
  .nearby-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-copy {
    position: static;
  }

  .detail-side {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand span:last-child {
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-cta {
    display: none;
  }

  .nav {
    gap: 8px;
  }

  .nav a {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    font-weight: 800;
  }

  .hero {
    min-height: auto;
    gap: 22px;
    padding-top: 30px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .button,
  .kakao-button {
    width: 100%;
  }

  .property-grid,
  .room-grid,
  .service-grid,
  .product-grid,
  .contact-section,
  .detail-hero,
  .detail-layout,
  .detail-columns,
  .product-info-list,
  .nearby-grid {
    grid-template-columns: 1fr;
  }

  .nearby-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
  }

  .nearby-row em {
    justify-self: start;
  }

  .service-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
  }

  .service-row em {
    justify-self: start;
  }

  .nearby-card {
    min-height: auto;
  }

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

  .section-heading {
    margin-bottom: 20px;
  }

  .section,
  .services,
  .contact-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .property-card img,
  .photo-placeholder {
    aspect-ratio: 16 / 10;
  }

  .property-content {
    padding: 18px;
  }

  .feature-list,
  .photo-gallery {
    display: none;
  }

  .property-content p {
    font-size: 15px;
  }

  .property-content .detail-link {
    margin-top: auto;
  }

  .contact-card strong {
    font-size: 42px;
  }

  .footer {
    flex-direction: column;
  }
}
