/* ============================================
   WAGON CREEK LODGE — STYLESHEET
   Palette: Plum (#7B3F6B) + Amber (#D4943A)
   Fonts: Playfair Display + Inter
   ============================================ */

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

:root {
  --plum:        #7B3F6B;
  --plum-dark:   #5C2D4F;
  --plum-light:  #A86B91;
  --plum-pale:   #F3E5EE;
  --amber:       #D4943A;
  --amber-dark:  #B87A28;
  --amber-light: #F0D5A0;
  --amber-pale:  #FFF8EE;
  --cream:       #FDF8F4;
  --warm-white:  #FFFBF7;
  --sand:        #F5EDE6;
  --text:        #2D1F24;
  --text-muted:  #6B5560;
  --text-light:  #9A828C;
  --white:       #FFFFFF;
  --shadow-sm:   0 1px 3px rgba(123,63,107,0.06), 0 1px 2px rgba(123,63,107,0.04);
  --shadow-md:   0 4px 16px rgba(123,63,107,0.08), 0 2px 6px rgba(123,63,107,0.05);
  --shadow-lg:   0 12px 40px rgba(123,63,107,0.12), 0 4px 12px rgba(123,63,107,0.06);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--plum-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(123,63,107,0.25);
}
.btn-primary:hover {
  background: var(--plum-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(123,63,107,0.35);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--plum);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(253,248,244,0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  transition: var(--transition);
}

.nav.scrolled .nav-brand { color: var(--plum-dark); }

.nav-brand-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--plum); background: var(--plum-pale); }

.nav-cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--amber-dark) !important; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: var(--transition);
}

.nav.scrolled .nav-toggle { color: var(--plum); }

.nav-toggle svg { width: 22px; height: 22px; }

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92,45,79,0.72) 0%,
    rgba(123,63,107,0.55) 50%,
    rgba(212,148,58,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-title em {
  font-style: italic;
  color: var(--amber-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

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

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.6);
  animation: float 2.5s ease-in-out infinite;
}

.hero-scroll svg { width: 28px; height: 28px; }

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── About ── */
.about {
  padding: 120px 0;
  background: var(--warm-white);
}

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

.about-images {
  position: relative;
  height: 600px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--warm-white);
}

.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-accent {
  position: absolute;
  top: -20px;
  right: 30%;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.about-text .section-title { margin-bottom: 24px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--plum-pale);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--plum-dark);
}

.about-feature svg {
  width: 20px;
  height: 20px;
  color: var(--plum);
  flex-shrink: 0;
}

/* ── Amenities ── */
.amenities {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle { margin: 0 auto; }

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

.amenity-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(123,63,107,0.05);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123,63,107,0.1);
}

.amenity-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--plum-pale), var(--sand));
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--plum);
}

.amenity-icon svg { width: 26px; height: 26px; }

.amenity-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--plum-dark);
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Gallery ── */
.gallery {
  padding: 120px 0;
  background: var(--warm-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item-wide { grid-column: span 2; }

.gallery-item:nth-child(2) { grid-row: span 2; }

/* ── Experience ── */
.experience {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 100%);
  color: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 560px;
}

.experience-image img { width: 100%; height: 100%; object-fit: cover; }

.experience-text .section-eyebrow { color: var(--amber-light); }
.experience-text .section-title { color: var(--white); margin-bottom: 24px; }
.experience-text .lead { color: rgba(255,255,255,0.75); }

.experience-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.experience-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.6;
}

.experience-list svg {
  width: 20px;
  height: 20px;
  color: var(--amber-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.experience-list strong { color: var(--white); }

/* ── Testimonials ── */
.testimonials {
  padding: 120px 0;
  background: var(--cream);
}

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

.testimonial-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

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

.testimonial-quote {
  width: 40px;
  height: 32px;
  color: var(--amber);
  margin-bottom: 20px;
  opacity: 0.7;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--plum-pale), var(--sand));
  border-radius: 50%;
  color: var(--plum);
}

.testimonial-avatar svg { width: 20px; height: 20px; }

.testimonial-author span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--plum-dark);
}

/* ── Location ── */
.location {
  padding: 120px 0;
  background: var(--warm-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location-detail svg {
  width: 22px;
  height: 22px;
  color: var(--plum);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.location-detail a,
.location-detail span {
  font-size: 1.05rem;
  color: var(--text);
}

.location-detail a:hover { color: var(--plum); }

.location-distances {
  display: flex;
  gap: 0;
  margin-top: 36px;
  padding: 24px;
  background: var(--plum-pale);
  border-radius: var(--radius-md);
}

.distance-item {
  flex: 1;
  text-align: center;
}

.distance-item span:first-child {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--plum);
}

.distance-item span:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.distance-divider {
  width: 1px;
  background: rgba(123,63,107,0.15);
}

.location-map {
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ── CTA ── */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(92,45,79,0.82) 0%,
    rgba(123,63,107,0.7) 60%,
    rgba(212,148,58,0.35) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-content .section-eyebrow { color: var(--amber-light); }
.cta-content .section-title { color: var(--white); margin-bottom: 20px; }
.cta-content .section-subtitle { color: rgba(255,255,255,0.8); margin: 0 auto 40px; }

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
}

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

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  color: var(--plum);
  flex-shrink: 0;
}

.contact-method-icon svg { width: 22px; height: 22px; }

.contact-method strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-method a,
.contact-method span {
  font-size: 1.05rem;
  color: var(--text);
}

.contact-method a:hover { color: var(--plum); }

.contact-form-wrapper {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--warm-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(123,63,107,0.1);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: #E8F5E9;
  border-radius: var(--radius-sm);
  color: #2E7D32;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-success.show { display: flex; }

.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ── Footer ── */
.footer {
  background: var(--plum-dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 56px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo-icon { width: 26px; height: 26px; }

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong,
.footer-contact strong {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 4px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ── Mobile Nav ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--warm-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    color: var(--text) !important;
    font-size: 1.05rem;
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .nav-links a:hover { background: var(--plum-pale) !important; color: var(--plum) !important; }

  .nav-cta {
    margin-top: 16px;
    background: var(--amber) !important;
    color: var(--white) !important;
    text-align: center;
    justify-content: center;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
  }

  .nav-overlay.show { display: block; }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .about-grid,
  .experience-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images { height: 400px; }

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

  .gallery-item-wide { grid-column: span 2; }
  .gallery-item:nth-child(2) { grid-row: span 1; }

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

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

  .contact-form-wrapper { padding: 28px; }

  .hero-stats { gap: 24px; }

  .stat-number { font-size: 1.8rem; }

  .location-distances { flex-direction: column; gap: 16px; }
  .distance-divider { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-wide { grid-column: span 1; }

  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }

  .about-features { grid-template-columns: 1fr; }
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
