/* ===== VARIABLES & RESET ===== */
:root {
  --warm-cream: #FBEFD9;
  --soft-sage: #B0B698;
  --deep-sage: #7C8460;
  --warm-terracotta: #C8856A;
  --deep-terracotta: #A66651;
  --soft-brown: #8B7355;
  --dark-brown: #4A3728;
  --warm-white: #FDF7E8;
  --light-sage: #D7DCC4;
  --muted-gold: #D4A35E;
  --text-primary: #3A2E22;
  --text-secondary: #6B5D4F;
  --text-light: #8B7F73;
  --border-light: #E8DCC4;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1200px;
  --section-padding: 5rem 2rem;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 20px rgba(74, 55, 40, 0.08);
  --shadow-hover: 0 8px 30px rgba(74, 55, 40, 0.15);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--warm-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--deep-terracotta);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--warm-terracotta);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-brown);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-brown);
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--warm-terracotta);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--warm-terracotta);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--dark-brown);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark-brown);
  transition: var(--transition);
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 110;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu li {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--cream, var(--warm-cream));
  color: var(--dark-brown);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(rgba(30, 25, 20, 0.55), rgba(30, 25, 20, 0.45)),
              url('../images/front-door.jpg') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(196, 133, 106, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(168, 181, 162, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 550px;
  margin: 0 auto 2.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--warm-terracotta);
  color: white;
}

.btn-primary:hover {
  background: var(--deep-terracotta);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 133, 106, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--deep-sage);
  border: 2px solid var(--soft-sage);
}

.btn-secondary:hover {
  background: var(--deep-sage);
  color: white;
  border-color: var(--deep-sage);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--text-secondary);
  margin-top: 1rem;
  font-size: 1.05rem;
}

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

/* ===== ROOM CARDS ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.room-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border-light);
  display: block;
  color: inherit;
  text-decoration: none;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.room-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-card-image img {
  transform: scale(1.05);
}

.room-card-image .room-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep-sage);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.room-card-body {
  padding: 1.5rem;
}

.room-card-body h3 {
  margin-bottom: 0.75rem;
}

.room-card-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.room-feature {
  background: var(--warm-cream);
  color: var(--text-secondary);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== ROOM DETAIL PAGE ===== */
.room-detail-hero {
  padding: 4rem 2rem 3rem;
  text-align: center;
  background: var(--warm-white);
}

.room-detail-hero .room-tag {
  display: inline-block;
  background: var(--light-sage);
  color: var(--deep-sage);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.room-detail-hero p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem;
}

.room-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.room-info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.room-description h3 {
  margin-bottom: 1rem;
}

.room-description p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.room-description ul {
  list-style: none;
  padding: 0;
}

.room-description ul li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  padding-left: 1.5rem;
  position: relative;
}

.room-description ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--soft-sage);
  border-radius: 50%;
}

.room-sidebar {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border-light);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.room-sidebar h4 {
  margin-bottom: 1rem;
}

.room-sidebar .detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.room-sidebar .detail-label {
  color: var(--text-light);
}

.room-sidebar .detail-value {
  font-weight: 600;
  color: var(--dark-brown);
}

/* ===== ABOUT ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--light-sage) 0%, var(--soft-sage) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: var(--warm-white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: var(--warm-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.value-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ===== CALENDAR ===== */
.calendar-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.calendar-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.calendar-controls button {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-primary);
  transition: all var(--transition);
}

.calendar-controls button:hover {
  background: var(--light-sage);
  border-color: var(--soft-sage);
}

.calendar-controls h3 {
  min-width: 200px;
  text-align: center;
}

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-dot.mind-body { background: var(--soft-sage); }
.legend-dot.community { background: var(--warm-terracotta); }
.legend-dot.creative { background: var(--muted-gold); }
.legend-dot.office-hours { background: #8FA3B5; }

.legend-toggle {
  cursor: pointer;
  user-select: none;
}

.legend-toggle input {
  margin: 0;
  cursor: pointer;
  accent-color: #8FA3B5;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  background: var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.calendar-day-header {
  background: var(--deep-sage);
  color: white;
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.calendar-day {
  background: var(--warm-white);
  min-height: 100px;
  padding: 0.5rem;
  position: relative;
}

.calendar-day.other-month {
  background: var(--warm-cream);
  opacity: 0.5;
}

.calendar-day.today {
  background: rgba(168, 181, 162, 0.1);
}

.calendar-day .day-number {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.calendar-day.today .day-number {
  background: var(--deep-sage);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.calendar-event {
  display: block;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  font-weight: 500;
}

.calendar-event:hover {
  filter: brightness(0.95);
}

.calendar-event.mind-body {
  background: rgba(168, 181, 162, 0.3);
  color: var(--deep-sage);
}

.calendar-event.community {
  background: rgba(196, 133, 106, 0.2);
  color: var(--deep-terracotta);
}

.calendar-event.creative {
  background: rgba(212, 169, 106, 0.25);
  color: var(--soft-brown);
}

.calendar-event.office-hours {
  background: rgba(143, 163, 181, 0.2);
  color: #4F6376;
  border: 1px dashed rgba(143, 163, 181, 0.7);
  padding: 1px 5px;
}

/* ===== EVENT DETAIL PAGE ===== */
.event-detail {
  max-width: 720px;
}

.event-meta {
  margin-bottom: 1.5rem;
}

.event-room-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.event-room-badge a {
  color: inherit;
  text-decoration: none;
}

.event-room-badge.mind-body {
  background: rgba(168, 181, 162, 0.3);
  color: var(--deep-sage);
}

.event-room-badge.community {
  background: rgba(196, 133, 106, 0.2);
  color: var(--deep-terracotta);
}

.event-room-badge.creative {
  background: rgba(212, 169, 106, 0.25);
  color: var(--soft-brown);
}

.event-description {
  white-space: pre-line;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.event-description a {
  color: var(--deep-terracotta);
  text-decoration: underline;
}

.event-no-description {
  color: var(--text-light);
  font-style: italic;
}

.event-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--warm-white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--soft-sage);
  box-shadow: 0 0 0 3px rgba(168, 181, 162, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-hint {
  margin: -0.75rem 0 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.form-hint a {
  color: var(--soft-sage);
  text-decoration: none;
}

.form-hint a:hover {
  text-decoration: underline;
}

.form-status {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(168, 181, 162, 0.2);
  color: var(--deep-sage);
  border: 1px solid var(--soft-sage);
}

.form-status.error {
  display: block;
  background: rgba(196, 133, 106, 0.15);
  color: var(--deep-terracotta);
  border: 1px solid var(--warm-terracotta);
}

.contact-info {
  padding: 2rem;
  background: var(--warm-white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  height: fit-content;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: var(--warm-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-detail .text h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-detail .text p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.venmo-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.venmo-section h4 {
  margin-bottom: 0.5rem;
}

.venmo-section p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.venmo-qr {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  background: var(--warm-cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

.venmo-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--warm-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
  border: 1px solid var(--border-light);
}

.social-link:hover {
  background: var(--warm-terracotta);
  color: white;
  border-color: var(--warm-terracotta);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark-brown);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 2rem;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr 1fr;
  gap: 2.5rem;
}

.footer-brand h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.75rem;
}

.footer-brand h3 span {
  color: var(--warm-terracotta);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-section ul a:hover {
  color: var(--warm-terracotta);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social .social-link {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.footer-social .social-link:hover {
  background: var(--warm-terracotta);
  border-color: var(--warm-terracotta);
  color: white;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
  position: relative;
}

.newsletter-form input[type="email"] {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  width: 100%;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--warm-terracotta);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
  width: 100%;
}

.footer-support p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.venmo-qr-placeholder {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}

.venmo-qr {
  width: 120px;
  height: 120px;
  display: block;
  background: white;
  border-radius: var(--radius);
  padding: 8px;
  box-sizing: content-box;
}

.venmo-handle {
  font-size: 0.85rem !important;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75) !important;
  margin-top: 0.65rem !important;
  margin-bottom: 0 !important;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--deep-sage), var(--soft-sage));
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-banner p {
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.cta-banner .btn-primary {
  background: white;
  color: var(--deep-sage);
}

.cta-banner .btn-primary:hover {
  background: var(--warm-cream);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--light-sage) 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
    gap: 1rem;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-dropdown-menu {
    position: static;
    display: block;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0.25rem 0 0 1rem;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    margin-top: 0.25rem;
  }

  .nav-dropdown-menu a {
    padding: 0.4rem 0;
  }

  .hero {
    padding: 4rem 1.5rem;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .room-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .room-sidebar {
    position: static;
  }

  .calendar-day {
    min-height: 60px;
    padding: 0.25rem;
  }

  .calendar-event {
    font-size: 0.6rem;
    padding: 1px 3px;
  }

  .calendar-day-header {
    font-size: 0.7rem;
    padding: 0.5rem 0.25rem;
  }

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

@media (max-width: 480px) {
  :root {
    --section-padding: 3rem 1.25rem;
  }

  .calendar-controls {
    gap: 1rem;
  }

  .calendar-legend {
    gap: 1rem;
  }
}
