/* ================================================================
   GHUMAKKADS TRAVEL HOSTEL — Main Stylesheet
   Palette: Deep Teal #1d5c52 | Orange #c8572a | Cream #f0dba8
   ================================================================ */

/* Google Fonts loaded asynchronously via <link> in HTML for performance */

/* ── Variables ── */
:root {
  --teal:        #1d5c52;
  --teal-dark:   #0f2e29;
  --teal-mid:    #245e54;
  --teal-light:  #2d7a6d;
  --orange:      #c8572a;
  --orange-lt:   #d9683b;
  --cream:       #f0dba8;
  --cream-lt:    #fdf5e4;
  --kraft:       #e2cb8e;
  --text:        #1e1408;
  --text-muted:  #6b5740;
  --white:       #fffef8;
  --shadow:      0 4px 24px rgba(15,46,41,0.18);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', sans-serif; background: var(--cream-lt); color: var(--text); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Grain texture overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23g)'/%3E%3C/svg%3E");
}

/* ── Typography ── */
h1, h2, h3, h4, .display { font-family: 'Bebas Neue', cursive; letter-spacing: 0.04em; line-height: 1; }
.serif { font-family: 'Playfair Display', serif; }

/* ── Utility ── */
.container { max-width: 1080px; margin: 0 auto; }

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  display: block;
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: var(--teal-dark);
  margin-bottom: 0.6rem;
}
.section-title.on-dark { color: var(--cream); }

.ornament {
  display: inline-block;
  color: var(--orange);
  margin: 0 0.5rem;
  font-size: 0.7em;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.nav.scrolled {
  background: var(--teal-dark);
  padding: 0.6rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.nav-logo { height: 48px; width: auto; }

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--orange);
  transition: right 0.25s ease;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { right: 0; }

.nav-links .btn-nav {
  background: var(--orange);
  color: var(--white);
  padding: 0.45rem 1.2rem;
  border-radius: 1px;
  transition: background 0.2s, transform 0.2s;
}
.nav-links .btn-nav:hover { background: var(--orange-lt); transform: translateY(-1px); }
.nav-links .btn-nav::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 201;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  background: var(--teal-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,92,82,0.5) 0%, transparent 65%);
  pointer-events: none;
}

.hero-logo {
  width: min(320px, 72vw);
  margin: 0 auto 2rem;
  position: relative;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.55));
  animation: riseIn 0.9s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  color: rgba(240,219,168,0.8);
  letter-spacing: 0.03em;
  max-width: 480px;
  animation: riseIn 0.9s 0.2s cubic-bezier(0.22,1,0.36,1) both;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: riseIn 0.9s 0.4s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(240,219,168,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: riseIn 1s 0.9s ease both;
}

.hero-scroll-hint svg {
  animation: bounce 2s infinite;
}

/* Pine tree wave divider */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.wave-divider svg { width: 100%; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s ease;
  border-radius: 1px;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,87,42,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(240,219,168,0.5);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--teal-dark);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ================================================================
   ABOUT
   ================================================================ */
.about {
  padding: 6rem 2rem;
  background: var(--white);
}

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

.about-text .section-title { color: var(--teal-dark); }

.about-lead {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--teal);
  font-style: italic;
  margin: 1rem 0;
  line-height: 1.7;
}

.about-body {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}
.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.8rem;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Room specs card */
.specs-card {
  background: var(--teal);
  padding: 2.5rem;
  position: relative;
  color: var(--cream);
}

.specs-card::before {
  content: '';
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(240,219,168,0.25);
  pointer-events: none;
}

.specs-card-title {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.spec-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(240,219,168,0.12);
  font-size: 0.95rem;
}
.spec-row:last-child { border-bottom: none; }

.spec-icon {
  width: 38px;
  height: 38px;
  background: rgba(200,87,42,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.spec-text strong { display: block; font-weight: 700; }
.spec-text span { font-size: 0.82rem; opacity: 0.65; }

/* ================================================================
   AMENITIES
   ================================================================ */
.amenities {
  padding: 6rem 2rem;
  background: var(--cream-lt);
}

.amenities-header {
  max-width: 520px;
  margin-bottom: 3.5rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.25rem;
}

.amenity {
  background: var(--white);
  border: 1px solid var(--kraft);
  padding: 1.6rem 1rem;
  text-align: center;
  position: relative;
  cursor: default;
  transition: transform 0.2s ease;
}

.amenity::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 100%;
  height: 100%;
  background: var(--teal);
  z-index: -1;
  transition: background 0.2s;
}

.amenity:hover { transform: translate(-3px,-3px); }
.amenity:hover::after { background: var(--orange); }

.amenity-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.65rem;
}

.amenity-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
  line-height: 1.2;
}

/* ================================================================
   PRICING
   ================================================================ */
.pricing {
  padding: 6rem 2rem;
  background: var(--teal);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(200,87,42,0.07);
  pointer-events: none;
}

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

.pricing-copy .section-title { color: var(--cream); }

.pricing-desc {
  color: rgba(240,219,168,0.72);
  line-height: 1.85;
  margin-top: 1rem;
  font-size: 0.97rem;
  max-width: 400px;
}

.pricing-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
}

/* Double-line border flourish */
.pricing-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--cream) 50%, var(--orange) 100%);
  z-index: -1;
}
.pricing-card::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(29,92,82,0.2);
  pointer-events: none;
}

.price-main-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.15rem;
}

.price-main {
  font-family: 'Bebas Neue', cursive;
  font-size: 4rem;
  line-height: 1;
  color: var(--teal-dark);
  letter-spacing: 0.02em;
}

.price-main .currency {
  font-size: 2rem;
  color: var(--orange);
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}

.price-per {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-top: 0.2rem;
  display: block;
}

.price-divider {
  height: 1px;
  background: var(--kraft);
  margin: 1.5rem 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.45rem 0;
  font-size: 0.95rem;
}
.price-row .label { color: var(--text-muted); }
.price-row .value { font-weight: 700; color: var(--teal); font-family: 'Bebas Neue', cursive; font-size: 1.1rem; letter-spacing: 0.05em; }

.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1.1rem;
  font-family: 'Bebas Neue', cursive;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  border-radius: 100px;
  margin-top: 1.5rem;
}
.avail-badge.available {
  background: rgba(29,92,82,0.1);
  color: var(--teal);
  border: 1px solid rgba(29,92,82,0.25);
}
.avail-badge.full {
  background: rgba(200,87,42,0.1);
  color: var(--orange);
  border: 1px solid rgba(200,87,42,0.3);
}
.avail-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

.pricing-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
  font-family: 'Playfair Display', serif;
}

/* ================================================================
   CTA STRIP
   ================================================================ */
.cta-strip {
  padding: 5rem 2rem;
  background: var(--orange);
  text-align: center;
}

.cta-strip h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cta-strip p {
  color: rgba(255,254,248,0.8);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  font-size: 1.1rem;
  padding: 0.9rem 2.5rem;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--teal-dark);
  color: var(--cream);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(240,219,168,0.12);
}

.footer-logo { width: 90px; margin-bottom: 1rem; opacity: 0.9; }

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(240,219,168,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 240px;
}

.footer-col-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 1.1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  color: rgba(240,219,168,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(240,219,168,0.65);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 0.6rem;
}
.footer-contact-item a { color: inherit; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  max-width: 1080px;
  margin: 1.8rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(240,219,168,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(240,219,168,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--cream); }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.page-hero {
  background: var(--teal-dark);
  padding: 9rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(29,92,82,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 { font-size: clamp(3rem, 7vw, 5rem); color: var(--cream); }
.page-hero p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(240,219,168,0.65);
  font-size: 1rem;
  margin-top: 0.5rem;
}

.contact-section { padding: 5rem 2rem; background: var(--white); }

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

/* Contact info cards */
.info-cards { display: flex; flex-direction: column; gap: 1.25rem; }

.info-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--cream-lt);
  border-left: 3px solid var(--orange);
  transition: transform 0.2s;
}
.info-card:hover { transform: translateX(4px); }

.info-card-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-card h4 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.3rem;
}

.info-card p, .info-card a {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.info-card a:hover { color: var(--orange); }

/* Contact form */
.contact-form-wrap {
  background: var(--cream-lt);
  padding: 2.5rem;
  border-top: 3px solid var(--teal);
}

.contact-form-wrap h3 {
  font-size: 1.9rem;
  color: var(--teal-dark);
  margin-bottom: 0.3rem;
}

.contact-form-wrap .sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
}

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

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--kraft);
  background: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,92,82,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ================================================================
   ADMIN PANEL
   ================================================================ */
.admin-body {
  background: #0d1e1b;
  min-height: 100vh;
  font-family: 'Lato', sans-serif;
  color: var(--cream);
}

.admin-login-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.admin-login-card {
  background: #172e2a;
  border: 1px solid rgba(200,87,42,0.25);
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 380px;
  text-align: center;
}

.admin-login-card img { width: 100px; margin: 0 auto 1.5rem; }

.admin-login-card h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.admin-login-card .sub-text {
  font-size: 0.8rem;
  color: rgba(232,213,160,0.45);
  margin-bottom: 2rem;
}

.admin-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #0d1e1b;
  border: 1px solid rgba(200,87,42,0.25);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  outline: none;
  transition: border-color 0.2s;
}
.admin-input:focus { border-color: var(--orange); }

.admin-login-error {
  color: #e07070;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
  display: none;
}

.btn-admin-login {
  width: 100%;
  padding: 0.9rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-admin-login:hover { background: var(--orange-lt); }

/* Admin panel UI */
.admin-panel {
  display: none;
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200,87,42,0.2);
}

.admin-topbar-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  letter-spacing: 0.08em;
}
.admin-topbar-title span { color: var(--orange); }

.btn-logout {
  background: none;
  border: 1px solid rgba(200,87,42,0.35);
  color: rgba(200,87,42,0.8);
  padding: 0.5rem 1.25rem;
  font-family: 'Bebas Neue', cursive;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-logout:hover { background: rgba(200,87,42,0.1); color: var(--orange); }

.admin-block {
  background: #172e2a;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--orange);
}

.admin-block h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.admin-field { margin-bottom: 1.2rem; }

.admin-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,213,160,0.5);
  margin-bottom: 0.4rem;
}

.admin-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-save {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 2rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.btn-save:hover { background: var(--orange-lt); }

.save-ok {
  display: inline-block;
  margin-left: 1rem;
  color: #6fcf97;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s;
  vertical-align: middle;
}
.save-ok.show { opacity: 1; }

/* Toggle switch */
.toggle-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.toggle-switch { position: relative; width: 50px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-track {
  position: absolute;
  inset: 0;
  background: rgba(240,219,168,0.15);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle-track::before {
  content: '';
  position: absolute;
  height: 18px; width: 18px;
  bottom: 4px; left: 4px;
  background: rgba(240,219,168,0.7);
  border-radius: 50%;
  transition: transform 0.3s;
}
.toggle-switch input:checked + .toggle-track { background: var(--orange); }
.toggle-switch input:checked + .toggle-track::before { transform: translateX(24px); }

.toggle-label { font-size: 0.88rem; color: rgba(240,219,168,0.7); }

.admin-note {
  font-size: 0.78rem;
  color: rgba(240,219,168,0.35);
  font-style: italic;
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* ================================================================
   PHOTO GALLERY
   ================================================================ */
.gallery {
  padding: 5rem 2rem;
  background: var(--teal-dark);
}

.gallery-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gallery-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px 240px;
  gap: 10px;
}

/* Large feature photo spans 2 columns */
.gallery-item { overflow: hidden; position: relative; }
.gallery-item--wide { grid-column: span 2; }

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

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

/* Hover overlay */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,46,41,0.35);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px 180px;
  }
  .gallery-item--wide { grid-column: span 2; }
}

/* ================================================================
   HOUSE RULES
   ================================================================ */
.rules {
  padding: 5rem 2rem;
  background: var(--cream-lt);
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.rule-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}
.rule-item:hover { border-left-color: var(--orange); }

.rule-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 1px; }

.rule-text strong {
  display: block;
  font-family: 'Bebas Neue', cursive;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
  margin-bottom: 0.15rem;
}
.rule-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

/* ================================================================
   REVEAL ANIMATION
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   KEYFRAMES
   ================================================================ */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--teal-dark);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 199;
  }
  .nav-links.open a { font-size: 2rem; }
  .hamburger { display: flex; }

  .about-grid,
  .pricing-grid,
  .footer-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

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

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

  .about-specs { order: -1; }
}

/* ================================================================
   PREMIUM VISUAL ENHANCEMENTS
   ================================================================ */

/* ── Hero: guest photo as atmospheric backdrop ── */
.hero-bg-photo {
  position: absolute;
  inset: -8%;
  background: url('../6113773486892322464.jpg') center 35% / cover no-repeat;
  filter: blur(10px) brightness(0.14) saturate(0.25);
  z-index: 0;
  will-change: transform;
}

/* Layer everything correctly above the photo */
.hero::before { z-index: 1; }

/* Cinematic vignette on top of the photo */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 50% 42%, rgba(29,92,82,0.15) 0%, rgba(15,46,41,0.72) 100%),
    linear-gradient(to bottom, rgba(15,46,41,0.25) 0%, transparent 45%, rgba(15,46,41,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-logo,
.hero-tagline,
.hero-cta,
.hero-scroll-hint {
  position: relative;
  z-index: 2;
}

.wave-divider { z-index: 3; }

/* Enhanced logo: warm ambient glow */
.hero-logo {
  filter:
    drop-shadow(0 0 55px rgba(200,87,42,0.22))
    drop-shadow(0 18px 52px rgba(0,0,0,0.72));
}

/* Three-star ornament below tagline */
.hero-tagline::after {
  content: '✦  ✦  ✦';
  display: block;
  font-style: normal;
  font-family: 'Lato', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.55em;
  color: rgba(200,87,42,0.42);
  margin-top: 1.6rem;
}

/* ── Buttons: glow upgrade ── */
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(200,87,42,0.48), 0 0 70px rgba(200,87,42,0.12);
}

.btn-ghost:hover {
  box-shadow: 0 4px 24px rgba(240,219,168,0.12);
}

/* ── Pricing card: lift + softer shadow ── */
.pricing-card {
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1), box-shadow 0.38s ease;
}
.pricing-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 72px rgba(0,0,0,0.3);
}

/* ── Availability dot: breathing pulse ── */
.avail-dot {
  animation: dot-breathe 2.8s ease-in-out infinite;
}
@keyframes dot-breathe {
  0%, 100% { opacity: 1;  transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

/* ── Gallery: orange reveal bar on hover ── */
.gallery-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.42s cubic-bezier(0.22,1,0.36,1);
  z-index: 5;
}
.gallery-item:hover::before { transform: scaleX(1); }

/* ── About stats: visual divider above numbers ── */
.about-stats {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--kraft);
}

/* ── Amenity icon: spring bounce ── */
.amenity-icon {
  display: inline-block;
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1);
}
.amenity:hover .amenity-icon {
  transform: scale(1.22) rotate(-7deg);
}

/* ── CTA strip: directional grain texture ── */
.cta-strip {
  background:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 10px,
      rgba(255,255,255,0.028) 10px,
      rgba(255,255,255,0.028) 11px
    ),
    var(--orange);
}

/* ── Rule items: micro warm hover ── */
.rule-item:hover {
  background: rgba(200,87,42,0.03);
}

/* ── Footer: orange-to-teal gradient crown ── */
.footer {
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-light) 0%, var(--orange) 50%, var(--teal-light) 100%);
}

/* ── Info cards (contact page): offset shadow ── */
.info-card {
  box-shadow: 3px 3px 0 var(--kraft);
}
.info-card:hover {
  box-shadow: 5px 5px 0 var(--kraft);
}

/* ── Stat numbers: deeper text shadow ── */
.stat-num {
  font-size: 3.6rem;
  text-shadow: 3px 3px 0 rgba(200,87,42,0.15);
}

/* ── Section eyebrow: trailing line ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  flex-shrink: 0;
}

/* ── Accessibility: visually hidden but readable by screen readers / crawlers ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
