/* ============================================
   HAMMONDS HALL B&B — Premium Dark Luxury
   Colors: Deep charcoal (#1a1412) + Terracotta (#8b4a32) + Sand (#c9a96e)
============================================ */

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

:root {
  --bg-deep: #1a1412;
  --bg-card: #221c1a;
  --bg-card-hover: #2a2220;
  --bg-surface: #2c2421;
  --terracotta: #8b4a32;
  --terracotta-light: #a85d42;
  --sand: #c9a96e;
  --sand-light: #d4b87f;
  --sand-dim: rgba(201, 169, 110, 0.15);
  --text-white: #f5f0eb;
  --text-light: #d4cdc5;
  --text-muted: #9a8e84;
  --text-dim: #6b6058;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(26, 20, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.02em;
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

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

.nav-links a:hover {
  color: var(--sand);
}

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

.nav-cta {
  border: 1px solid var(--sand) !important;
  padding: 10px 24px !important;
  color: var(--sand) !important;
  letter-spacing: 0.1em !important;
  transition: var(--transition) !important;
}

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

.nav-cta:hover {
  background: var(--sand) !important;
  color: var(--bg-deep) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

/* ============================================
   MOBILE MENU
============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-muted);
  padding: 12px 24px;
  transition: var(--transition);
  display: block;
}

.mobile-link:hover {
  color: var(--sand);
}

.mobile-link-cta {
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--sand);
  padding: 14px 36px;
  color: var(--sand) !important;
}

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero.loaded .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 20, 18, 0.55) 0%,
    rgba(26, 20, 18, 0.45) 40%,
    rgba(26, 20, 18, 0.70) 80%,
    rgba(26, 20, 18, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 28px;
}

.hero-eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--sand);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--sand);
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--sand);
  color: var(--bg-deep);
}

.btn-primary:hover {
  background: var(--sand-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(245, 240, 235, 0.3);
}

.btn-secondary:hover {
  border-color: var(--sand);
  color: var(--sand);
}

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

/* ============================================
   HERO SCROLL INDICATOR
============================================ */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--sand);
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTION COMMON
============================================ */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--sand);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

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

.section-header .section-label {
  justify-content: center;
}

.section-header .section-label::before {
  display: none;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ============================================
   INTRO
============================================ */
.intro {
  padding: 120px 0;
  background: var(--bg-deep);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.intro-accent {
  display: flex;
  align-items: flex-start;
  padding-top: 8px;
}

.intro-text {
  max-width: 600px;
}

.intro-text .section-label {
  margin-bottom: 20px;
}

.intro-text .section-title {
  margin-bottom: 28px;
}

.intro-text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.85;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}

.stat {
  text-align: right;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.stat:first-child {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.stat-divider {
  height: 1px;
  background: rgba(201, 169, 110, 0.08);
}

/* ============================================
   ROOMS
============================================ */
.rooms {
  padding: 120px 0;
  background: var(--bg-card);
  position: relative;
}

.rooms::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sand), transparent);
  opacity: 0.2;
}

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

.room-card {
  background: var(--bg-surface);
  border: 1px solid rgba(201, 169, 110, 0.08);
  transition: var(--transition);
  overflow: hidden;
}

.room-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.room-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

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

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

.room-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--sand);
  color: var(--bg-deep);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.room-info {
  padding: 28px;
}

.room-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 12px;
}

.room-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.room-amenities {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.room-amenities li {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rooms-cta {
  text-align: center;
}

/* ============================================
   EXPERIENCE
============================================ */
.experience {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/5774037/pexels-photo-5774037.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  opacity: 0.08;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.exp-card {
  padding: 40px 32px;
  background: rgba(34, 28, 26, 0.8);
  border: 1px solid rgba(201, 169, 110, 0.08);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.exp-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
  background: rgba(44, 36, 33, 0.9);
  transform: translateY(-4px);
}

.exp-icon {
  margin-bottom: 24px;
  opacity: 0.9;
}

.exp-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 12px;
}

.exp-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   LOCATION
============================================ */
.location {
  padding: 120px 0;
  background: var(--bg-card);
  position: relative;
}

.location::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sand), transparent);
  opacity: 0.2;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.map-placeholder {
  border: 1px solid rgba(201, 169, 110, 0.15);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.7) contrast(1.1) brightness(0.7);
  transition: var(--transition);
}

.map-placeholder:hover iframe {
  filter: grayscale(0.4) contrast(1) brightness(0.8);
}

.location-info {
  padding-top: 16px;
}

.location-info .section-label {
  margin-bottom: 16px;
}

.location-info .section-title {
  margin-bottom: 20px;
}

.location-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 40px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50%;
}

.contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 4px;
}

.contact-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-value:hover {
  color: var(--sand);
}

/* ============================================
   GALLERY
============================================ */
.gallery {
  padding: 120px 0;
  background: var(--bg-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item--large {
  grid-column: 1 / 8;
  grid-row: 1 / 2;
  aspect-ratio: 4/3;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
  aspect-ratio: 4/3;
}

.gallery-item--wide {
  grid-column: 1 / 13;
  grid-row: 2 / 3;
  aspect-ratio: 21/9;
}

/* ============================================
   CONTACT
============================================ */
.contact {
  padding: 120px 0;
  background: var(--bg-card);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sand), transparent);
  opacity: 0.2;
}

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

.contact-info .section-label {
  margin-bottom: 16px;
}

.contact-info .section-title {
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 40px;
}

.contact-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}

.highlight svg {
  flex-shrink: 0;
}

/* ============================================
   CONTACT FORM
============================================ */
.contact-form-wrapper {
  background: var(--bg-surface);
  border: 1px solid rgba(201, 169, 110, 0.1);
  padding: 48px;
}

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

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

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

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(26, 20, 18, 0.6);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sand);
  background: rgba(26, 20, 18, 0.8);
}

.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 5l3 3 3-3' stroke='%23c9a96e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-deep);
  color: var(--text-light);
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  text-align: center;
}

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

.form-success p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  padding: 80px 0 0;
  background: var(--bg-deep);
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 64px;
  padding-bottom: 64px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-white);
}

.footer-tagline {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 300px;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-nav a:hover {
  color: var(--sand);
}

.footer-contact a {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact a:hover {
  color: var(--sand);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-dim);
}

/* ============================================
   ANIMATIONS
============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr 2fr;
  }

  .intro-stats {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    padding-top: 32px;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
  }

  .stat {
    text-align: center;
    flex: 1;
  }

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

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

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

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

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

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

  .nav-toggle {
    display: block;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .intro {
    padding: 80px 0;
  }

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

  .intro-accent {
    display: none;
  }

  .intro-stats {
    flex-direction: row;
    border-top: none;
    padding-top: 0;
  }

  .stat {
    text-align: center;
    padding: 12px 16px;
  }

  .rooms {
    padding: 80px 0;
  }

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

  .experience {
    padding: 80px 0;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .exp-card {
    padding: 28px 24px;
  }

  .gallery {
    padding: 80px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--large {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }

  .gallery-item--wide {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }

  .contact {
    padding: 80px 0;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

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

  .footer {
    padding: 60px 0 0;
  }

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

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

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

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }

  .hero-eyebrow-line {
    width: 24px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.75rem;
  }

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

  .gallery-item--large {
    grid-column: 1;
  }

  .gallery-item--wide {
    grid-column: 1;
  }
}
