/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

/* GLOBAL BACKGROUND — SINGLE SOURCE OF TRUTH */
body {
  font-family: 'Montserrat', sans-serif;
  color: #e9e9e9;
  line-height: 1.65;

  background:
    linear-gradient(
      to bottom,
      rgba(10,13,18,0.25) 0%,
      rgba(10,13,18,0.45) 45%,
      rgba(10,13,18,0.85) 100%
    ),
    url("/images/sunflower_background_plate.png");

  background-size: cover;
  background-repeat: no-repeat;

  /* LOWER THE SUN + ARC */
  background-position: center 95%;

  background-attachment: fixed;
}

/* TYPE */
h1, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(3.2rem, 5.5vw, 4.8rem);
  margin-bottom: 1.6rem;
}

h3 {
  font-size: 1.55rem;
  margin-bottom: 0.7rem;
}

p { font-size: 1rem; color: #d3d6dc; }

/* LABELS */
.eyebrow, .section-label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #d2b178;
}

.section-label { margin-bottom: 2.1rem; }
.centered { text-align: center; }

/* HERO */
.hero {
  position: relative;
  padding: 9rem 7vw 6.5rem;
}

.hero-inner {
  max-width: 920px;
}

.hero-subtext {
  max-width: 540px;
  font-size: 1.05rem;
  color: #cfd5de;
}

/* TODAY STRIP */
.today-strip {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #bfc6d2;
}

.today-item em {
  font-style: normal;
  color: #e0e4eb;
}

.divider { opacity: 0.4; }

/* FIELD */
.field {
  padding: 5.5rem 7vw 4.5rem;
}

.field-inner { max-width: 920px; }

.field-grid {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.field-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.field-label {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #9fb0c6;
}

.field-value { text-align: right; }

.placeholder {
  font-style: italic;
  color: #aab2bf;
}

.field-row-meta {
  grid-template-columns: 1fr;
  border-bottom: none;
}

.field-meta {
  font-size: 0.75rem;
  color: #8f98a6;
}

/* WEEKLY */
.weekly {
  padding: 4.5rem 7vw 5rem;
}

.weekly-inner { max-width: 720px; }

.weekly-text {
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.7;
}

.weekly-meta {
  margin-top: 1.4rem;
  font-size: 0.75rem;
  color: #8f98a6;
}

/* ROOMS */
.rooms {
  padding: 4.5rem 7vw 6rem;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.4rem;
  margin-top: 3.4rem;
}

.room-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.07),
    rgba(255,255,255,0.015)
  );
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 2.6rem 2.4rem;
  backdrop-filter: blur(8px);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 22px 44px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* FOOTER */
.footer {
  padding: 3.6rem 6vw 4.2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.footer-note {
  font-size: 0.78rem;
  color: #9ea6b2;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  body {
    background-position: center 100%;
  }
}

@media (max-width: 720px) {
  .field-row { grid-template-columns: 1fr; }
  .field-value { text-align: left; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .room-card { transition: none; }
}
