/*--------------------------------------------------------------
  CSS Variables
--------------------------------------------------------------*/
:root {
  --navy: #3a506a;
  --navy-deep: #0d1926;
  --gold: #f8ba2d;
  --gold-dark: #e0a820;
  --cream: #faf9f6;
  --warm-white: #ffffff;
  --text: #1a2a3a;
  --text-light: #4a5568;
  --border: #e8e6e1;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
}

/*--------------------------------------------------------------
  Reset & Base
--------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  background-color: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(248, 186, 45, 0.12), transparent 35%),
    linear-gradient(180deg, #f8f6f0 0%, #faf9f6 40%, #f5f2ea 100%);
  background-repeat: no-repeat;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy-deep);
  margin: 0 0 1rem;
}

p {
  margin: 0 0 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: var(--navy);
  transition: color 0.2s ease;
}

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

/*--- Focus-visible for keyboard navigation ---*/
a:focus-visible,
.btn:focus-visible,
.contact-card:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.lightbox-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

/*--------------------------------------------------------------
  Accessibility
--------------------------------------------------------------*/
.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 8px 16px;
  z-index: 200;
  font-weight: 600;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*--------------------------------------------------------------
  Navigation
--------------------------------------------------------------*/
.nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.nav-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--warm-white);
  letter-spacing: -0.01em;
}

.nav-brand:hover {
  color: var(--gold);
}

.menu-toggle {
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  color: var(--warm-white);
  cursor: pointer;
  display: none;
  padding: 8px 10px;
}

.hamburger-icon {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--warm-white);
  position: relative;
  transition: background-color 0.2s ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: var(--warm-white);
  left: 0;
  transition: transform 0.3s ease;
}

.hamburger-icon::before { top: -7px; }
.hamburger-icon::after { top: 7px; }

.menu-toggle[aria-expanded="true"] .hamburger-icon {
  background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

.menu {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.menu a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: color 0.2s, background-color 0.2s;
}

.menu a:hover {
  color: var(--warm-white);
  background-color: rgba(255,255,255,0.12);
}

/*--------------------------------------------------------------
  Header / Hero
--------------------------------------------------------------*/
.header {
  position: relative;
  background-color: var(--navy-deep);
  color: var(--warm-white);
  min-height: 85vh;
  display: flex;
  flex-direction: column;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.header::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 25, 38, 0.55) 0%,
    rgba(13, 25, 38, 0.4) 50%,
    rgba(13, 25, 38, 0.7) 100%
  );
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.header-tagline {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.availability-badge {
  margin: 0 0 1rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--warm-white);
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(13, 25, 38, 0.35);
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
}

.header h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.header-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/*--------------------------------------------------------------
  Buttons
--------------------------------------------------------------*/
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: var(--gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  background-color: var(--gold-dark);
  color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-hero {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-hero-alt {
  background-color: var(--warm-white);
  color: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-sm);
}

.btn-hero-alt:hover {
  background-color: #f4f4f2;
  color: var(--navy-deep);
  border-color: var(--warm-white);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

/*--------------------------------------------------------------
  Layout
--------------------------------------------------------------*/
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.4rem 1.75rem;
}

.section {
  padding: 1rem 0;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 660px;
  margin: 0 auto 2.5rem;
  text-align: center;
  line-height: 1.8;
}

.section-note {
  font-size: 0.9rem;
  color: var(--text);
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

/*--------------------------------------------------------------
  Shared Icons
--------------------------------------------------------------*/
.icon {
  display: none !important;
}

/*--------------------------------------------------------------
  About Section
--------------------------------------------------------------*/
.about-us {
  padding: 3rem 0 0.75rem;
}

.about-us .container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
}

.about-text .section-title {
  text-align: left;
}

.about-text p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  border-left: 3px solid var(--gold);
}

.highlight-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.highlight-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

/*--------------------------------------------------------------
  Amenities
--------------------------------------------------------------*/
#amenities .container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#amenities .section-title {
  text-align: center;
}

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

.amenity {
  padding: 1.35rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.amenity:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.amenity .icon {
  display: block;
  margin: 0 auto 0.65rem;
  background: var(--navy);
  opacity: 0.6;
}

.amenity h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.amenity p {
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.6;
}

/*--------------------------------------------------------------
  Floor Plan
--------------------------------------------------------------*/
#floorplan .container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#floorplan .section-title {
  text-align: center;
}

.floorplan-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

.floorplan-image-wrap {
  position: sticky;
  top: 2rem;
}

.floorplan-image-wrap a {
  display: block;
  cursor: zoom-in;
}

.floorplan-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--warm-white);
  padding: 1rem;
}

.floorplan-callouts {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.floorplan-callout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.floorplan-callout:hover {
  border-color: var(--gold);
}

.floorplan-callout .icon {
  margin-top: 0.42rem;
  background: var(--navy);
  opacity: 0.6;
}

.floorplan-callout h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.floorplan-callout p {
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .floorplan-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .floorplan-image-wrap {
    position: static;
  }
}

/*--------------------------------------------------------------
  Gallery
--------------------------------------------------------------*/
#gallery .container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#gallery .section-title {
  text-align: center;
}

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

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  aspect-ratio: 4 / 3;
}

/* Fallback for browsers without aspect-ratio */
@supports not (aspect-ratio: 4 / 3) {
  .gallery-item {
    padding-bottom: 75%;
  }
  .gallery-item .gallery-img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

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

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

/*--------------------------------------------------------------
  Lightbox
--------------------------------------------------------------*/
#lightbox {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  inset: 0;
  background-color: rgba(13, 25, 38, 0.92);
  z-index: 100;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
}

#lightbox.active {
  display: flex;
}

#lightbox-image {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  z-index: 101;
  line-height: 1;
  padding: 0.5rem;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--warm-white);
}

/*--------------------------------------------------------------
  Commitment / Why Us
--------------------------------------------------------------*/
#commitment .container {
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--warm-white);
}

#commitment .section-title {
  text-align: center;
  color: var(--warm-white);
}

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

.commitment-card {
  text-align: center;
  padding: 1.15rem;
}

.commitment-card .icon {
  display: block;
  margin: 0 auto 0.75rem;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(248, 186, 45, 0.22);
}

.commitment-card h3 {
  color: var(--warm-white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.commitment-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

/*--------------------------------------------------------------
  Contact
--------------------------------------------------------------*/
#contact .container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
}

.quick-form-wrap {
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 0 auto 1.5rem;
  max-width: 700px;
  background: #fff;
}

.quick-form-wrap h3 {
  margin-bottom: 0.35rem;
}

.quick-form-note {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.quick-form {
  display: grid;
  gap: 0.55rem;
}

.quick-form label {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.quick-form input,
.quick-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.58rem 0.7rem;
  font: inherit;
  color: var(--text);
  background: var(--warm-white);
  margin-bottom: 0.6rem;
}

.quick-form button {
  justify-self: start;
}

.map-wrap {
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 350px;
}

.map-link {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  padding: 0.6rem;
  background: var(--cream);
  color: var(--navy);
  font-weight: 500;
  border-top: 1px solid var(--border);
}

.map-link:hover {
  color: var(--gold-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.3rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--text);
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  color: var(--text);
}

.contact-card .icon {
  background: var(--navy);
  opacity: 0.65;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 500;
}

.contact-value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-cta {
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}

.contact-cta p {
  color: var(--text);
  margin-bottom: 1.25rem;
}

.contact-terms {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-top: -0.4rem;
}

/*--------------------------------------------------------------
  FAQ
--------------------------------------------------------------*/
#faq .container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#faq .section-title {
  text-align: center;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  background: var(--warm-white);
}

.faq-item h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.faq-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/*--------------------------------------------------------------
  Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 2rem 1.75rem;
  margin-top: 1rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 0.5rem;
}

.footer-address {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.7;
}

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

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

  .commitment-card {
    padding: 1rem;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
  Responsive - Mobile
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.25rem;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1.25rem;
    background: var(--navy-deep);
    border-radius: var(--radius);
    padding: 0.75rem;
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    gap: 0;
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    padding: 0.75rem 1rem;
    border-radius: 6px;
  }

  .menu a:hover {
    background-color: rgba(255,255,255,0.08);
  }

  .header {
    min-height: 70vh;
  }

  .hero-media img {
    object-position: center center;
  }

  .header h1 {
    font-size: 2rem;
  }

  .header-sub {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
    max-width: 340px;
    gap: 0.8rem;
    margin-top: 0.4rem;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .container {
    padding: 1.7rem 1.1rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-text .section-title {
    text-align: center;
  }

  .about-highlights {
    flex-direction: row;
    gap: 0.6rem;
  }

  .highlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 0.75rem 0.45rem;
    border-left: none;
    border-top: 3px solid var(--gold);
    gap: 0.25rem;
  }

  .highlight-number {
    font-size: 1.5rem;
  }

  .highlight-label {
    font-size: 0.8rem;
  }

  .amenities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .amenity {
    padding: 1rem 0.85rem;
  }

  .amenity .icon {
    width: 0.46rem;
    height: 0.46rem;
  }

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

  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .commitment-card {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 0.7rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .commitment-card:last-child {
    border-bottom: none;
  }

  .commitment-card .icon {
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: 0.25rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .quick-form button {
    width: 100%;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
  Reduced Motion
--------------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .gallery-item:hover .gallery-img {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .header {
    min-height: 65vh;
  }

  .header h1 {
    font-size: 1.75rem;
  }

  .container {
    padding: 1.3rem 0.9rem;
    margin-left: 0.6rem;
    margin-right: 0.6rem;
  }

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

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

  .about-highlights {
    flex-direction: column;
  }

  .highlight {
    flex-direction: row;
    text-align: left;
    border-top: none;
    border-left: 3px solid var(--gold);
  }
}
