/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2c5530;
  --primary-light: #3d7045;
  --secondary: #c9a961;
  --dark: #1a1a1a;
  --light: #f8f6f3;
  --white: #ffffff;
  --gray: #6b7280;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  font-weight: 400;
  line-height: 1.2;
}

.section-label {
  display: inline-block;
  color: var(--secondary);
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: sans-serif;
}

.section-heading {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--primary);
  font-family: sans-serif;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.875rem;
  letter-spacing: 1px;
  transition: var(--transition);
  font-family: sans-serif;
  text-transform: uppercase;
}

.nav-menu a:hover {
  color: var(--primary);
}

.reserve-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  font-family: sans-serif;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.reserve-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* ========== BOOKING MODAL STYLES ========== */
.booking-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  overflow-y: auto;
  padding: 2rem;
}

.booking-modal.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.booking-modal-content {
  background: var(--white);
  border-radius: 12px;
  max-width: 650px;
  width: 100%;
  margin: 2rem auto;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}

.booking-close-btn:hover {
  color: var(--dark);
}

.booking-header {
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.booking-header .section-heading {
  font-size: 1.75rem;
  margin-bottom: 0;
}

.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  gap: 0.5rem;
}

.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.4;
  transition: var(--transition);
}

.booking-step.active,
.booking-step.completed {
  opacity: 1;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
}

.booking-step.active .step-number {
  background: var(--primary);
  color: var(--white);
}

.booking-step.completed .step-number {
  background: var(--secondary);
  color: var(--dark);
}

.booking-step span {
  font-family: sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.step-line {
  flex: 1;
  max-width: 50px;
  height: 2px;
  background: var(--light);
}

.form-step {
  display: none;
  padding: 1.5rem 2rem 2rem;
}

.form-step.active {
  display: block;
}

.form-step h3 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.room-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 350px;
  overflow-y: auto;
}

.room-option {
  cursor: pointer;
}

.room-option input {
  display: none;
}

.room-option-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border: 2px solid var(--light);
  border-radius: 8px;
  transition: var(--transition);
}

.room-option:hover .room-option-card {
  border-color: var(--secondary);
}

.room-option input:checked + .room-option-card {
  border-color: var(--primary);
  background: rgba(44, 85, 48, 0.05);
}

.room-option-info strong {
  display: block;
  font-family: sans-serif;
  margin-bottom: 0.25rem;
}

.room-option-info span {
  font-size: 0.875rem;
  color: var(--gray);
}

.room-option-price {
  font-family: sans-serif;
  font-weight: 600;
  color: var(--primary);
}

.room-option-price small {
  font-weight: 400;
  color: var(--gray);
}

.date-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.date-inputs .input-group:last-child {
  grid-column: span 2;
}

.input-group {
  margin-bottom: 1rem;
}

.input-group label {
  display: block;
  font-family: sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--light);
  border-radius: 6px;
  font-family: Georgia, serif;
  font-size: 1rem;
  transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.guest-inputs .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-summary,
.final-summary {
  background: var(--light);
  padding: 1.25rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.booking-summary h4,
.final-summary h4 {
  font-family: sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-family: sans-serif;
  font-size: 0.95rem;
}

.summary-row.total {
  border-top: 2px solid rgba(0,0,0,0.1);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  font-weight: 600;
}

.summary-row.total span:last-child {
  color: var(--primary);
}

.form-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-back {
  flex: 1;
  padding: 0.875rem;
  border: 2px solid var(--light);
  background: var(--white);
  border-radius: 6px;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 0.875rem;
  transition: var(--transition);
}

.btn-back:hover {
  border-color: var(--gray);
}

.btn-next,
.btn-submit {
  flex: 2;
  padding: 0.875rem;
  border: none;
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-next:hover,
.btn-submit:hover {
  background: var(--primary-light);
}

.booking-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.booking-success.active {
  display: block;
}

.success-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: var(--white);
  font-size: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.booking-success h2 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.confirmation-details {
  background: var(--light);
  padding: 1.25rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  text-align: left;
}

.confirmation-note {
  font-size: 0.875rem;
  color: var(--gray);
}

.close-success-btn {
  margin-top: 1.5rem;
  padding: 0.875rem 2.5rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: sans-serif;
  transition: var(--transition);
}

.close-success-btn:hover {
  background: var(--primary-light);
}

/* ========== END BOOKING MODAL ========== */

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2c5530 0%, #1a3d20 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: 5rem;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-primary, .btn-secondary {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.btn-primary {
  background: var(--secondary);
  color: var(--dark);
}

.btn-primary:hover {
  background: #d4b976;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  opacity: 0.8;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: sans-serif;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
  40% { transform: rotate(45deg) translateY(10px); }
  60% { transform: rotate(45deg) translateY(5px); }
}

/* About Section */
.about-section {
  padding: 8rem 0;
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text {
  color: var(--gray);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.feature-text h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.feature-text p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Rooms Section */
.rooms-section {
  padding: 8rem 0;
  background: var(--white);
  text-align: center;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.room-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  text-align: left;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.room-image-container {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.room-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.room-card:hover .room-image {
  transform: scale(1.05);
}

.room-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--secondary);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: sans-serif;
  font-weight: 600;
}

.room-badge.premium {
  background: var(--primary);
  color: var(--white);
}

.room-content {
  padding: 2rem;
}

.room-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.room-specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray);
  font-family: sans-serif;
}

.room-description {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.room-amenities {
  list-style: none;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.room-amenities li {
  color: var(--gray);
  font-size: 0.875rem;
  font-family: sans-serif;
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.room-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: sans-serif;
}

.price-amount {
  font-size: 1.75rem;
  color: var(--primary);
  font-weight: 600;
  font-family: sans-serif;
}

.price-period {
  font-size: 0.875rem;
  color: var(--gray);
}

.book-button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  font-family: sans-serif;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.book-button:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

/* Experiences Section */
.experiences-section {
  padding: 8rem 0;
  background: var(--light);
  text-align: center;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.experience-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.experience-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.experience-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.experience-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* Dining Section */
.dining-section {
  padding: 8rem 0;
  background: var(--white);
}

.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.dining-text {
  color: var(--gray);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.dining-options {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dining-option h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.dining-option p {
  color: var(--gray);
}

/* Gallery Section */
.gallery-section {
  padding: 8rem 0;
  background: var(--light);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact-section {
  padding: 8rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 2rem;
  line-height: 1;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-family: sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item p {
  color: var(--gray);
  font-size: 1.125rem;
}

.contact-form {
  background: var(--light);
  padding: 3rem;
  border-radius: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-family: Georgia, serif;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.submit-btn {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  font-family: sans-serif;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.submit-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 85, 48, 0.3);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  font-family: sans-serif;
  font-size: 0.875rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  font-family: sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-heading { font-size: 2.5rem; }
  .about-grid, .dining-grid, .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .dining-grid .dining-image { order: -1; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1.25rem; }
  .hero-buttons { flex-direction: column; gap: 1rem; }
  .section-heading { font-size: 2rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
  .guest-inputs .form-row { grid-template-columns: 1fr; }
  .date-inputs { grid-template-columns: 1fr; }
  .date-inputs .input-group:last-child { grid-column: span 1; }
  .booking-modal { padding: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: 2.25rem; }
  .section-heading { font-size: 1.75rem; }
  .btn-primary, .btn-secondary { width: 100%; }
}
