﻿/* ============================================================
   CASA PIETREFITTE - Luxury Country House & B&B (Ostuni, Puglia)
   Main Style Sheet (style.css) - Pure Vanilla CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors - Curated Apulian Stone & Olive Palette */
  --bg-main: #FDFBF7;
  --bg-alt: #F6F2EC;
  --bg-white: #FFFFFF;
  --bg-dark: #1E2420;
  --bg-stone: #EAE3DA;
  
  --text-dark: #2A302B;
  --text-muted: #5E6660;
  --text-light: #FDFBF7;
  --text-gold: #B8864B;
  
  --accent-gold: #C69353;
  --accent-gold-hover: #AF7D3F;
  --accent-olive: #4A5D4E;
  --accent-olive-dark: #324036;
  
  --border-color: rgba(198, 147, 83, 0.22);
  --border-light: rgba(42, 48, 43, 0.08);
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(42, 48, 43, 0.06);
  --shadow-md: 0 10px 30px rgba(42, 48, 43, 0.09);
  --shadow-lg: 0 20px 50px rgba(42, 48, 43, 0.14);
  
  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   TYPOGRAPHY & UTILITIES
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

.text-gold { color: var(--accent-gold); }
.text-olive { color: var(--accent-olive); }
.text-muted { color: var(--text-muted); }

.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 3.5rem;
  font-weight: 400;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6.5rem 0;
}

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

/* ============================================================
   BUTTONS & LINKS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--accent-gold);
  color: var(--bg-white);
  box-shadow: 0 6px 20px rgba(198, 147, 83, 0.35);
}

.btn-gold:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(198, 147, 83, 0.45);
  color: var(--bg-white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12);
  color: var(--bg-white);
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: var(--bg-white);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION HEADER
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all var(--transition-smooth);
  background: linear-gradient(to bottom, rgba(30, 36, 32, 0.7) 0%, rgba(30, 36, 32, 0) 100%);
}

.navbar.scrolled {
  padding: 0.9rem 0;
  background: rgba(253, 251, 247, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled .nav-logo { color: var(--text-dark); }
.navbar.scrolled .nav-link { color: var(--text-dark); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--accent-gold); }
.navbar.scrolled .lang-btn { color: var(--text-dark); border-color: var(--border-color); }
.navbar.scrolled .hamburger-line { background-color: var(--text-dark); }

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 700;
  color: var(--bg-white);
  text-decoration: none;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-logo span {
  font-weight: 400;
  font-style: italic;
  color: var(--accent-gold);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bg-white);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width var(--transition-fast);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Language Selector */
.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 3px;
  backdrop-filter: blur(6px);
  transition: all var(--transition-fast);
}

.navbar.scrolled .lang-switch {
  background: var(--bg-alt);
  border-color: var(--border-color);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--bg-white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.navbar.scrolled .lang-btn { color: var(--text-dark); }

.lang-btn.active {
  background: var(--accent-gold);
  color: var(--bg-white) !important;
  box-shadow: 0 2px 6px rgba(198, 147, 83, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.hamburger-line {
  width: 100%;
  height: 2.5px;
  background-color: var(--bg-white);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

/* ============================================================
   VIDEO HERO SECTION (Home Page)
   ============================================================ */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 36, 32, 0.65) 0%, rgba(20, 25, 22, 0.45) 50%, rgba(198, 147, 83, 0.25) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--bg-white);
  max-width: 920px;
  padding: 0 1.5rem;
  margin-top: 3rem;
}

.hero-kicker {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #FFE9B8;
}

.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--bg-white);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 300;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
  line-height: 1.7;
}

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

.scroll-down-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--bg-white);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.scroll-down-indicator:hover { opacity: 1; }
.scroll-down-text { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; }
`r`n/* ============================================================
   INNER PAGE HERO (Chi siamo, Struttura, Servizi, Contatti)
   ============================================================ */
.page-hero {
  position: relative;
  width: 100%;
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: var(--bg-white);
  text-align: center;
  padding: 0 1.5rem;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(30, 36, 32, 0.6) 0%, rgba(20, 25, 22, 0.75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-top: 3rem;
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ============================================================
   CARDS & FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-color);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: var(--bg-alt);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon {
  background: var(--accent-gold);
  color: var(--bg-white);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.96rem;
}

/* ============================================================
   ROOM / LAMIA CARDS
   ============================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
}

.room-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.room-img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.room-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(30, 36, 32, 0.85);
  color: var(--bg-white);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  backdrop-filter: blur(6px);
}

.room-body {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-title {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0 1.5rem;
  list-style: none;
}

.room-amenities li {
  font-size: 0.82rem;
  background: var(--bg-alt);
  color: var(--text-muted);
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  flex: 1;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.room-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-olive);
}

.room-price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ============================================================
   SPLIT STORY SECTION (Chi Siamo / Experience)
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4.5rem;
}

.split-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  background-color: var(--bg-alt);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #FBBF24;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-olive);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   CTA BANNER SECTION
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-olive) 0%, var(--accent-olive-dark) 100%);
  border-radius: 8px;
  padding: 5rem 3rem;
  color: var(--bg-white);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(198, 147, 83, 0.15);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--bg-white);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 1.2rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  max-width: 660px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   CONTACT & MAP SECTION
   ============================================================ */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  background: var(--bg-white);
  border-radius: 8px;
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: var(--bg-alt);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.contact-item p, .contact-item a {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.6;
}

.contact-item a:hover { color: var(--accent-gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #DCE0DD;
  background: var(--bg-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-gold);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(198, 147, 83, 0.12);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--bg-dark);
  color: var(--bg-white);
  padding: 5.5rem 0 2.5rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(2, minmax(180px, 1fr));
  gap: 4rem;
  margin-bottom: 4.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 340px;
  margin: 1.2rem 0 1.8rem;
  line-height: 1.7;
}

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

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  color: var(--bg-white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  .nav-menu { gap: 1.2rem; }
  .nav-right { gap: 0.75rem; }
  .nav-right .btn { padding: 0.75rem 1.2rem; }
  .split-section { grid-template-columns: 1fr; gap: 3rem; }
  .contact-container { grid-template-columns: 1fr; padding: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navbar { padding: 1rem 0; }
  .nav-logo span { display: none; }
  .nav-right > .btn { display: none; }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-main);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2.5rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right var(--transition-smooth);
    z-index: 1005;
  }
  
  .nav-menu.active { right: 0; }
  
  .nav-link {
    color: var(--text-dark) !important;
    font-size: 1.3rem;
  }
  
  .navbar.scrolled .hamburger-line { background-color: var(--text-dark); }
  
  .hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
    background-color: var(--text-dark);
  }
  .hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
  .hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
    background-color: var(--text-dark);
  }
  
  .hero-section { min-height: 620px; height: 100svh; }
  .page-hero { min-height: 340px; height: 46vh; }
  .section-padding { padding: 4.5rem 0; }
  .cta-banner { padding: 3.5rem 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-content { margin-top: 2rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .contact-container { padding: 1.5rem; }
  .split-img { height: 340px; }
  .cta-banner { padding: 2.5rem 1.25rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

:focus-visible {
  outline: 3px solid rgba(198, 147, 83, 0.75);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}