/* ───────────────────────────────────────────
   Hippie Hollow Campground — Styles
   Palette: Teal + Slate Grey
   Fonts: Cormorant Garamond + Lato
─────────────────────────────────────────── */

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

:root {
  --teal-900: #042f2e;
  --teal-800: #0d3b38;
  --teal-700: #0f4f4b;
  --teal-600: #0d6e68;
  --teal-500: #0d9488;
  --teal-400: #14b8a6;
  --teal-100: #ccfbf1;
  --teal-50:  #f0fdfa;

  --slate-950: #0c1522;
  --slate-900: #0f1c2e;
  --slate-800: #1a2d45;
  --slate-700: #2a4060;
  --slate-600: #3d5a80;
  --slate-500: #5a7fa8;
  --slate-400: #8fa8c4;
  --slate-300: #b8c8dc;
  --slate-200: #dce6f0;
  --slate-100: #eef4fa;
  --slate-50:  #f6f9fc;

  --cream: #faf9f6;
  --warm-white: #fefdfb;
  --sand: #f0ece4;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Lato', system-ui, -apple-system, sans-serif;

  --shadow-sm:  0 1px 3px rgba(12, 21, 34, 0.06), 0 1px 2px rgba(12, 21, 34, 0.04);
  --shadow-md:  0 4px 16px rgba(12, 21, 34, 0.08), 0 2px 4px rgba(12, 21, 34, 0.04);
  --shadow-lg:  0 12px 40px rgba(12, 21, 34, 0.12), 0 4px 12px rgba(12, 21, 34, 0.06);
  --shadow-xl:  0 24px 60px rgba(12, 21, 34, 0.14), 0 8px 20px rgba(12, 21, 34, 0.08);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--slate-800);
  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: var(--teal-600);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--teal-500); }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--teal-700);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Typography ── */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 1rem;
}

.section-label.light { color: var(--teal-300); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--slate-900);
  margin-bottom: 1.5rem;
}

.section-title.light { color: #fff; }

.section-desc {
  font-size: 1.0625rem;
  color: var(--slate-600);
  max-width: 560px;
  line-height: 1.75;
}

.section-desc.light { color: var(--slate-300); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal-600);
  color: #fff;
  border-color: var(--teal-600);
}

.btn--primary:hover {
  background: var(--teal-700);
  border-color: var(--teal-700);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--slate-700);
  border-color: var(--slate-300);
}

.btn--ghost:hover {
  border-color: var(--teal-500);
  color: var(--teal-600);
}

.btn--full {
  width: 100%;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(254, 253, 251, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 200, 220, 0.3);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--slate-900);
}

.logo--light { color: #fff; }

.logo-icon {
  color: var(--teal-500);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.logo-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-500);
  line-height: 1;
  margin-top: 2px;
}

.logo--light .logo-sub { color: var(--slate-400); }

/* ── Nav ── */
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--teal-600);
  background: var(--teal-50);
}

.nav-link--cta {
  background: var(--teal-600);
  color: #fff !important;
  margin-left: 0.5rem;
}

.nav-link--cta:hover {
  background: var(--teal-700);
}

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-800);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--cream);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--slate-600);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-image-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 160px;
  height: 160px;
  background: var(--teal-500);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}

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

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

.about-content .section-title {
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.0625rem;
  color: var(--slate-600);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--slate-200);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal-600);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--slate-500);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--slate-200);
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ── Amenities ── */
.amenities {
  padding: 7rem 0;
  background: var(--slate-50);
}

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

.amenity-card {
  background: var(--warm-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all var(--transition);
}

.amenity-card:hover {
  border-color: var(--teal-200, var(--teal-100));
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.amenity-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-md);
  color: var(--teal-600);
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}

.amenity-card:hover .amenity-icon {
  background: var(--teal-600);
  border-color: var(--teal-600);
  color: #fff;
}

.amenity-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.amenity-desc {
  font-size: 0.9375rem;
  color: var(--slate-500);
  line-height: 1.75;
}

/* ── Stay / Experience ── */
.stay {
  padding: 7rem 0;
  background: var(--warm-white);
}

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

.stay-image-group {
  position: relative;
}

.stay-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.stay-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 240px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--warm-white);
}

.stay-content .section-title {
  margin-bottom: 1.5rem;
}

.stay-content > p {
  font-size: 1.0625rem;
  color: var(--slate-600);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.stay-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-200);
}

.stay-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--slate-700);
  font-weight: 500;
}

.stay-features svg {
  color: var(--teal-500);
  flex-shrink: 0;
}

/* ── Location ── */
.location {
  padding: 7rem 0;
  background: var(--slate-900);
}

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

.location-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.location-map img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(12, 21, 34, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.75rem 1.125rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
}

.map-overlay svg {
  color: var(--teal-400);
  flex-shrink: 0;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.info-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.875rem;
}

.info-card p {
  font-size: 0.9375rem;
  color: var(--slate-400);
  line-height: 1.75;
}

.nearby-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nearby-list li {
  font-size: 0.9375rem;
  color: var(--slate-300);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.nearby-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Contact ── */
.contact {
  padding: 7rem 0;
  background: var(--cream);
}

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

.contact-content .section-title {
  margin-bottom: 1.25rem;
}

.contact-desc {
  font-size: 1.0625rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--slate-700);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-item:hover { color: var(--teal-600); }

.contact-item svg {
  color: var(--teal-500);
  flex-shrink: 0;
}

/* ── Form ── */
.contact-form-wrap {
  background: var(--warm-white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-600);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--slate-800);
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  outline: none;
  transition: all var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--slate-400);
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-md);
  color: var(--teal-700);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.form-success svg {
  color: var(--teal-500);
  flex-shrink: 0;
}

/* ── Footer ── */
.site-footer {
  background: var(--slate-950);
  color: var(--slate-400);
  padding: 4rem 0 0;
}

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

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 1rem;
  color: var(--slate-500);
  max-width: 280px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--slate-400);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--teal-400); }

.footer-contact p {
  font-size: 0.9375rem;
  line-height: 1.8;
}

.footer-contact a {
  color: var(--slate-400);
}

.footer-contact a:hover { color: var(--teal-400); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--slate-600);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 2.5rem;
  }

  .hero-image img {
    height: 480px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-inner,
  .stay-inner,
  .contact-inner,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stay-img-secondary {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1rem;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(254, 253, 251, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-link {
    padding: 0.75rem 0.875rem;
  }

  .nav-link--cta {
    margin-left: 0;
    text-align: center;
    margin-top: 0.5rem;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 0 4rem;
    gap: 2.5rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    height: 360px;
    border-radius: var(--radius-lg);
  }

  .hero-image-accent {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .about-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .stat-divider {
    width: 48px;
    height: 1px;
  }

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

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

  .location-map img {
    height: 280px;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

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

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .amenity-card {
    padding: 1.75rem;
  }
}
