:root {
  --ink: #182019;
  --deep: #142018;
  --green: #23362b;
  --gold: #b69a68;
  --cream: #f4f0e7;
  --paper: #fffdf8;
  --line: rgba(24, 32, 25, 0.14);
  --muted: #697069;
  --serif: "Noto Sans KR", sans-serif;
  --sans: "Noto Sans KR", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
body.locked {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
}
button {
  font: inherit;
}
.skip {
  position: fixed;
  left: 20px;
  top: -60px;
  z-index: 999;
  padding: 12px;
  background: #fff;
}
.skip:focus {
  top: 10px;
}
.header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4.5vw;
  color: #fff;
  border-bottom: 1px solid #ffffff40;
  transition: 0.35s;
}
.header.scrolled {
  height: 70px;
  color: var(--ink);
  background: #fffdf8f2;
  backdrop-filter: blur(15px);
  border-color: var(--line);
  box-shadow: 0 8px 30px #0000000d;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  width: max-content;
  letter-spacing: 0.09em;
}
.logo span {
  font: 600 21px/1 var(--sans);
}
.logo strong {
  color: var(--gold);
  font: 500 24px/1 var(--serif);
}
.header nav {
  display: flex;
  gap: 38px;
  font-size: 13px;
}
.header-call {
  justify-self: end;
  padding: 12px 22px;
  border: 1px solid currentColor;
  font-size: 13px;
}
.menu,
.mobile-menu {
  display: none;
}
.hero {
  position: relative;
  height: 100svh;
  min-height: 720px;
  color: #fff;
  background: var(--deep);
  overflow: hidden;
}
.hero-video,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video,
.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) brightness(1.06);
}
.hero-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 1.1s,
    transform 7s;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) brightness(0.86);
}
.hero-slide figcaption {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 86px;
  max-width: 350px;
  text-align: right;
  opacity: 0;
  transform: translateY(12px);
  transition: 0.7s 0.35s;
}
.hero-slide.active figcaption {
  opacity: 1;
  transform: none;
}
.hero-slide figcaption small {
  display: block;
  margin-bottom: 9px;
  color: #e1c995;
  font-size: 9px;
  letter-spacing: 0.2em;
}
.hero-slide figcaption strong {
  font-size: 14px;
  font-weight: 400;
}
.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, #0c1511e8 0%, #0c1511a0 38%, #0c15112d 72%),
    linear-gradient(0deg, #0d1712a8 0%, transparent 45%);
}
.hero-caption {
  position: absolute;
  z-index: 4;
  right: 4.5vw;
  bottom: 42px;
  margin: 0;
  padding: 13px 18px;
  border: 1px solid #ffffff66;
  background: #0d17127a;
  backdrop-filter: blur(10px);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.hero-copy {
  position: absolute;
  z-index: 3;
  left: 7.5vw;
  top: 49%;
  transform: translateY(-48%);
  max-width: 820px;
}
.eyebrow {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.hero h1,
.section-head h2,
.about h2,
.scene-pair h2,
.reserve h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.04em;
}
.hero h1 {
  font-size: clamp(60px, 6.5vw, 105px);
  line-height: 1.02;
}
.hero h1 em {
  color: #e2cea5;
  font-style: normal;
}
.hero-copy > p:not(.eyebrow) {
  margin: 30px 0 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  padding: 0 27px;
  font-size: 13px;
  font-weight: 600;
}
.btn.gold {
  color: #fff;
  background: var(--gold);
}
.more {
  padding: 13px 0;
  border-bottom: 1px solid #ffffff88;
  font-size: 13px;
}
.hero-controls {
  position: absolute;
  z-index: 4;
  left: 7.5vw;
  bottom: 62px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-controls button {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff70;
  color: #fff;
  background: transparent;
  cursor: pointer;
}
.hero-controls span {
  font: 500 11px/1 var(--serif);
  letter-spacing: 0.1em;
}
.hero-controls i {
  position: relative;
  width: 100px;
  height: 1px;
  background: #ffffff50;
}
.hero-controls i b {
  position: absolute;
  inset: 0 auto 0 0;
  width: 20%;
  background: #fff;
  transition: 0.45s;
}
.ai-note {
  position: absolute;
  z-index: 3;
  right: 5vw;
  bottom: 22px;
  margin: 0;
  color: #ffffff96;
  font-size: 9px;
}
.intro-strip {
  display: grid;
  grid-template-columns: 0.45fr 1fr 1.15fr;
  align-items: center;
  gap: 5vw;
  padding: 72px max(4.5vw, calc((100vw - 1240px) / 2));
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.intro-strip > p {
  color: var(--gold);
  font: 600 12px/1 var(--serif);
  letter-spacing: 0.18em;
}
.intro-strip > strong {
  font: 500 clamp(25px, 2.2vw, 36px) / 1.5 var(--serif);
}
.intro-strip dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}
.intro-strip dl div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}
.intro-strip dt {
  color: var(--gold);
  font: 500 9px/1 var(--serif);
  letter-spacing: 0.12em;
}
.intro-strip dd {
  margin: 10px 0 0;
  font-size: 12px;
}
.event-section {
  padding: 140px 0;
  background: var(--cream);
  overflow: hidden;
}
.section-head {
  width: min(1180px, 91%);
  margin: 0 auto;
}
.section-head h2 {
  font-size: clamp(46px, 5vw, 73px);
  line-height: 1.13;
}
.section-head > p:last-child {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.slider-wrap {
  position: relative;
  margin-top: 70px;
}
.event-slider {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 max(4.5vw, calc((100vw - 1180px) / 2));
}
.event-slider::-webkit-scrollbar {
  display: none;
}
.event-slider article {
  flex: 0 0 min(460px, 76vw);
  scroll-snap-align: start;
}
.event-slider img {
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.88);
  transition: 0.5s;
}
.event-slider article:hover img {
  transform: scale(0.99);
  filter: saturate(1);
}
.event-slider article span {
  display: block;
  margin: 21px 0 8px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.event-slider h3 {
  margin: 0;
  font: 500 24px/1.3 var(--serif);
}
.slider-btn {
  position: absolute;
  z-index: 3;
  top: 34%;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #172019d9;
  font: 300 32px/1 var(--serif);
  cursor: pointer;
}
.slider-btn.prev {
  left: 2vw;
}
.slider-btn.next {
  right: 2vw;
}
.slider-progress {
  display: flex;
  align-items: center;
  gap: 15px;
  width: min(1180px, 91%);
  margin: 43px auto 0;
  color: var(--gold);
  font: 500 12px/1 var(--serif);
}
.slider-progress i {
  position: relative;
  flex: 1;
  height: 1px;
  background: #1a251d26;
}
.slider-progress b {
  position: absolute;
  inset: 0 auto 0 0;
  width: 6%;
  background: var(--gold);
  transition: 0.2s;
}
.about {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 820px;
}
.about-image {
  position: relative;
  overflow: hidden;
}
.about-image img {
  height: 100%;
  object-fit: cover;
}
.about-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #10191462, transparent 45%);
}
.about-image span {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 23px;
  color: #fff;
  font: 500 10px/1 var(--serif);
  letter-spacing: 0.18em;
}
.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 8vw;
  background: var(--paper);
}
.about h2 {
  font-size: clamp(47px, 4.7vw, 72px);
  line-height: 1.13;
}
.about-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
}
.text-link {
  align-self: flex-start;
  margin-top: 38px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
}
.features {
  padding: 140px 4.5vw;
  color: #fff;
  background: var(--deep);
}
.section-head.light {
  width: min(1180px, 100%);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, 100%);
  margin: 68px auto 0;
  border-top: 1px solid #ffffff2d;
}
.feature-grid article {
  min-height: 230px;
  padding: 30px;
  border-bottom: 1px solid #ffffff2d;
}
.feature-grid article:nth-child(3n + 2),
.feature-grid article:nth-child(3n + 3) {
  border-left: 1px solid #ffffff2d;
}
.feature-grid b,
.guide-grid b {
  color: var(--gold);
  font: 500 12px/1 var(--serif);
}
.feature-grid h3 {
  margin: 50px 0 14px;
  font: 500 28px/1.2 var(--serif);
}
.feature-grid p {
  max-width: 280px;
  margin: 0;
  color: #ffffffa6;
  font-size: 13px;
  line-height: 1.8;
}
.scene-pair {
  display: grid;
  grid-template-columns: 1.55fr 0.65fr;
  gap: 12px;
  padding: 12px;
  background: var(--paper);
}
.scene-pair figure {
  position: relative;
  min-height: 740px;
  margin: 0;
  overflow: hidden;
}
.scene-pair img {
  height: 100%;
  object-fit: cover;
}
.scene-pair figure:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #101914b3, transparent 55%);
}
.scene-pair figcaption {
  position: absolute;
  z-index: 2;
  left: 5vw;
  bottom: 60px;
  color: #fff;
}
.scene-pair small {
  color: #e0c998;
  font-size: 9px;
  letter-spacing: 0.2em;
}
.scene-pair h2 {
  margin-top: 17px;
  font-size: clamp(44px, 4.5vw, 72px);
  line-height: 1.15;
}
.scene-pair figure + figure figcaption {
  left: 30px;
  bottom: 30px;
}
.scene-pair p {
  margin: 0;
  padding: 20px;
  background: #172019d4;
  font: 500 21px/1.55 var(--serif);
}
.guide {
  padding: 140px 0;
  background: var(--paper);
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, 91%);
  margin: 65px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.guide-grid article {
  padding: 34px 28px 42px;
}
.guide-grid article + article {
  border-left: 1px solid var(--line);
}
.guide-grid h3 {
  margin: 45px 0 15px;
  font: 500 27px/1.3 var(--serif);
}
.guide-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.reserve {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  padding: 140px max(4.5vw, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--green);
}
.reserve-copy {
  align-self: center;
}
.reserve h2 {
  font-size: clamp(50px, 5vw, 78px);
  line-height: 1.11;
}
.reserve-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 30px 0 0;
  color: #ffffffa8;
  font-size: 14px;
  line-height: 1.9;
}
.reserve-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 38px;
}
.reserve-points span {
  padding: 10px 14px;
  border: 1px solid #ffffff45;
  font-size: 11px;
}
.reserve-card {
  padding: 58px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 35px 80px #0004;
}
.reserve-card > small {
  color: var(--gold);
  font: 600 10px/1 var(--serif);
  letter-spacing: 0.17em;
}
.reserve-card h3 {
  margin: 15px 0 3px;
  font: 500 38px/1.2 var(--serif);
}
.reserve-phone {
  font: 500 clamp(32px, 3vw, 46px) / 1.2 var(--serif);
}
.reserve-card dl {
  margin: 38px 0;
  border-top: 1px solid var(--line);
}
.reserve-card dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.reserve-card dt {
  color: var(--muted);
  font-size: 11px;
}
.reserve-card dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}
.btn.dark {
  width: 100%;
  color: #fff;
  background: var(--deep);
}
footer {
  padding: 72px 4.5vw 120px;
  color: #ffffffa8;
  background: #0e1712;
  text-align: center;
}
footer .logo {
  margin: 0 auto 28px;
  color: #fff;
}
footer p {
  margin: 8px 0;
  font-size: 12px;
}
footer small {
  display: block;
  margin-top: 18px;
  color: #ffffff5e;
  font-size: 9px;
}
.floating {
  display: none;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.8s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .header {
    grid-template-columns: 1fr auto;
    padding: 0 22px;
  }
  .header nav,
  .header-call {
    display: none;
  }
  .menu {
    display: grid;
    gap: 7px;
    width: 42px;
    padding: 11px 8px;
    border: 0;
    background: none;
  }
  .menu span {
    height: 1px;
    background: currentColor;
  }
  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 9vw;
    color: #fff;
    background: var(--deep);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
  }
  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
  }
  .mobile-menu a {
    padding: 10px 0;
    font: 500 34px/1.3 var(--serif);
  }
  .intro-strip {
    grid-template-columns: 1fr 1fr;
  }
  .intro-strip dl {
    grid-column: 1/-1;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about-image {
    min-height: 620px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid article:nth-child(n) {
    border-left: 0;
  }
  .feature-grid article:nth-child(even) {
    border-left: 1px solid #ffffff2d;
  }
  .scene-pair {
    grid-template-columns: 1fr;
  }
  .scene-pair figure {
    min-height: 600px;
  }
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .guide-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .guide-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .reserve {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .hero {
    min-height: 720px;
  }
  .hero-slide img {
    object-position: 62% center;
  }
  .hero-shade {
    background: linear-gradient(0deg, #101b16e8 0%, #101b1670 67%, #101b1626);
  }
  .hero-copy {
    left: 22px;
    right: 22px;
    top: 43%;
  }
  .hero h1 {
    font-size: clamp(47px, 14vw, 66px);
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .hero-controls {
    left: 22px;
    bottom: 54px;
  }
  .hero-slide figcaption {
    display: none;
  }
  .ai-note {
    right: 18px;
    bottom: 15px;
  }
  .intro-strip {
    grid-template-columns: 1fr;
    padding: 60px 22px;
  }
  .intro-strip > p {
    margin: 0;
  }
  .intro-strip dl {
    grid-column: auto;
    grid-template-columns: 1fr;
    margin-top: 14px;
  }
  .intro-strip dl div {
    padding: 13px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .event-section,
  .features,
  .guide {
    padding: 92px 0;
  }
  .section-head {
    width: calc(100% - 40px);
  }
  .section-head h2 {
    font-size: 43px;
  }
  .event-slider {
    padding: 0 20px;
  }
  .event-slider article {
    flex-basis: 84vw;
  }
  .slider-btn {
    display: none;
  }
  .slider-progress {
    width: calc(100% - 40px);
  }
  .about-image {
    min-height: 480px;
  }
  .about-copy {
    padding: 84px 22px;
  }
  .about h2 {
    font-size: 44px;
  }
  .features {
    padding-left: 20px;
    padding-right: 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid article:nth-child(n) {
    border-left: 0;
  }
  .scene-pair {
    padding: 6px;
    gap: 6px;
  }
  .scene-pair figure {
    min-height: 570px;
  }
  .scene-pair figure + figure {
    min-height: 430px;
  }
  .scene-pair figcaption {
    left: 22px;
    bottom: 35px;
  }
  .scene-pair h2 {
    font-size: 42px;
  }
  .guide-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
  }
  .guide-grid article:nth-child(n) {
    border-left: 0;
  }
  .guide-grid article + article {
    border-top: 1px solid var(--line);
  }
  .reserve {
    padding: 92px 20px;
  }
  .reserve h2 {
    font-size: 47px;
  }
  .reserve-card {
    padding: 38px 24px;
  }
  .floating {
    position: fixed;
    z-index: 80;
    left: 14px;
    right: 14px;
    bottom: 12px;
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    color: #fff;
    background: #ad905ff2;
    box-shadow: 0 8px 28px #0004;
    font-size: 11px;
  }
  .floating strong {
    font-size: 15px;
  }
  footer {
    padding-bottom: 105px;
  }
}

@media (max-width: 620px) {
  .hero-caption {
    right: 20px;
    left: 20px;
    bottom: 22px;
    text-align: center;
    font-size: 12px;
  }
}

/* Event-led visual revision */
.event-slider {
  scroll-snap-type: none;
  gap: 18px;
}
.event-slider article {
  position: relative;
  flex-basis: min(480px, 78vw);
  overflow: hidden;
  background: #111;
}
.event-slider article:after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(0deg, rgba(10, 18, 13, 0.9), transparent);
}
.event-slider article img {
  aspect-ratio: 4/3;
  transition: transform 0.7s ease;
}
.event-slider article:hover img {
  transform: scale(1.025);
}
.event-slider article > span,
.event-slider article > h3,
.event-slider article > .event-sub {
  position: absolute;
  z-index: 2;
  left: 28px;
  color: #fff;
}
.event-slider article > span {
  bottom: 92px;
  margin: 0;
  color: #e2c98f;
}
.event-slider article > h3 {
  bottom: 49px;
  margin: 0;
  font-size: 27px;
}
.event-slider article > .event-sub {
  bottom: 22px;
  margin: 0;
  color: #ffffffba;
  font-size: 12px;
}
.about-image {
  background: #111;
}
.about-rotator figure,
.purpose-rotator figure {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.25s ease;
}
.about-rotator figure.active,
.purpose-rotator figure.active {
  opacity: 1;
}
.about-rotator figure img {
  height: 100%;
  object-fit: cover;
}
.about-rotator figure:after,
.purpose-rotator figure:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 19, 13, 0.78), transparent 58%);
}
.about-rotator figcaption {
  position: absolute;
  z-index: 2;
  left: 6vw;
  right: auto;
  bottom: 55px;
  color: #fff;
}
.about-rotator figcaption > * {
  display: block;
}
.about-rotator figcaption small {
  margin-bottom: 12px;
  color: #e2c98f;
  font-size: 9px;
  letter-spacing: 0.2em;
}
.about-rotator figcaption strong {
  font: 500 clamp(32px, 3.5vw, 54px) / 1.2 var(--serif);
}
.about-rotator figcaption span {
  position: static;
  margin-top: 10px;
  color: #ffffffbf;
  font-size: 13px;
  letter-spacing: 0;
}
.feature-grid {
  gap: 1px;
  background: #ffffff2d;
  border-top: 0;
}
.feature-grid article {
  position: relative;
  min-height: 330px;
  padding: 0;
  overflow: hidden;
  border: 0 !important;
  background: #111;
}
.feature-grid article:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(12, 21, 16, 0.88) 0%,
    rgba(12, 21, 16, 0.58) 25%,
    rgba(12, 21, 16, 0.04) 65%,
    transparent 100%
  );
}
.feature-grid article > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.12) saturate(1.04);
}
.feature-grid article > div {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
}
.feature-grid h3 {
  margin: 20px 0 10px;
}
.feature-grid p {
  color: #ffffffc0;
}
.purpose-rotator {
  position: relative;
  height: min(850px, 78vw);
  min-height: 650px;
  background: #111;
  overflow: hidden;
}
.purpose-rotator figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.purpose-rotator figcaption {
  position: absolute;
  z-index: 2;
  left: 8vw;
  bottom: 85px;
  color: #fff;
}
.purpose-rotator small {
  color: #e2c98f;
  font-size: 10px;
  letter-spacing: 0.2em;
}
.purpose-rotator h2 {
  margin: 15px 0 8px;
  font: 500 clamp(50px, 6vw, 90px) / 1.08 var(--serif);
}
.purpose-rotator p {
  margin: 0;
  color: #ffffffc7;
  font-size: 15px;
}
@media (max-width: 620px) {
  .event-slider article > span,
  .event-slider article > h3,
  .event-slider article > .event-sub {
    left: 20px;
  }
  .event-slider article > h3 {
    font-size: 24px;
  }
  .about-rotator figcaption {
    left: 22px;
    bottom: 32px;
  }
  .about-rotator figcaption strong {
    font-size: 37px;
  }
  .feature-grid article {
    min-height: 310px;
  }
  .purpose-rotator {
    height: 620px;
    min-height: 620px;
  }
  .purpose-rotator figcaption {
    left: 24px;
    right: 24px;
    bottom: 45px;
  }
  .purpose-rotator h2 {
    font-size: 48px;
  }
  .purpose-rotator p {
    font-size: 13px;
  }
}

/* Photo-led hero: keep titles and supporting copy clear of the central scene. */
.header, .header.scrolled {height: 80px; background: #fffdf8; color: var(--ink); border-bottom: 1px solid var(--line);}
.hero {min-height: 780px;}
.hero-image {filter: none; object-position: center 55%;}
.hero-shade {background: linear-gradient(180deg, rgba(10,18,14,.5) 0%, transparent 40%, transparent 55%, rgba(10,18,14,.8) 100%);}
.hero-heading {position: absolute; z-index: 3; top: 118px; left: 24px; right: 24px; text-align: center;}
.hero-heading .eyebrow {font-size: 16px; margin-bottom: 14px; color: #fff; letter-spacing: .08em;}
.hero-heading h1 {font-size: clamp(36px, 4vw, 60px); line-height: 1.28; font-weight: 600; letter-spacing: -.045em;}
.hero-summary {position: absolute; z-index: 3; bottom: 112px; left: 5vw; right: 5vw; display: flex; align-items: center; justify-content: space-between; gap: 24px;}
.hero-summary > p {margin: 0; font-size: 17px; line-height: 1.8;}
.hero-summary .hero-actions {margin-top: 0; gap: 24px; flex-shrink: 0;}
.hero-actions .btn, .hero-actions .more {font-size: 15px;}
.hero-caption {left: 5vw; right: 5vw; bottom: 24px; display: flex; justify-content: center; gap: 28px; font-size: 16px; background: transparent; backdrop-filter: none; padding: 15px;}
.hero-caption strong {font-weight: 700;}
.feature-grid article > img {filter: none;}
.about-rotator figure img {filter: none;}
.event-slider article img {filter: none;}
.section-head h2, .about h2, .reserve h2 {font-weight: 500; line-height: 1.35;}
@media (max-width: 760px) {
  .header, .header.scrolled {height: 68px;}
  .hero {display: flex; flex-direction: column; height: auto; min-height: 0; padding-top: 68px; color: var(--ink); background: var(--paper);}
  .hero-heading {position: static; order: 1; padding: 26px 20px 24px;}
  .hero-heading .eyebrow {font-size: 14px; margin: 0 0 10px; color: #806538; letter-spacing: .06em;}
  .hero-heading h1 {font-size: clamp(30px, 8vw, 40px); line-height: 1.25;}
  .hero-image {position: static; order: 2; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; object-position: center;}
  .hero-shade {display: none;}
  .hero-summary {position: static; order: 3; display: block; padding: 22px 20px 16px; text-align: center;}
  .hero-summary > p {font-size: 15px; line-height: 1.7;}
  .hero-summary .hero-actions {margin-top: 18px; justify-content: center; gap: 22px; flex-wrap: wrap;}
  .hero-actions .more {border-color: #7d826e;}
  .hero-actions .btn {min-height: 48px; padding: 0 20px;}
  .hero-caption {position: static; order: 4; margin: 0 20px 24px; padding: 16px 0 0; border: 0; border-top: 1px solid var(--line); flex-wrap: wrap; column-gap: 18px; row-gap: 6px; font-size: 14px; letter-spacing: 0;}
  .hero-caption strong {flex-basis: 100%; font-size: 21px;}
  .mobile-menu {top: 68px;}
  .about-rotator figcaption strong {font-size: 30px;}
  .about-rotator figcaption span {font-size: 15px;}
}

/* Preserve natural photographic color; use shading only behind captions. */
.event-slider article::after {mix-blend-mode: normal; opacity: 1; background: linear-gradient(0deg, rgba(10,18,13,.82), transparent);}
.floating {visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .2s;}
.floating.past-hero {visibility: visible; opacity: 1; pointer-events: auto;}
