:root {
  --ivory: #F6F2EA;
  --warm: #FBF9F4;
  --green: #243229;
  --black: #1F1F1C;
  --line: rgba(36, 50, 41, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--green);
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 88px;
  padding: 0 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  background: rgba(246, 242, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.22em;
}

.header-logo img {
  width: 40px;
  opacity: 0.92;
}

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-family: "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.18em;
}

.nav a {
  position: relative;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s ease;
}

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

.menu-reserve {
  padding: 10px 18px;
  border: 1px solid var(--green);
  border-radius: 10px;
  transition: all 0.25s ease;
}

.menu-reserve:hover {
  background: var(--green);
  color: var(--warm);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--green);
  border-radius: 999px;
  transition: all 0.3s ease;
}


.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 998;
}

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

body.menu-open {
  overflow: hidden;
}

/* HERO */
.hero {
  min-height: calc(100vh - 82px);
  padding: 102px 76px 28px;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.hero-left {
  width: 100%;
  max-width: 760px;
  margin-left: 74px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transform: translateY(-28px);
}

.brand-block {
  width: fit-content;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 158px;
  margin-bottom: 30px;
}

.brand-name {
  font-family: "Times New Roman", "Noto Serif KR", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.32em;
  margin-left: 0.32em;
  white-space: nowrap;
}

.brand-en {
  margin-top: 12px;
  font-family: "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: 0.40em;
  opacity: 0.75;
  white-space: nowrap;
}

.hero h1 {
  margin-top: 42px;
  font-family: "Times New Roman", "Noto Serif KR", serif;
  font-size: clamp(54px, 4.35vw, 74px);
  line-height: 1.31;
  font-weight: 400;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.hero h1 br {
  display: block;
}

.hero-line {
  width: 46px;
  height: 1px;
  margin: 28px 0 20px;
  background: var(--green);
  opacity: 0.45;
}

.hero-desc {
  font-size: 17px;
  opacity: 0.74;
}

.btn {
  width: 242px;
  height: 68px;
  margin-top: 34px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--warm);
  border-radius: 4px;
  font-size: 16px;
  letter-spacing: 0.04em;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.btn:hover {
  background: transparent;
  color: var(--green);
  transform: translateY(-2px);
}

.btn span {
  font-size: 22px;
  line-height: 1;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  margin-top: 34px;
}

.btn.secondary {
  width: 154px;
  gap: 0;
  background: transparent;
  color: var(--green);
}

.btn.secondary:hover {
  background: var(--green);
  color: var(--warm);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right img {
  width: min(1460px, 80vw);
  max-width: none;
  transform: translateX(96px) translateY(20px);
  opacity: 0.96;
}

/* INFO BAR */
.hero-info {
  height: 82px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-item {
  padding: 12px 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-align: center;
  font-size: 15px;
  opacity: 0.84;
}

.info-item + .info-item {
  border-left: 1px solid var(--line);
}

.info-item img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  opacity: 0.92;
}

/* CONTENT SECTIONS */
.section {
  padding: 150px 76px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-label {
  margin-bottom: 22px;
  font-family: "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.26em;
  opacity: 0.58;
}

.section h2 {
  font-family: "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.section p {
  max-width: 680px;
  margin-top: 28px;
  font-size: 18px;
  opacity: 0.76;
}

.story-section {
  background: var(--warm);
}

.story-grid,
.day-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 82px;
  align-items: end;
}

.story-grid > p,
.day-grid > p {
  margin-top: 0;
}

.photo-feature {
  padding: 0 76px 150px;
  background: var(--warm);
}

.photo-feature figure {
  max-width: 1240px;
  height: min(58vw, 680px);
  min-height: 480px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
}

.photo-feature-single figure {
  position: relative;
}

.photo-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96);
}

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

.card {
  display: block;
  min-height: 240px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(251, 249, 244, 0.54);
  transition: background 0.35s ease, transform 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  background: var(--warm);
}

.quiet-card {
  background: rgba(251, 249, 244, 0.82);
}

.card span {
  font-family: "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  opacity: 0.52;
}

.card h3 {
  margin-top: 36px;
  font-family: "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.card p {
  margin-top: 18px;
  font-size: 15px;
}

.day-section {
  background: var(--green);
  color: var(--warm);
}

.guide-list {
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.guide-list div {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.guide-list strong {
  font-family: "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.guide-list span {
  opacity: 0.72;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  font-size: 15px;
  opacity: 0.78;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.text-link:hover {
  opacity: 1;
  transform: translateX(4px);
}

/* AWARD */
.award-section {
  background: var(--ivory);
  border-top: 1px solid var(--line);
}

.award-grid {
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.award-card {
  min-height: 640px;
  padding: 38px;
  border: 1px solid var(--line);
  background: rgba(251, 249, 244, 0.52);
}

.award-photo-card {
  display: flex;
  flex-direction: column;
}

.award-card-head {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.award-card-head span {
  display: block;
  margin-bottom: 18px;
  font-family: "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.30em;
  opacity: 0.56;
}

.award-card-head strong {
  display: block;
  font-family: "Times New Roman", "Noto Serif KR", serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: -0.045em;
}

.award-image-wrap {
  flex: 1;
  min-height: 0;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.award-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96);
}

.award-copy-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.award-copy-card p {
  max-width: 620px;
  margin-top: 34px;
  font-size: 17px;
  line-height: 1.95;
  opacity: 0.74;
}

.award-point-list {
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.award-point-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.78;
}

.award-point-list span {
  font-family: "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  opacity: 0.5;
}

/* DAY MOMENTS */
.day-moment-section {
  padding: 150px 76px;
  background: var(--warm);
  border-top: 1px solid var(--line);
}

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

.day-moment-grid article {
  border: 1px solid var(--line);
  background: rgba(246, 242, 234, 0.36);
  overflow: hidden;
}

.day-moment-grid figure {
  height: 320px;
  overflow: hidden;
}

.day-moment-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96);
  transition: transform 0.6s ease;
}

.day-moment-grid article:hover img {
  transform: scale(1.035);
}

.day-moment-grid article > div {
  padding: 28px 28px 32px;
}

.day-moment-grid span {
  display: block;
  margin-bottom: 22px;
  font-family: "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  opacity: 0.52;
}

.day-moment-grid h3 {
  font-family: "Times New Roman", "Noto Serif KR", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.3;
}

.day-moment-grid p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.78;
  opacity: 0.72;
}

.reservation-section {
  background: var(--green);
  color: var(--warm);
  text-align: center;
}

.reservation-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reservation-box p {
  margin-left: auto;
  margin-right: auto;
}

.reservation-btn {
  border-color: var(--warm);
  background: var(--warm);
  color: var(--green);
}

.reservation-btn:hover {
  background: transparent;
  color: var(--warm);
}

.site-footer {
  padding: 34px 22px;
  text-align: center;
  font-size: 13px;
  color: var(--black);
  opacity: 0.55;
}

.site-footer p:first-child {
  margin-bottom: 4px;
  font-family: "Times New Roman", serif;
  letter-spacing: 0.2em;
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-left.reveal.show {
  transform: translateY(-28px);
}

.hero-right.reveal {
  transition-delay: 0.18s;
}

.nav a.active { opacity: 1; }
.nav a.active::after { width: 100%; }

/* RESPONSIVE */
@media (max-width: 1380px) {
  .hero-left {
    margin-left: 46px;
    transform: translateY(-22px);
  }

  .hero-left.reveal.show {
    transform: translateY(-22px);
  }

  .hero-right img {
    width: min(1210px, 76vw);
    transform: translateX(72px) translateY(18px);
  }

  .hero h1 {
    font-size: clamp(48px, 4.15vw, 66px);
  }

  .photo-feature figure {
    height: 520px;
    min-height: 0;
  }
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 44px;
  }

  .nav {
    gap: 28px;
  }

  .hero {
    padding-left: 44px;
    padding-right: 44px;
    grid-template-columns: 42% 58%;
  }

  .hero-left {
    margin-left: 20px;
    transform: translateY(-18px);
  }

  .hero-left.reveal.show {
    transform: translateY(-18px);
  }

  .hero-right img {
    width: min(980px, 70vw);
    transform: translateX(46px) translateY(14px);
  }
}

@media (max-width: 1000px) {
  .site-header {
    height: 74px;
    padding: 0 34px;
  }

  .hero {
    min-height: auto;
    padding: 108px 34px 60px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-left,
  .hero-left.reveal.show {
    margin-left: 0;
    max-width: none;
    align-items: center;
    text-align: center;
    transform: none;
  }

  .brand-block {
    width: fit-content;
    max-width: 420px;
    align-items: center;
  }

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

  .hero-right {
    order: -1;
    justify-content: center;
  }

  .hero-right img {
    width: 94%;
    max-width: 600px;
    transform: none;
  }

  .section {
    padding: 110px 34px;
  }

  .card-grid,
  .story-grid,
  .day-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .photo-feature {
    padding: 0 34px 110px;
  }

  .photo-feature figure {
    height: 430px;
    min-height: 0;
  }

  .day-moment-section {
    padding: 110px 34px;
  }

  .award-grid,
  .day-moment-grid {
    grid-template-columns: 1fr;
  }

  .award-card {
    min-height: auto;
    padding: 28px;
  }

  .award-image-wrap img {
    min-height: 340px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 68px;
    padding: 0 22px;
  }

  .header-logo img {
    width: 34px;
  }

  .header-logo span {
    font-size: 12px;
  }

.nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  position: fixed;
  top: 0;
  right: -100%;

  width: min(78vw, 300px);
  height: 100vh;

  padding: 150px 28px 40px;
  background: var(--ivory);

  gap: 24px;

  border-left: 1px solid var(--line);
  box-shadow: -16px 0 40px rgba(36, 50, 41, 0.08);

  transition: right 0.35s ease;
  z-index: 999;
}

.nav.active {
  right: 0;
}

.menu-btn {
    display: block;
}

  .hero {
    padding: 94px 22px 52px;
  }

  .hero-logo {
    width: 102px;
    margin-bottom: 24px;
  }

  .brand-name {
    font-size: 20px;
    letter-spacing: 0.22em;
    margin-left: 0.22em;
  }

  .brand-en {
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .hero h1 {
    margin-top: 40px;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.34;
    white-space: normal;
  }

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

  .btn {
    width: 190px;
    height: 54px;
    font-size: 15px;
  }

  .btn.secondary {
    width: 132px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-right img {
    width: 100%;
    max-width: 410px;
  }

  .hero-info {
    height: auto;
    grid-template-columns: 1fr;
  }

  .info-item {
    min-height: 66px;
    border-left: none !important;
    border-top: 1px solid var(--line);
    font-size: 14px;
  }

  .info-item img {
    width: 22px;
    height: 22px;
  }

  .section {
    padding: 86px 22px;
  }

  .photo-feature {
    padding: 0 22px 86px;
  }

  .photo-feature figure,
  .photo-feature figure:nth-child(2) {
    height: 280px;
  }

  .day-moment-section {
    padding: 86px 22px;
  }

  .award-grid {
    gap: 30px;
  }

  .award-card {
    padding: 22px;
  }

  .award-card-head {
    padding-bottom: 22px;
  }

  .award-card-head span {
    margin-bottom: 12px;
  }

  .award-image-wrap {
    margin-top: 22px;
  }

  .award-image-wrap img {
    min-height: 280px;
  }

  .award-point-list li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .day-moment-grid figure {
    height: 280px;
  }

  .section h2 {
    font-size: 34px;
  }

  .section p {
    font-size: 16px;
  }

  .guide-list div {
    flex-direction: column;
    gap: 8px;
  }
}


/* --- Protection & Accessibility --- */
img{
  -webkit-user-drag:none;
  user-drag:none;
}
a:focus-visible,
button:focus-visible{
  outline:2px solid #243229;
  outline-offset:3px;
}
@media (prefers-reduced-motion: reduce){
  *{
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important;
  }
}
