/* ============================================
   Route 66 Motel & Restaurant — Stylesheet
   Color Palette: Emerald + Cream
   ============================================ */

/* CSS Custom Properties */
:root {
  --emerald-900: #064E3B;
  --emerald-800: #065F46;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10B981;
  --cream-50: #FDFCFA;
  --cream-100: #F5F0E8;
  --cream-200: #E8E0D0;
  --cream-300: #D4CBB8;
  --ink-900: #1A1A18;
  --ink-800: #2D2D2A;
  --ink-700: #3D3D3A;
  --ink-600: #5A5A56;
  --ink-500: #7A7A75;
  --ink-400: #9A9A94;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-800);
  background-color: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink-900);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-600);
  max-width: 560px;
}

.section-header {
  margin-bottom: 64px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--emerald-800);
  color: var(--cream-50);
  border: 1px solid var(--emerald-800);
}

.btn-primary:hover {
  background: var(--emerald-700);
  border-color: var(--emerald-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(6, 78, 59, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--cream-100);
  border: 1px solid rgba(245, 240, 232, 0.4);
}

.btn-ghost:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: rgba(245, 240, 232, 0.7);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(253, 252, 250, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav.scrolled .nav-logo,
.nav.scrolled .nav-link {
  color: var(--ink-900);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream-100);
  transition: color 0.3s;
}

.nav-logo-icon {
  color: var(--cream-200);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 232, 0.85);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 20px;
  border: 1px solid rgba(245, 240, 232, 0.4);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
  background: var(--cream-100);
  color: var(--emerald-900) !important;
  border-color: var(--cream-100);
}

.nav-cta::after {
  display: none;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream-100);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -4px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--cream-50);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-menu-links a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink-900);
  transition: color 0.3s;
}

.mobile-menu-links a:hover {
  color: var(--emerald-700);
}

.mobile-cta {
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 12px;
  padding: 14px 32px;
  border: 1px solid var(--emerald-800);
  border-radius: 2px;
  color: var(--emerald-800) !important;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 78, 59, 0.82) 0%,
    rgba(6, 95, 70, 0.70) 50%,
    rgba(4, 120, 87, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 160px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 32px;
}

.hero-tag-line {
  width: 32px;
  height: 1px;
  background: rgba(245, 240, 232, 0.5);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream-50);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 800px;
}

.hero-headline-accent {
  font-style: italic;
  color: var(--cream-200);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.8);
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Floating Stat Cards */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0 24px;
  pointer-events: none;
}

.stat-card {
  background: var(--cream-50);
  padding: 28px 36px;
  text-align: center;
  pointer-events: all;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--cream-200);
}

.stat-card-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  color: var(--emerald-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card-icon svg {
  width: 100%;
  height: 100%;
}

.stat-card-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink-900);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
}

/* ============================================
   Section Divider
   ============================================ */
.section-divider {
  background: var(--cream-100);
  overflow: hidden;
}

.section-divider-reverse {
  order: -1;
}

/* ============================================
   Rooms Section
   ============================================ */
.rooms {
  padding: 120px 0;
  background: var(--cream-50);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.room-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--cream-200);
  transition: all 0.4s var(--ease-out);
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(6, 78, 59, 0.1);
  border-color: transparent;
}

.room-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 6/4;
}

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.room-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--emerald-800);
  color: var(--cream-50);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.room-card-body {
  padding: 28px;
}

.room-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink-900);
  margin-bottom: 10px;
}

.room-card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-600);
  margin-bottom: 20px;
}

.room-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.room-card-amenities li {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-600);
  padding: 4px 10px;
  background: var(--cream-100);
  border-radius: 2px;
}

.room-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald-700);
  transition: gap 0.3s var(--ease-out);
}

.room-card-link:hover {
  gap: 12px;
}

.room-card-link svg {
  transition: transform 0.3s var(--ease-out);
}

.room-card-link:hover svg {
  transform: translateX(2px);
}

/* ============================================
   Dining Section
   ============================================ */
.dining {
  padding: 120px 0;
  background: var(--cream-100);
}

.dining-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dining-text .section-desc {
  margin-bottom: 36px;
}

.dining-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.dining-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dining-highlight-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--emerald-700);
  margin-top: 2px;
}

.dining-highlight strong {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-900);
  margin-bottom: 2px;
}

.dining-highlight-sub {
  font-size: 0.88rem;
  color: var(--ink-500);
  line-height: 1.6;
}

.dining-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dining-img-main {
  aspect-ratio: 7/8;
  overflow: hidden;
  border-radius: 4px;
}

.dining-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.dining-img-main:hover img {
  transform: scale(1.03);
}

.dining-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dining-img-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.6s var(--ease-out);
}

.dining-img-row img:hover {
  transform: scale(1.03);
}

/* ============================================
   Location Section
   ============================================ */
.location {
  padding: 120px 0;
  background: var(--cream-50);
}

.landmarks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.landmark-card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--cream-200);
  background: var(--white);
  transition: all 0.4s var(--ease-out);
}

.landmark-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(6, 78, 59, 0.08);
  border-color: transparent;
}

.landmark-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.landmark-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.landmark-card-body {
  padding: 20px;
}

.landmark-card-body h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink-900);
  margin-bottom: 6px;
}

.landmark-dist {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 8px;
}

.landmark-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--ink-500);
}

/* ============================================
   History Section
   ============================================ */
.history {
  padding: 120px 0;
  background: var(--cream-100);
}

.history-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.history-images {
  position: relative;
}

.history-img-large {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 7/6;
}

.history-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.history-img-large:hover img {
  transform: scale(1.03);
}

.history-img-small {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 4px;
  overflow: hidden;
  border: 6px solid var(--cream-100);
  aspect-ratio: 4/3;
  max-width: 240px;
}

.history-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-text .section-desc {
  margin-bottom: 28px;
}

.history-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--ink-600);
  margin-bottom: 20px;
}

.history-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.history-signature-line {
  width: 48px;
  height: 1px;
  background: var(--emerald-600);
}

.history-signature-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-500);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--cream-50);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-desc {
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--emerald-700);
  border: 1px solid var(--cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail strong {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--ink-600);
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--emerald-700);
  text-decoration: underline;
}

/* Form */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: 4px;
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-600);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-900);
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: 2px;
  padding: 12px 14px;
  transition: all 0.3s var(--ease-out);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-400);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%237A7A75' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Form Success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 48px 24px;
}

.form-success.show {
  display: flex;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  color: var(--emerald-600);
  background: rgba(5, 150, 105, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink-900);
}

.form-success p {
  font-size: 0.95rem;
  color: var(--ink-500);
  line-height: 1.7;
  max-width: 320px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--emerald-900);
  color: var(--cream-200);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream-100);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.6);
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.75);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--cream-50);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.4);
}

/* ============================================
   Reveal Animation
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.rooms-grid [data-reveal] { transition-delay: 0.1s; }
.rooms-grid [data-reveal]:nth-child(2) { transition-delay: 0.2s; }
.rooms-grid [data-reveal]::nth-child(3) { transition-delay: 0.3s; }

.landmarks-grid [data-reveal] { transition-delay: 0.1s; }
.landmarks-grid [data-reveal]:nth-child(2) { transition-delay: 0.15s; }
.landmarks-grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.landmarks-grid [data-reveal]:nth-child(4) { transition-delay: 0.25s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landmarks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dining-layout,
  .history-layout,
  .contact-layout {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding: 100px 24px 140px;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: space-between;
    background: var(--cream-50);
  }

  .stat-card {
    flex: 1 1 calc(50% - 1px);
    padding: 20px 16px;
  }

  .stat-card:not(:last-child)::after {
    display: none;
  }

  .stat-card:last-child {
    display: none;
  }

  .rooms {
    padding: 80px 0;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .dining {
    padding: 80px 0;
  }

  .dining-layout {
    grid-template-columns: 1fr;
  }

  .dining-images {
    order: -1;
  }

  .location {
    padding: 80px 0;
  }

  .landmarks-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .history {
    padding: 80px 0;
  }

  .history-layout {
    grid-template-columns: 1fr;
  }

  .history-img-small {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 280px;
    margin-top: 20px;
  }

  .contact {
    padding: 80px 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrapper {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .stat-card:last-child {
    display: block;
  }

  .hero-stats .stat-card {
    flex: 1 1 50%;
  }

  .dining-img-row {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
