/* 노류산촌생태마을 반응형 홈페이지 */
:root {
  --green-900: #183f2d;
  --green-800: #24563d;
  --green-700: #2f6f4c;
  --green-600: #3d835a;
  --green-100: #e8f4ed;
  --beige-50: #fffaf0;
  --beige-100: #f6eddc;
  --beige-200: #ead8b8;
  --brown: #6a4d32;
  --ink: #1d2b24;
  --muted: #68736d;
  --white: #ffffff;
  --line: rgba(24, 63, 45, 0.14);
  --shadow: 0 24px 70px rgba(24, 63, 45, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--beige-50);
  line-height: 1.65;
  word-break: keep-all;
}

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

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

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.section.muted {
  background: linear-gradient(180deg, #f8f2e7 0%, #edf6ef 100%);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--green-900);
  color: var(--white);
  border-radius: 8px;
}

.skip-link:focus {
  left: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 240, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 48px;
  height: 48px;
}

.brand span {
  display: grid;
  line-height: 1.18;
}

.brand em {
  font-style: normal;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: #34453c;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--green-100);
  color: var(--green-900);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--green-900);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 740px;
  display: grid;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,0.9) 0 10%, transparent 24%),
    linear-gradient(135deg, rgba(24, 63, 45, 0.88), rgba(47, 111, 76, 0.75)),
    url("../img/hero-village.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,42,30,0.78), rgba(14,42,30,0.24) 55%, rgba(255,250,240,0.24));
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  color: #fff;
  padding: 40px 0;
}

.eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9a94e;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.cta-actions,
.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: #d9a94e;
  color: var(--green-900);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.btn.ghost-dark {
  color: var(--green-900);
  border-color: rgba(24, 63, 45, 0.24);
  background: rgba(255, 255, 255, 0.7);
}

.btn.small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 14px;
}

.quick-info {
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 8px;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
}

.quick-info strong {
  display: inline-block;
  min-width: 86px;
  color: #fff;
}

.hero-card {
  align-self: stretch;
  background: rgba(255, 250, 240, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card img {
  border-radius: 22px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.hero-note {
  padding: 18px 10px 6px;
  display: grid;
  gap: 4px;
}

.hero-note strong {
  color: var(--green-900);
}

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

.intro-strip {
  padding: 0;
  transform: translateY(-42px);
  margin-bottom: -42px;
}

.strip-grid {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.strip-grid > div {
  padding: 24px;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 4px;
}

.strip-grid > div:last-child {
  border-right: 0;
}

.strip-grid strong {
  color: var(--green-900);
  font-size: 20px;
  letter-spacing: -0.04em;
}

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

.section-heading {
  max-width: 610px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.06em;
  color: var(--green-900);
}

h3 {
  margin: 0;
  color: var(--green-900);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

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

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 16px 45px rgba(24, 63, 45, 0.08);
}

.content-card p {
  margin: 0 0 18px;
  color: #3d4a43;
  font-size: 17px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.badge-row span,
.tour-tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 800;
  font-size: 13px;
}

.room-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.room-card,
.product-card,
.tour-card,
.experience-card,
.social-card,
.location-card,
.notice-box,
.price-note,
.cta-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 45px rgba(24, 63, 45, 0.08);
}

.room-card {
  overflow: hidden;
}

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

.room-body {
  padding: 24px;
}

.room-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.room-title h3 {
  font-size: 26px;
}

.room-title span {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--beige-100);
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.room-body p {
  color: var(--muted);
  margin: 12px 0 18px;
}

.room-body ul {
  padding-left: 18px;
  margin: 0;
  color: #3d4a43;
}

.price-note,
.cta-panel {
  margin-top: 28px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.price-note strong {
  color: var(--green-900);
  font-size: 20px;
}

.price-note span {
  color: var(--muted);
  flex: 1;
}

.experience-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.experience-card {
  padding: 24px;
  min-height: 240px;
}

.experience-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--beige-100);
  font-size: 27px;
  margin-bottom: 18px;
}

.experience-card h3 {
  font-size: 22px;
}

.experience-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.experience-card.highlight {
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
  color: #fff;
}

.experience-card.highlight h3,
.experience-card.highlight p {
  color: #fff;
}

.cta-panel {
  background: linear-gradient(135deg, #fff, var(--green-100));
}

.cta-panel h3 {
  font-size: 25px;
}

.cta-panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.tour-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.tour-card {
  overflow: hidden;
}

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

.tour-card > div {
  padding: 20px;
}

.tour-card h3 {
  margin-top: 12px;
  font-size: 22px;
}

.tour-card p {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 15px;
}

.tour-card a {
  color: var(--green-700);
  font-weight: 900;
}

.market-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  padding: 24px;
}

.product-card img {
  border-radius: 22px;
  margin-bottom: 20px;
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.product-card h3 {
  font-size: 26px;
}

.product-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.social-card {
  padding: 26px;
  display: grid;
  gap: 8px;
  transition: transform .2s ease;
}

.social-card:hover {
  transform: translateY(-4px);
}

.social-card span {
  color: #d9a94e;
  font-weight: 900;
}

.social-card strong {
  font-size: 22px;
  color: var(--green-900);
}

.social-card em {
  font-style: normal;
  color: var(--muted);
  font-size: 14px;
}

.notice-box {
  margin-top: 20px;
  padding: 22px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
}

.notice-box strong {
  color: var(--green-900);
  display: block;
  margin-bottom: 6px;
}

.notice-box p {
  margin: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: stretch;
}

.location-card {
  padding: 28px;
  margin-top: 26px;
}

.location-card dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

.location-card dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.location-card dt {
  color: var(--green-900);
  font-weight: 900;
}

.location-card dd {
  margin: 0;
  color: #3d4a43;
}

.route-times {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.route-times div {
  padding: 16px;
  border-radius: 18px;
  background: var(--green-100);
  display: grid;
  gap: 4px;
}

.route-times strong {
  color: var(--green-900);
}

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

.small-text {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.78);
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.5fr 1fr;
  gap: 32px;
}

.footer-brand {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand em {
  color: #d9c58e;
}

.site-footer a {
  color: #fff;
}

.site-footer strong {
  color: #fff;
}

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  background: #d9a94e;
  color: var(--green-900);
  font-weight: 900;
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

@media (max-width: 1100px) {
  .hero-grid,
  .two-col,
  .market-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

  .room-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 680px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    grid-template-columns: 1fr;
    background: #fff;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .strip-grid,
  .social-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .price-note,
  .cta-panel {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .site-nav {
    top: 70px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand em {
    font-size: 11px;
  }

  .hero-copy {
    padding-top: 22px;
  }

  .hero-card {
    display: none;
  }

  .hero-text {
    font-size: 17px;
  }

  .strip-grid,
  .experience-grid,
  .tour-grid,
  .social-grid,
  .route-times,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .location-card dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 380px;
  }

  .floating-call {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}


.about-gallery {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

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

.experience-photo-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.photo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(24, 63, 45, 0.08);
}

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

.photo-card div {
  padding: 16px;
}

.photo-card strong {
  color: var(--green-900);
  font-size: 18px;
}

.photo-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .experience-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .about-gallery,
  .experience-photo-grid {
    grid-template-columns: 1fr;
  }
}


.stay-policy {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 45px rgba(24, 63, 45, 0.08);
  padding: 28px;
}

.policy-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.policy-head .eyebrow {
  margin-bottom: 8px;
}

.policy-head h3 {
  font-size: clamp(26px, 3vw, 36px);
}

.check-time {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.check-time span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 800;
}

.refund-table-wrap {
  overflow-x: auto;
}

.refund-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  overflow: hidden;
  border-radius: 18px;
}

.refund-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.refund-table th,
.refund-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.refund-table th {
  background: var(--green-900);
  color: #fff;
  font-weight: 900;
}

.refund-table tbody tr:nth-child(even) {
  background: var(--beige-50);
}

.refund-table td:last-child {
  color: var(--green-800);
  font-weight: 900;
}

.policy-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--beige-100);
  color: #4d4436;
}

.policy-note a {
  color: var(--green-900);
  font-weight: 900;
}

@media (max-width: 640px) {
  .policy-head {
    flex-direction: column;
  }

  .stay-policy {
    padding: 22px;
  }
}
