 :root {
     --burgundy: #6a1b29;
     --burgundy-dark: #4a111a;
     --beige: #e8dcca;
     --ivory: #fdfbf7;
     --charcoal: #2c2c2c;
     --gold-brown: #a68a64;
     --gold-brown-light: #c4ad8e;
     --muted-green: #6b7a64;

     --font-heading: 'Playfair Display', serif;
     --font-body: 'Lato', sans-serif;

     --transition: all 0.3s ease;
     --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }

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

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font-body);
     color: var(--charcoal);
     background-color: var(--ivory);
     line-height: 1.6;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: var(--font-heading);
     font-weight: 600;
     margin-bottom: 1rem;
     color: var(--charcoal);
 }

 p {
     margin-bottom: 1rem;
     font-size: 1.05rem;
 }

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

 ul {
     list-style: none;
 }

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

 .container {
     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
 }


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

 .mt-2 {
     margin-top: 1.5rem;
 }

 .mt-3 {
     margin-top: 2.5rem;
 }

 .mt-4 {
     margin-top: 4rem;
 }

 .mb-3 {
     margin-bottom: 2rem;
 }

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

 .text-light h2,
 .text-light p {
     color: var(--ivory);
 }

 .background-ivory {
     background-color: var(--ivory);
 }

 .background-beige {
     background-color: var(--beige);
 }

 .background-dark {
     background-color: var(--charcoal);
 }

 .background-burgundy {
     background-color: var(--burgundy);
 }

 .subtitle {
     display: block;
     color: var(--gold-brown);
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 2px;
     font-size: 0.85rem;
     margin-bottom: 0.5rem;
 }

 .icon-gold {
     color: var(--gold-brown);
     font-size: 1.5rem;
     margin-right: 1rem;
 }

 .w-100 {
     width: 100%;
 }

 .btn {
     display: inline-block;
     padding: 0.8rem 2rem;
     font-family: var(--font-body);
     font-size: 1rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     cursor: pointer;
     border: 2px solid transparent;
     border-radius: 0;
     transition: var(--transition);
 }

 .btn-primary {
     background-color: var(--burgundy);
     color: var(--ivory);
 }

 .btn-primary:hover {
     background-color: var(--burgundy-dark);
     color: var(--ivory);
 }

 .btn-secondary {
     background-color: var(--gold-brown);
     color: var(--ivory);
 }

 .btn-secondary:hover {
     background-color: var(--charcoal);
     color: var(--ivory);
 }

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

 .btn.outline:hover {
     background-color: var(--ivory);
     color: var(--charcoal);
 }

 .btn-sm {
     padding: 0.5rem 1rem;
     font-size: 0.85rem;
 }

 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     transition: var(--transition);
     padding: 1.5rem 0;
 }

 header.scrolled,
 header.solid-nav {
     background-color: var(--ivory);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     padding: 1rem 0;
 }

 header.scrolled .logo,
 header.scrolled .nav-links a,
 header.solid-nav .logo,
 header.solid-nav .nav-links a {
     color: var(--charcoal);
 }

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

 .logo {
     font-family: var(--font-heading);
     font-size: 1.8rem;
     font-weight: 700;
     color: var(--ivory);
 }

 .logo span {
     color: var(--gold-brown);
     font-weight: 400;
 }

 nav {
     display: flex;
     align-items: center;
 }

 .nav-links {
     display: flex;
     gap: 2rem;
     margin-right: 2rem;
 }

 .nav-links a {
     color: var(--ivory);
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-size: 0.9rem;
 }

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

 .mobile-toggle {
     display: none;
     background: none;
     border: none;
     font-size: 1.5rem;
     color: var(--ivory);
     cursor: pointer;
 }

 header.scrolled .mobile-toggle,
 header.solid-nav .mobile-toggle {
     color: var(--charcoal);
 }


 #hero,
 .page-hero {
     height: 100vh;
     min-height: 600px;
     background-image: url('../img/hero.jpeg');
     background-size: cover;
     background-position: center;
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
 }

 .page-hero {
     height: 60vh;
     background-image: url('../img/hero.jpeg');
 }

 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(rgba(44, 44, 44, 0.4), rgba(106, 27, 41, 0.6));
 }

 .hero-content,
 .page-hero .container {
     position: relative;
     z-index: 1;
     color: var(--ivory);
     max-width: 800px;
 }

 .hero-content h1,
 .page-hero h1 {
     font-size: 4.5rem;
     margin-bottom: 1rem;
     color: var(--ivory);
 }

 .hero-content p,
 .page-hero p {
     font-size: 1.2rem;
     margin-bottom: 2rem;
 }

 .hero-buttons {
     display: flex;
     gap: 1rem;
     justify-content: center;
 }

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

 .grid-3 {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
 }

 .grid-4 {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 2rem;
 }

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

 .card {
     background-color: #fff;
     box-shadow: var(--shadow);
     transition: var(--transition);
 }

 .card:hover {
     transform: translateY(-5px);
 }


 .room-card .card-img {
     height: 250px;
     overflow: hidden;
 }

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

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

 .card-content {
     padding: 2rem;
 }

 .price-book {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 1.5rem;
     border-top: 1px solid var(--beige);
     padding-top: 1rem;
 }

 .price {
     font-weight: 700;
     color: var(--burgundy);
     font-family: var(--font-heading);
 }


 .icon-box i {
     font-size: 2.5rem;
     color: var(--gold-brown);
     margin-bottom: 1rem;
 }

 .subtle-text {
     font-size: 0.9rem;
     color: #999;
     font-style: italic;
 }


 .image-stack img {
     border: 10px solid var(--ivory);
     box-shadow: var(--shadow);
 }

 .custom-list li {
     margin-bottom: 0.5rem;
     display: flex;
     align-items: center;
 }

 .custom-list i {
     color: var(--muted-green);
     margin-right: 10px;
 }


 .testimonial-card {
     background: #fff;
     padding: 2.5rem 2rem;
     text-align: center;
     box-shadow: var(--shadow);
 }

 .stars {
     color: var(--gold-brown);
     margin-bottom: 1rem;
 }

 .testimonial-card p {
     font-style: italic;
     color: #555;
 }

 .testimonial-card h5 {
     margin-top: 1.5rem;
     margin-bottom: 0;
     color: var(--burgundy);
 }


 .booking-bar {
     display: flex;
     background: #fff;
     padding: 1rem;
     gap: 1rem;
     align-items: flex-end;
     box-shadow: var(--shadow);
 }

 .form-group {
     flex: 1;
     text-align: left;
 }

 .form-group label {
     display: block;
     font-size: 0.85rem;
     color: var(--charcoal);
     font-weight: 700;
     text-transform: uppercase;
     margin-bottom: 0.3rem;
 }

 .form-group input,
 .form-group select,
 .form-group-full input,
 .form-group-full select,
 .form-group-full textarea {
     width: 100%;
     padding: 0.8rem;
     border: 1px solid #ccc;
     font-family: var(--font-body);
     font-size: 1rem;
     color: var(--charcoal);
     background: #f9f9f9;
 }


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

 .contact-form-wrapper {
     padding: 3rem;
 }

 .form-group-full {
     margin-bottom: 1.5rem;
     text-align: left;
 }

 .form-group-full label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 600;
 }

 .map-placeholder {
     height: 400px;
     background: var(--charcoal);
     color: var(--ivory);
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
 }

 .map-placeholder i {
     font-size: 3rem;
     margin-bottom: 1rem;
     color: var(--gold-brown);
 }

 .small-text {
     font-size: 0.8rem;
     opacity: 0.7;
 }


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

 .faq-item h4 {
     color: var(--burgundy);
     border-bottom: 1px solid var(--gold-brown-light);
     padding-bottom: 0.5rem;
 }

 footer {
     background-color: var(--charcoal);
     color: var(--ivory);
     padding: 5rem 0 2rem;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1.5fr;
     gap: 3rem;
     margin-bottom: 3rem;
 }

 footer h3,
 footer h4 {
     color: var(--ivory);
 }

 footer h3 span {
     color: var(--gold-brown);
 }

 footer p,
 footer li {
     color: #bbb;
     font-size: 0.9rem;
 }

 footer a {
     color: #bbb;
 }

 footer a:hover {
     color: var(--gold-brown);
 }

 .social-icons a {
     display: inline-block;
     margin-right: 1rem;
     font-size: 1.2rem;
     color: var(--ivory);
 }

 .social-icons a:hover {
     color: var(--gold-brown);
 }

 .footer-links ul li,
 .footer-contact ul li {
     margin-bottom: 0.8rem;
 }

 .footer-contact i {
     margin-right: 10px;
     color: var(--gold-brown);
 }

 .newsletter-form {
     display: flex;
     margin-top: 1rem;
 }

 .newsletter-form input {
     flex: 1;
     padding: 0.8rem;
     border: none;
     outline: none;
 }

 .newsletter-form button {
     background: var(--gold-brown);
     border: none;
     color: var(--ivory);
     padding: 0 1.5rem;
     cursor: pointer;
     transition: var(--transition);
 }

 .newsletter-form button:hover {
     background: var(--burgundy);
 }

 .footer-bottom {
     border-top: 1px solid #444;
     padding-top: 2rem;
     font-size: 0.85rem;
     color: #888;
 }

 .reveal {
     opacity: 0;
     transform: translateY(40px);
     transition: all 0.8s ease-out;
 }

 .reveal.active {
     opacity: 1;
     transform: translateY(0);
 }

 @media (max-width: 992px) {
     .grid-4 {
         grid-template-columns: 1fr 1fr;
     }

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

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

     .hero-content h1 {
         font-size: 3.5rem;
     }

     .booking-bar {
         flex-wrap: wrap;
     }

     .booking-bar .form-group {
         flex: 1 1 45%;
     }

     .booking-bar button {
         flex: 1 1 100%;
     }
 }

 @media (max-width: 768px) {

     .grid-2,
     .grid-3,
     .grid-4,
     .faq-grid {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

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

     .nav-links {
         position: fixed;
         top: 70px;
         left: -100%;
         width: 100%;
         height: calc(100vh - 70px);
         background-color: var(--ivory);
         flex-direction: column;
         justify-content: center;
         align-items: center;
         transition: var(--transition);
         margin: 0;
     }

     .nav-links.active {
         left: 0;
     }

     .nav-links a {
         color: var(--charcoal);
         font-size: 1.2rem;
     }

     .mobile-toggle {
         display: block;
     }

     .nav-btn {
         display: none;
     }

     header {
         padding: 1rem 0;
         background: var(--ivory);
     }

     .logo,
     .mobile-toggle {
         color: var(--charcoal);
     }

     .hero-content h1,
     .page-hero h1 {
         font-size: 2.8rem;
     }

     .reverse-grid {
         display: flex;
         flex-direction: column-reverse;
     }

     .contact-form-wrapper {
         padding: 2rem 1.5rem;
     }
 }

 .legal-content {
     padding: 4rem;
 }

 .legal-content h2 {
     color: var(--burgundy);
     margin-bottom: 0.5rem;
 }

 .legal-content h3 {
     color: var(--charcoal);
     margin-top: 2.5rem;
     margin-bottom: 1rem;
     font-size: 1.4rem;
 }

 .legal-content p,
 .legal-content li {
     margin-bottom: 1.2rem;
     color: #444;
     line-height: 1.8;
 }

 .legal-content ul {
     list-style-type: disc;
     margin-left: 2rem;
     margin-bottom: 1.5rem;
 }

 .last-updated {
     color: var(--gold-brown);
     font-style: italic;
     margin-bottom: 3rem;
     display: block;
 }

 @media (max-width: 768px) {
     .legal-content {
         padding: 2rem 1.5rem;
     }
 }