/* ═══════════════════════════════════════════════════════════
   KRITARTH HOSPITALITY — Main Website Styles
   Color Palette:
     Warm White  : #FFFDF7
     Soft Beige  : #F5EDE0
     Heritage Gold: #C8A96E
     Dark Gold   : #A67C52
     Deep Brown  : #3B2F2F
     Charcoal    : #2C2320
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  --white:        #FFFDF7;
  --beige:        #F5EDE0;
  --beige-dark:   #E8DCC8;
  --gold:         #C8A96E;
  --gold-dark:    #A67C52;
  --gold-light:   #DFC99A;
  --brown:        #3B2F2F;
  --brown-light:  #5A4A42;
  --charcoal:     #2C2320;
  --error:        #C0392B;
  --success:      #27AE60;

  --ff-heading:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:      'Poppins', 'Segoe UI', Helvetica, Arial, sans-serif;

  --nav-height:   80px;
  --section-pad:  100px;
  --container-max: 1200px;

  --shadow-sm:    0 2px 8px rgba(59,47,47,.08);
  --shadow-md:    0 8px 30px rgba(59,47,47,.12);
  --shadow-lg:    0 16px 50px rgba(59,47,47,.18);

  --radius:       8px;
  --radius-lg:    16px;
  --transition:   .35s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--brown);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold); }

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
}

::selection {
  background: var(--gold);
  color: var(--white);
}

.hidden { display: none !important; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(200,169,110,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--charcoal));
  border-color: var(--gold-dark);
  color: var(--white);
  box-shadow: 0 6px 25px rgba(200,169,110,.45);
  transform: translateY(-2px);
}

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

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(245,237,224,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 45px;
  width: auto;
  transition: opacity var(--transition);
}
.nav-logo:hover img { opacity: .8; }

.nav-links {
  display: flex;
  gap: 8px;
}
.nav-links a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  transform: translateX(-50%);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}
.nav-links a:hover {
  color: var(--gold-light);
}

.navbar.scrolled .nav-links a {
  color: var(--brown);
}
.navbar.scrolled .nav-links a:hover {
  color: var(--gold-dark);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger-line {
  background: var(--brown);
}
.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero.jpg') center/cover no-repeat;
  will-change: transform;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44,35,32,.5) 0%,
    rgba(44,35,32,.35) 40%,
    rgba(44,35,32,.6) 100%
  );
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.hero-subtitle {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  text-shadow: 0 4px 40px rgba(0,0,0,.3);
  margin-bottom: 16px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.hero-divider::before,
.hero-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: var(--gold);
}
.divider-ornament {
  color: var(--gold);
  font-size: 14px;
}

.hero-tagline {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,253,247,.85);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-cta {
  font-size: 14px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-arrow {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50%      { transform: rotate(45deg) translateY(10px); opacity: .4; }
}

/* Hero entrance animations */
.animate-fade-up {
  animation: fadeUp .8s ease forwards;
  opacity: 0;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   HERITAGE DIVIDER
   ═══════════════════════════════════════════ */
.heritage-divider {
  position: relative;
  height: 40px;
  background: var(--beige);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.divider-pattern {
  width: 100%;
  height: 100%;
  position: relative;
}
.divider-pattern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  opacity: .3;
  transform: translateY(-50%);
}
.divider-pattern::after {
  content:
    '◆ ◇ ◆ ◇ ◆ ◇ ◆ ◇ ◆ ◇ ◆ ◇ ◆ ◇ ◆ ◇ ◆ ◇ ◆ ◇ ◆ ◇ ◆ ◇ ◆ ◇ ◆ ◇ ◆ ◇ ◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  opacity: .5;
}

/* ═══════════════════════════════════════════
   SECTIONS (common)
   ═══════════════════════════════════════════ */
.section {
  padding: var(--section-pad) 0;
}
.section:nth-child(odd) {
  background: var(--white);
}
.section:nth-child(even) {
  background: var(--beige);
}
/* Override: specific sections */
.about       { background: var(--white); }
.properties  { background: var(--beige); }
.reservation { background: var(--white); }
.contact     { background: var(--beige); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-subtitle {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
}
.section-desc {
  font-size: 15px;
  color: var(--brown-light);
  margin-top: 12px;
}

/* Title ornament — decorative motif */
.title-ornament {
  width: 80px;
  height: 20px;
  margin: 16px auto 0;
  position: relative;
}
.title-ornament::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 20%,
    var(--gold) 80%,
    transparent
  );
}
.title-ornament::after {
  content: '✦';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--gold);
  background: inherit;
  padding: 0 8px;
  /* Inherit parent background to cover the line */
}
/* Fix ornament background per section */
.about .title-ornament::after      { background: var(--white); }
.properties .title-ornament::after  { background: var(--beige); }
.reservation .title-ornament::after { background: var(--white); }
.contact .title-ornament::after     { background: var(--beige); }

/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.image-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .6s ease;
}
.image-frame:hover img {
  transform: scale(1.05);
}
.image-frame-border {
  position: absolute;
  inset: 12px;
  border: 2px solid var(--gold);
  border-radius: calc(var(--radius-lg) - 4px);
  opacity: .5;
  pointer-events: none;
  transition: opacity var(--transition);
}
.image-frame:hover .image-frame-border {
  opacity: .9;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.about-text p {
  margin-bottom: 16px;
  color: var(--brown-light);
  font-size: 15px;
}
.about-text .btn {
  margin-top: 12px;
}

/* ═══════════════════════════════════════════
   PROPERTIES SECTION
   ═══════════════════════════════════════════ */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.property-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(200,169,110,.15);
  text-decoration: none;
  color: inherit;
}
.property-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  color: inherit;
}

.property-image-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.property-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.property-card:hover .property-image-wrapper img {
  transform: scale(1.08);
}
.property-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,35,32,.45), transparent 60%);
}

.property-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--success);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(39,174,96,.3);
}

.property-body {
  padding: 28px 28px 24px;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 8px;
  letter-spacing: .5px;
}

.property-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.property-desc {
  font-size: 14px;
  color: var(--brown-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.property-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: all var(--transition);
}
.property-card:hover .property-cta {
  color: var(--gold);
  gap: 10px;
}

/* ═══════════════════════════════════════════
   RESERVATION SECTION
   ═══════════════════════════════════════════ */
.reservation-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,169,110,.2);
  position: relative;
}

/* Decorative corner accents */
.reservation-wrapper::before,
.reservation-wrapper::after {
  content: '❖';
  position: absolute;
  font-size: 20px;
  color: var(--gold);
  opacity: .4;
}
.reservation-wrapper::before { top: 16px; left: 20px; }
.reservation-wrapper::after  { bottom: 16px; right: 20px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 6px;
}
.required {
  color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--brown);
  background: var(--white);
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,.2);
}
.form-group input.invalid,
.form-group select.invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A67C52' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.error-msg {
  display: block;
  font-size: 12px;
  color: var(--error);
  margin-top: 4px;
  min-height: 18px;
}

.btn-submit {
  display: flex;
  margin: 0 auto;
  font-size: 15px;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show {
  display: block;
  animation: fadeUp .5s ease;
}
.form-success .success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--success);
}
.form-success .success-icon svg {
  width: 100%;
  height: 100%;
}
.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.form-success p {
  color: var(--brown-light);
}

/* ═══════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}
.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.contact-icon svg {
  width: 22px;
  height: 22px;
}
.contact-item h4 {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 14px;
  color: var(--brown-light);
  line-height: 1.6;
}
.contact-item a {
  color: var(--gold-dark);
}
.contact-item a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--beige-dark);
  border-radius: 50%;
  color: var(--gold-dark);
  transition: all var(--transition);
}
.social-link svg {
  width: 20px;
  height: 20px;
}
.social-link:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(200,169,110,.3);
}

/* Map */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--gold);
}
.contact-map iframe {
  display: block;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(255,253,247,.7);
  padding: 60px 0 0;
  position: relative;
}
.footer-top-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--charcoal),
    var(--gold) 20%,
    var(--gold-light) 50%,
    var(--gold) 80%,
    var(--charcoal)
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(200,169,110,.15);
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.4);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links h4,
.footer-legal h4 {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links ul li,
.footer-legal ul li {
  margin-bottom: 10px;
}
.footer-links a,
.footer-legal a {
  color: rgba(255,253,247,.65);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-legal a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
}

/* ═══════════════════════════════════════════
   MODALS
   ═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(44,35,32,.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 20px;
  opacity: 0;
  transition: opacity .3s ease;
}
.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
  transform: translateY(20px);
  transition: transform .3s ease;
}
.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--brown-light);
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}
.modal-close:hover { color: var(--error); }

.modal h2 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--beige);
  color: var(--charcoal);
}
.modal-body h4 {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  margin: 20px 0 8px;
  color: var(--charcoal);
}
.modal-body p {
  font-size: 14px;
  color: var(--brown-light);
  line-height: 1.7;
}
.modal-body a {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.reveal-left {
  transform: translateX(-40px);
}
.reveal.reveal-right {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Staggered card animations */
.property-card.reveal:nth-child(1) { transition-delay: .05s; }
.property-card.reveal:nth-child(2) { transition-delay: .15s; }
.property-card.reveal:nth-child(3) { transition-delay: .25s; }

/* ═══════════════════════════════════════════
   ACCESSIBILITY — Reduced Motion
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-bg {
    will-change: auto;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }
  .properties-grid {
    max-width: 100%;
  }
  .about-grid {
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
    --nav-height: 70px;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    padding: 100px 30px 40px;
    gap: 0;
    transition: right var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,.3);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    color: rgba(255,253,247,.8) !important;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(200,169,110,.1);
  }
  .nav-links a:hover {
    color: var(--gold-light) !important;
  }
  .nav-links a::after { display: none; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .image-frame img {
    height: 280px;
  }

  /* Properties */
  .properties-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Reservation */
  .reservation-wrapper {
    padding: 30px 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-map iframe {
    height: 280px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Modal */
  .modal {
    padding: 28px 24px;
    max-height: 85vh;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Small Mobile (≤ 480px)
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 13px;
    letter-spacing: 4px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .about-text h3 {
    font-size: 1.4rem;
  }
  .btn {
    padding: 12px 28px;
    font-size: 13px;
  }
  .container {
    padding: 0 16px;
  }
}

/* ═══════════════════════════════════════════
   FOCUS VISIBLE (keyboard accessibility)
   ═══════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════
   SCROLLBAR STYLING (Webkit)
   ═══════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--beige);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}
