@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Jost:wght@100;200;300;400;500&display=swap');

:root {
  --cream: #FAF6EF;
  --sand: #F0E8D8;
  --sand-dark: #E5D9C6;
  --brown: #2A1A0E;
  --brown-mid: #6B4C35;
  --brown-light: #A0806A;
  --green-1: #C9D1BE;
  --green-2: #A9B8A2;
  --green-3: #8A8F5A;
  --pink-1: #E7C9C7;
  --pink-2: #C98F97;
  --pink-3: #B77B8A;
  --orange-1: #E6A06C;
  --orange-2: #D98C5F;
  --orange-3: #C56A3D;
  --red: #C4433A;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--brown);
  overflow-x: hidden;
}

/* ===================== ANIMATIONS ===================== */
@keyframes floatLeaf {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(4deg); }
  66%       { transform: translateY(-7px) rotate(-3deg); }
}
@keyframes floatLeafAlt {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  40%       { transform: translateY(-10px) rotate(-5deg); }
  70%       { transform: translateY(-18px) rotate(3deg); }
}
@keyframes steam {
  0%   { opacity: 0; transform: translateY(0px) translateX(0px) scaleX(1); }
  20%  { opacity: 0.55; }
  100% { opacity: 0; transform: translateY(-50px) translateX(4px) scaleX(1.6); }
}
@keyframes steam2 {
  0%   { opacity: 0; transform: translateY(0px) translateX(0px) scaleX(1); }
  20%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-45px) translateX(-5px) scaleX(1.4); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
@keyframes inkDraw {
  from { stroke-dashoffset: 800; opacity: 0; }
  10%  { opacity: 1; }
  to   { stroke-dashoffset: 0; opacity: 0.18; }
}
@keyframes petal {
  0%   { transform: translateY(-20px) rotate(0deg) translateX(0px); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(100vh) rotate(360deg) translateX(40px); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes siopaoSplit {
  from { transform: translateY(0); }
  to   { transform: translateY(-80px); }
}
@keyframes siopaoSplitBottom {
  from { transform: translateY(0); }
  to   { transform: translateY(80px); }
}
@keyframes revealInput {
  from { opacity: 0; transform: scale(0.9) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.03); }
}
@keyframes drawVine {
  from { stroke-dashoffset: 2000; }
  to   { stroke-dashoffset: 0; }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ===================== NAV ===================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}
.site-nav.scrolled {
  background: rgba(250, 246, 239, 0.93);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(42, 26, 14, 0.07);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--brown);
  text-decoration: none;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

/* ===================== HERO ===================== */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.hero-bg {
  position: absolute;
  inset: -10%;
  background: linear-gradient(175deg, #2D4A3E 0%, #3D5C3A 25%, #8A8F5A 50%, #E6A06C 75%, #F0E8D8 100%);
  will-change: transform;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse at 30% 70%, rgba(201, 209, 190, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(231, 201, 199, 0.3) 0%, transparent 40%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(42,26,14,0.25) 0%, rgba(42,26,14,0.1) 50%, rgba(240,232,216,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 0 20px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.8;
  animation: fadeUp 1.2s ease 0.3s both;
}
.hero-names {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 24px;
  animation: fadeUp 1.2s ease 0.5s both;
  text-shadow: 0 2px 40px rgba(42,26,14,0.3);
}
.hero-names em {
  font-style: italic;
  font-weight: 300;
}
.hero-ampersand {
  font-size: 0.65em;
  color: var(--orange-1);
  display: block;
  line-height: 1.1;
}
.hero-date {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 48px;
  animation: fadeUp 1.2s ease 0.7s both;
}
.hero-countdown {
  display: flex;
  gap: 32px;
  justify-content: center;
  animation: fadeUp 1.2s ease 0.9s both;
}
.countdown-unit {
  text-align: center;
}
.countdown-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}
.countdown-label {
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 4px;
  display: block;
}
.countdown-sep {
  font-family: var(--serif);
  font-size: 2rem;
  opacity: 0.3;
  align-self: flex-start;
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  opacity: 0.5;
  animation: fadeIn 2s ease 2s both;
}
.hero-scroll span {
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: currentColor;
  animation: scrollBounce 2s ease infinite;
}

/* ===================== SECTIONS ===================== */
.section-label {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange-3);
  display: block;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--brown);
}
.section-title em { font-style: italic; color: var(--brown-mid); }
.section-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--brown-mid);
  max-width: 480px;
}

/* ===================== STORY ===================== */
.story-section {
  background: var(--cream);
  padding: 120px 60px;
}
.story-chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.story-chapter.reverse { direction: rtl; }
.story-chapter.reverse > * { direction: ltr; }
.story-img-placeholder {
  aspect-ratio: 4/5;
  background: var(--sand);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-img-inner {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--brown-light);
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.story-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 18px,
    rgba(160,128,106,0.07) 18px,
    rgba(160,128,106,0.07) 19px
  );
}
.story-chapter-num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--pink-1);
  line-height: 1;
  margin-bottom: 12px;
}
.story-chapter-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--brown);
  margin-bottom: 20px;
}
.story-vine {
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

/* ===================== WEDDING ===================== */
.wedding-section {
  background: var(--sand);
  padding: 120px 60px;
}
.wedding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
  background: rgba(42,26,14,0.08);
}
.event-card {
  background: var(--cream);
  padding: 48px 36px;
  transition: background 0.3s;
}
.event-card:hover { background: var(--sand); }
.event-venue {
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange-3);
  margin-bottom: 12px;
}
.event-name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 8px;
}
.event-time {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--brown-mid);
  margin-bottom: 16px;
}
.event-desc {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--brown-light);
}
.venue-info {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.venue-map-placeholder {
  aspect-ratio: 16/10;
  background: var(--green-1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.venue-map-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 12px,
    rgba(138,143,90,0.1) 12px, rgba(138,143,90,0.1) 13px
  );
}

/* ===================== ITINERARY ===================== */
.itinerary-section {
  background: var(--brown);
  padding: 120px 0;
  color: var(--cream);
  overflow: hidden;
}
.itinerary-header {
  padding: 0 60px;
  margin-bottom: 60px;
}
.itinerary-header .section-title { color: var(--cream); }
.itinerary-header .section-label { color: var(--orange-1); }
.itinerary-track {
  display: flex;
  gap: 24px;
  padding: 0 60px 40px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
  cursor: grab;
}
.itinerary-track:active { cursor: grabbing; }
.itinerary-track::-webkit-scrollbar { height: 3px; }
.itinerary-track::-webkit-scrollbar-track { background: transparent; }
.itinerary-track::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }
.day-card {
  min-width: 320px;
  background: rgba(250,246,239,0.06);
  border: 1px solid rgba(250,246,239,0.12);
  border-radius: 2px;
  padding: 36px 32px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.day-card:hover, .day-card.active {
  background: rgba(250,246,239,0.11);
  border-color: rgba(230,160,108,0.5);
}
.day-num {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange-1);
  margin-bottom: 10px;
}
.day-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 6px;
}
.day-date {
  font-size: 0.7rem;
  font-weight: 300;
  opacity: 0.5;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.day-events {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.day-event {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.day-event-time {
  font-size: 0.65rem;
  font-weight: 300;
  opacity: 0.5;
  white-space: nowrap;
  margin-top: 2px;
  min-width: 48px;
}
.day-event-name {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.5;
}
.day-event-icon {
  font-size: 1rem;
  min-width: 22px;
}

/* ===================== RSVP ===================== */
.rsvp-section {
  background: var(--cream);
  padding: 120px 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rsvp-container {
  width: 100%;
  max-width: 700px;
}
.rsvp-step-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand-dark);
  transition: background 0.3s;
}
.step-dot.active { background: var(--orange-3); }
.step-dot.done { background: var(--green-3); }
.step-line {
  flex: 1;
  height: 1px;
  background: var(--sand-dark);
}
.rsvp-card {
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  padding: 48px;
  border-radius: 2px;
}
.rsvp-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 8px;
}
.rsvp-subtitle {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--brown-light);
  margin-bottom: 36px;
  line-height: 1.6;
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 8px;
  font-weight: 400;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid var(--sand-dark);
  border-radius: 1px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--brown);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--orange-2); }
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid var(--sand-dark);
  border-radius: 1px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--brown);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B4C35' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.attendance-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.att-card {
  padding: 28px 16px;
  background: var(--cream);
  border: 1px solid var(--sand-dark);
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.att-card:hover { transform: translateY(-3px); border-color: var(--orange-2); }
.att-card.selected { background: var(--orange-1); border-color: var(--orange-3); color: white; }
.att-card-emoji { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.att-card-label {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  display: block;
  margin-bottom: 4px;
}
.att-card-sub {
  font-size: 0.65rem;
  font-weight: 300;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* Resort Map */
.resort-map-container {
  position: relative;
  width: 100%;
  background: var(--green-1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 24px;
}
.room-option {
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--sand-dark);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.room-option:hover { border-color: var(--orange-2); }
.room-option.selected { border-color: var(--orange-3); background: rgba(230,160,108,0.08); }
.room-name { font-family: var(--serif); font-size: 1.05rem; font-style: italic; }
.room-details { font-size: 0.7rem; font-weight: 300; color: var(--brown-light); margin-top: 2px; }
.room-rate { font-family: var(--sans); font-size: 0.8rem; font-weight: 400; color: var(--orange-3); }

/* Confirmation */
.confirmation-screen {
  text-align: center;
  padding: 60px 40px;
}
.confirm-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 24px;
  animation: pulse 3s ease infinite;
}
.confirm-title {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 16px;
}
.confirm-body {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--brown-mid);
  max-width: 400px;
  margin: 0 auto 32px;
}
.toast {
  display: inline-block;
  background: var(--green-2);
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  animation: fadeUp 0.6s ease both;
}

/* ===================== BUTTON ===================== */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--brown);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border-radius: 1px;
}
.btn-primary:hover { background: var(--brown-mid); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  padding: 13px 36px;
  background: transparent;
  color: var(--brown);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 1px;
}
.btn-outline:hover { background: var(--brown); color: var(--cream); }
.btn-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

/* ===================== GETTING HERE ===================== */
.gethere-section {
  background: var(--sand);
  padding: 120px 60px;
}
.routes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}
.route-card {
  background: var(--cream);
  padding: 40px;
  border-radius: 2px;
}
.route-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 8px;
}
.route-duration {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--orange-3);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.route-map-svg {
  width: 100%;
  height: 180px;
  background: var(--sand);
  border-radius: 2px;
  margin-bottom: 20px;
  overflow: hidden;
}
.route-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.route-step {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--brown-mid);
  align-items: flex-start;
}
.route-step::before {
  content: '—';
  color: var(--orange-2);
  flex-shrink: 0;
}

/* ===================== WHAT TO WEAR ===================== */
.wear-section {
  background: var(--cream);
  padding: 120px 60px;
}
.wear-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
  max-width: 900px;
}
.wear-card {
  background: var(--sand);
  padding: 40px;
  border-radius: 2px;
}
.wear-card-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 12px;
}
.wear-card-body {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--brown-mid);
}
.color-swatches {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
}
.swatch:hover { transform: scale(1.15); }

/* ===================== ACCOMMODATIONS ===================== */
.accoms-section {
  background: var(--sand);
  padding: 120px 60px;
}
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.room-card {
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s;
}
.room-card:hover { transform: translateY(-4px); }
.room-card-img {
  aspect-ratio: 16/10;
  background: var(--green-1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 14px,
    rgba(169,184,162,0.2) 14px, rgba(169,184,162,0.2) 15px
  );
}
.room-card-img-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--brown-mid);
  text-transform: uppercase;
  text-align: center;
  z-index: 1;
}
.room-card-body { padding: 28px; }
.room-card-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 4px;
}
.room-card-size {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--orange-3);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.room-card-desc {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--brown-mid);
  margin-bottom: 20px;
}
.room-card-meta {
  display: flex;
  gap: 20px;
  font-size: 0.7rem;
  color: var(--brown-light);
  margin-bottom: 20px;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--brown);
  color: var(--cream);
  padding: 80px 60px 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-col-title {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange-1);
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-col-body {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.9;
  opacity: 0.7;
}
.footer-col-body a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
}
.footer-copy {
  font-size: 0.65rem;
  font-weight: 300;
  opacity: 0.4;
  letter-spacing: 0.08em;
}

/* ===================== PASSWORD PAGE ===================== */
.password-page {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #1A2E25;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pw-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(138,143,90,0.25) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 30%, rgba(197,106,61,0.15) 0%, transparent 40%),
              radial-gradient(ellipse at 50% 50%, rgba(45,74,62,0.8) 0%, #1A2E25 100%);
}
.pw-hint {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.4);
  margin-bottom: 40px;
  animation: fadeIn 2s ease 0.5s both;
  position: relative;
  z-index: 2;
}
.siopao-wrapper {
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.siopao-svg-container {
  position: relative;
  width: 160px;
  height: 160px;
  transition: transform 0.2s;
}
.siopao-wrapper:hover .siopao-svg-container { transform: scale(1.04); }
.siopao-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.siopao-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.siopao-top.splitting { transform: translateY(-90px); }
.siopao-bottom.splitting { transform: translateY(90px); }
.pw-input-reveal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease 0.4s;
}
.pw-input-reveal.visible { opacity: 1; pointer-events: all; }
.rattan-card {
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  padding: 28px 24px;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  background-image: repeating-linear-gradient(
    90deg, transparent, transparent 8px,
    rgba(160,128,106,0.06) 8px, rgba(160,128,106,0.06) 9px
  ), repeating-linear-gradient(
    0deg, transparent, transparent 8px,
    rgba(160,128,106,0.06) 8px, rgba(160,128,106,0.06) 9px
  );
}
.rattan-label {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown-mid);
  display: block;
  margin-bottom: 10px;
}
.pw-field {
  width: 100%;
  padding: 10px 14px;
  background: white;
  border: 1px solid var(--sand-dark);
  border-radius: 1px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--brown);
  outline: none;
  margin-bottom: 12px;
  letter-spacing: 0.2em;
}
.pw-field:focus { border-color: var(--orange-2); }
.pw-error {
  font-size: 0.65rem;
  color: var(--red);
  text-align: center;
  min-height: 16px;
  margin-top: 4px;
}
.pw-click-hint {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(250,246,239,0.5);
  margin-top: 24px;
  transition: opacity 0.3s;
}

/* ===================== VIDEO PAGE ===================== */
.video-page {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: #0A0A08;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding: 0 40px;
}
.video-placeholder {
  aspect-ratio: 16/9;
  background: #1A1A16;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 30px,
    rgba(255,255,255,0.01) 30px, rgba(255,255,255,0.01) 31px
  );
}
.video-label {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  text-align: center;
  line-height: 1.5;
  z-index: 1;
}
.video-controls {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.btn-skip {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
  padding: 10px 24px;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 1px;
}
.btn-skip:hover { border-color: rgba(255,255,255,0.6); color: rgba(255,255,255,0.9); }
.video-eyebrow {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-bottom: 16px;
}
.video-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  text-align: center;
  margin-bottom: 32px;
}

/* ===================== BOTANICAL OVERLAY ===================== */
.botanical-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.leaf-float {
  position: absolute;
  opacity: 0.18;
  animation: floatLeaf 8s ease-in-out infinite;
}
.leaf-float-alt {
  position: absolute;
  opacity: 0.12;
  animation: floatLeafAlt 11s ease-in-out infinite;
}
.petal-fall {
  position: absolute;
  width: 8px;
  height: 12px;
  border-radius: 50% 0 50% 0;
  opacity: 0;
  animation: petal linear infinite;
}

/* ===================== INK DIVIDER ===================== */
.ink-divider-wrap {
  display: flex;
  justify-content: center;
  padding: 60px 0;
  opacity: 0.15;
}

/* ===================== TRANSITIONS ===================== */
.page-fade-enter {
  animation: fadeIn 0.8s ease both;
}
.page-fade-exit {
  animation: fadeIn 0.8s ease reverse both;
}
