/* ============================================================
   Ashley's Dog Ranch — Site Stylesheet
   Palette: sunset colors pulled from the ADR logo —
   coral, golden orange, warm peach cream, deep plum silhouette
   ============================================================ */

:root {
  --cream: #fbf3ea;
  --cream-deep: #f6e8d9;
  --charcoal: #321e24;        /* deep plum-brown (palm silhouettes) */
  --charcoal-soft: #462c33;
  --clay: #e0764e;            /* sunset coral (primary buttons/CTAs) */
  --clay-deep: #c05532;
  --sun: #f0a848;             /* golden sunset accent */
  --sage: #8a8f77;
  --sand: #f0d4b4;            /* warm peach sand (borders, soft accents) */
  --ink: #2a181d;
  --muted: #7d6168;
  --white: #fffdf9;
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --radius: 6px;
  --shadow: 0 14px 40px rgba(50, 30, 36, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ------------------------------------------------------------
   Typography
------------------------------------------------------------ */
h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--charcoal);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 16px;
}

.section-title { font-size: clamp(30px, 4.2vw, 46px); margin-bottom: 18px; }

.lead { font-size: 18.5px; color: var(--muted); max-width: 640px; }

/* ------------------------------------------------------------
   Buttons
------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary { background: var(--charcoal); color: var(--white); }
.btn-primary:hover { background: var(--clay-deep); }

.btn-clay { background: var(--clay); color: var(--white); }
.btn-clay:hover { background: var(--clay-deep); }

.btn-outline { border-color: rgba(255, 253, 249, 0.75); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--charcoal); }

.btn-outline-dark { border-color: var(--charcoal); color: var(--charcoal); background: transparent; }
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }

/* ------------------------------------------------------------
   Header / Nav
------------------------------------------------------------ */
header.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  padding: 14px 0;
}

header.site-header.scrolled {
  background: rgba(251, 243, 234, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(50, 30, 36, 0.08);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 58px; height: 58px; border-radius: 50%; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,.18); }
.brand .brand-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.35s ease;
  line-height: 1.1;
}
.brand .brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.35s ease;
}
header.scrolled .brand-name, body.solid-header .brand-name { color: var(--charcoal); }
header.scrolled .brand-sub, body.solid-header .brand-sub { color: var(--clay-deep); }

nav.main-nav { display: flex; align-items: center; gap: 34px; }
nav.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 253, 249, 0.92);
  transition: color 0.25s ease;
}
nav.main-nav a:hover { color: var(--clay); }
header.scrolled nav.main-nav a, body.solid-header nav.main-nav a { color: var(--charcoal-soft); }
header.scrolled nav.main-nav a:hover, body.solid-header nav.main-nav a:hover { color: var(--clay-deep); }

nav.main-nav a.nav-cta {
  background: var(--clay);
  color: var(--white) !important;
  padding: 11px 24px;
  border-radius: 3px;
}
nav.main-nav a.nav-cta:hover { background: var(--clay-deep); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative; z-index: 210;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; margin: 6px auto;
  background: var(--white); transition: all 0.3s ease;
}
header.scrolled .nav-toggle span, body.solid-header .nav-toggle span { background: var(--charcoal); }
body.nav-open .nav-toggle span { background: var(--charcoal); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  nav.main-nav {
    position: fixed; inset: 0;
    background: var(--cream);
    flex-direction: column; justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 200;
  }
  body.nav-open nav.main-nav { transform: translateX(0); }
  nav.main-nav a { color: var(--charcoal) !important; font-size: 17px; }
}

@media (max-width: 600px) {
  .brand-sub { display: none !important; }
  .brand img { width: 44px; height: 44px; }
  .brand .brand-name { font-size: 18px; }
  header.site-header { padding: 10px 0; }
}

/* ------------------------------------------------------------
   Hero
------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-media video, .hero .hero-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* The hero video is full-bleed on all screen sizes. The wrapper stretches
   over the whole hero and the video covers it. */
.hero-media { position: absolute; inset: 0; }

/* On wide screens bias the crop toward the lower part of the portrait
   frame, where the dog is. */
@media (min-width: 881px) {
  .hero-media video { object-position: center 72%; }
}

.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(40, 22, 28, 0.42) 0%, rgba(40, 22, 28, 0.28) 45%, rgba(40, 22, 28, 0.55) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
  padding: 120px 28px 80px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.hero-content .eyebrow { color: var(--sand); }

.hero-content h1 {
  color: var(--white);
  font-size: clamp(42px, 6.4vw, 76px);
  margin-bottom: 22px;
}

.hero-content p {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255, 253, 249, 0.92);
  max-width: 560px;
  margin: 0 auto 38px;
}

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

@media (max-width: 600px) {
  .hero-content { padding: 110px 18px 70px; }
  .hero-content h1 {
    font-size: clamp(26px, 8.2vw, 40px);
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
  .hero-content p { font-size: 16px; }
  .hero-actions .btn { padding: 14px 26px; font-size: 12.5px; }
}

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.8);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none;
  animation: floaty 2.4s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(40,22,28,0.45) 0%, rgba(40,22,28,0.2) 40%, rgba(40,22,28,0.62) 100%);
}
.page-hero .wrap { position: relative; z-index: 2; padding-bottom: 64px; color: var(--white); }
.page-hero h1 { color: var(--white); font-size: clamp(38px, 5.4vw, 62px); }
.page-hero .eyebrow { color: var(--sand); }
.page-hero p { max-width: 620px; color: rgba(255,253,249,0.92); font-size: 18px; margin-top: 14px; }

/* ------------------------------------------------------------
   Sections
------------------------------------------------------------ */
section { padding: 96px 0; }

.section-dark { background: var(--charcoal); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .eyebrow { color: var(--sun); }
.section-dark p { color: rgba(255, 253, 249, 0.78); }

.section-sand { background: var(--cream-deep); }

/* Intro / statement */
.statement {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.statement h2 { font-size: clamp(28px, 3.8vw, 42px); margin-bottom: 22px; }
.statement p { color: var(--muted); font-size: 18px; margin-bottom: 16px; }

/* Split (about) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split .split-img { position: relative; }
.split .split-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.split .split-img::before {
  content: "";
  position: absolute;
  top: 24px; left: -24px; right: 24px; bottom: -24px;
  border: 1px solid var(--clay);
  border-radius: var(--radius);
  z-index: -1;
}
.split h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 20px; }
.split p { color: var(--muted); margin-bottom: 16px; }
.split .btn { margin-top: 12px; }

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split .split-img::before { left: 12px; right: -12px; }
}

/* Services — white panel: photo + numbered list (stacked on mobile, split on desktop) */
.services-panel {
  margin-top: 54px;
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.sp-media { position: relative; }
.sp-media img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.sp-tag {
  position: absolute; left: 22px; bottom: 20px;
  background: rgba(40, 22, 28, 0.42);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #fff;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.sp-list { padding: 10px 30px; }
.sp-row {
  display: block;
  padding: 24px 0 22px;
  text-decoration: none;
  border-bottom: 1px solid #ece5dc;
}
.sp-row:last-child { border-bottom: none; }
.sp-row-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.sp-row h3 {
  font-size: 22px;
  color: var(--charcoal);
  margin: 0 0 7px;
  transition: color 0.2s ease;
}
.sp-num {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--clay);
  letter-spacing: 1px;
}
.sp-row p { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0; max-width: 480px; }
.sp-row:hover h3 { color: var(--clay-deep); }

@media (min-width: 881px) {
  .services-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
  }
  .sp-media img {
    position: absolute; inset: 0;
    height: 100%;
  }
  .sp-list { padding: 26px 54px; align-self: center; }
  .sp-row { padding: 28px 0 26px; }
}

/* Gallery strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-strip img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-strip img:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.gallery-strip .ig-tile {
  position: relative; display: block;
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1;
}
.gallery-strip .ig-tile img { transition: transform 0.4s ease; }
.gallery-strip .ig-tile:hover img { transform: scale(1.05); }
.ig-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(40, 22, 28, 0.82) 0%, rgba(40, 22, 28, 0.25) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; gap: 6px;
  padding: 16px;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-strip .ig-tile:hover .ig-overlay { opacity: 1; }
.ig-caption { color: #fff; font-size: 12.5px; line-height: 1.4; }
.ig-open { color: var(--sun); font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; }
.gallery-strip .tall { grid-row: span 2; }
.gallery-strip .tall img { height: 100%; aspect-ratio: auto; }
@media (max-width: 720px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }

/* Testimonials */
.testimonials { position: relative; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 54px; }
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 42px;
  box-shadow: 0 6px 24px rgba(50,30,36,0.07);
  border-top: 3px solid var(--clay);
  display: flex; flex-direction: column;
}
.testimonial.feature {
  grid-column: span 2;
  background: var(--clay);
  border-top: none;
  color: var(--white);
}
.testimonial.feature blockquote, .testimonial.feature cite { color: var(--white); }
.testimonial.feature .stars { color: var(--white); }
.testimonial .stars { color: var(--sun); font-size: 15px; letter-spacing: 4px; margin-bottom: 18px; }
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--charcoal-soft);
  flex: 1;
}
.testimonial.feature blockquote { font-size: clamp(19px, 2.4vw, 24px); }
.testimonial cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 820px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial.feature { grid-column: span 1; }
}

/* CTA band */
.cta-band {
  position: relative;
  background-size: cover; background-position: center 35%;
  padding: 130px 0;
  text-align: center;
}
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(40, 22, 28, 0.62); }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); font-size: clamp(30px, 4.4vw, 50px); margin-bottom: 18px; }
.cta-band p { color: rgba(255,253,249,0.88); max-width: 540px; margin: 0 auto 36px; font-size: 18px; }

/* Feature rows (training page) */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 56px 0; }
.feature-row.reverse .fr-img { order: 2; }
.feature-row .fr-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}
.feature-row h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.feature-row p { color: var(--muted); margin-bottom: 14px; }
.feature-row ul { list-style: none; margin: 18px 0 22px; }
.feature-row ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  color: var(--charcoal-soft);
}
.feature-row ul li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--clay);
  font-weight: 600;
}
.price-tag {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--clay-deep);
  background: rgba(224, 118, 78, 0.12);
  padding: 8px 16px;
  border-radius: 3px;
  margin-bottom: 16px;
}
@media (max-width: 880px) {
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .fr-img { order: 0; }
}

/* Philosophy pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; }
.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 34px;
  box-shadow: 0 6px 24px rgba(50,30,36,0.06);
}
.pillar .pillar-num {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--clay);
  line-height: 1;
  margin-bottom: 18px;
}
.pillar h3 { font-size: 21px; margin-bottom: 10px; }
.pillar p { color: var(--muted); font-size: 15px; }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   Booking form
------------------------------------------------------------ */
.booking-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 920px) { .booking-layout { grid-template-columns: 1fr; } }

.booking-info h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 18px; }
.booking-info p { color: var(--muted); margin-bottom: 18px; }
.booking-info .info-list { list-style: none; margin: 26px 0; }
.booking-info .info-list li {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 18px; color: var(--charcoal-soft);
}
.booking-info .info-list .dot {
  flex: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--clay); margin-top: 8px;
}

.booking-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 46px;
  border-top: 4px solid var(--clay);
}
.booking-card h3 { font-size: 26px; margin-bottom: 6px; }
.booking-card .form-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 28px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: span 2; }
.form-field label {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--charcoal-soft);
}
.form-field label .req { color: var(--clay-deep); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(224, 118, 78, 0.16);
}
.form-field textarea { resize: vertical; min-height: 96px; }
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .booking-card { padding: 30px 24px; }
}

/* Calendar */
.cal {
  border: 1px solid var(--sand);
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream);
  user-select: none;
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 14px;
}
.cal-head .cal-title { font-family: var(--serif); font-size: 17px; }
.cal-nav {
  background: none; border: 1px solid rgba(255,255,255,0.35);
  color: var(--white); width: 32px; height: 32px; border-radius: 4px;
  cursor: pointer; font-size: 15px; line-height: 1;
  transition: background 0.2s ease;
}
.cal-nav:hover:not(:disabled) { background: var(--clay); border-color: var(--clay); }
.cal-nav:disabled { opacity: 0.35; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); padding: 10px; gap: 4px; }
.cal-dow {
  text-align: center; font-size: 10.5px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); padding: 8px 0 6px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  border: none; background: none; border-radius: 4px;
  cursor: pointer; color: var(--charcoal-soft);
  transition: background 0.15s ease, color 0.15s ease;
}
.cal-day:hover:not(:disabled) { background: var(--sand); }
.cal-day.today { font-weight: 700; color: var(--clay-deep); }
.cal-day.selected { background: var(--clay); color: var(--white); font-weight: 600; }
.cal-day.in-range { background: rgba(224, 118, 78, 0.22); color: var(--clay-deep); font-weight: 600; }
.cal-day:disabled { color: #d8c3b6; cursor: default; }
.cal-day.empty { visibility: hidden; }
.cal-help { margin-top: 8px; font-size: 12px; color: var(--muted); }

.selected-slot {
  margin-top: 14px;
  font-size: 14px;
  color: var(--charcoal-soft);
  background: rgba(224,118,78,0.1);
  border: 1px dashed var(--clay);
  border-radius: 4px;
  padding: 11px 14px;
  display: none;
}
.selected-slot.visible { display: block; }
.selected-slot strong { color: var(--clay-deep); }
.selected-slot .slot-hint { font-size: 12px; color: var(--muted); }

.form-submit-row { margin-top: 26px; }
.form-submit-row .btn { width: 100%; }
.form-note { margin-top: 14px; font-size: 12.5px; color: var(--muted); text-align: center; }

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 14.5px;
}
.form-status.success { display: block; background: #e7efe4; color: #3c5e33; border: 1px solid #b9ccb1; }
.form-status.error { display: block; background: #f6e4e0; color: #8c3a2b; border: 1px solid #dcb3a8; }

/* ------------------------------------------------------------
   Footer
------------------------------------------------------------ */
footer.site-footer {
  background: var(--charcoal);
  color: rgba(255, 253, 249, 0.75);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { width: 92px; border-radius: 50%; margin-bottom: 18px; background: var(--white); }
.footer-brand p { font-size: 14.5px; max-width: 300px; }
footer h4 {
  font-family: var(--sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 18px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 11px; }
footer a { color: rgba(255,253,249,0.75); text-decoration: none; font-size: 14.5px; transition: color 0.2s ease; }
footer a:hover { color: var(--clay); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px; font-size: 12.5px; color: rgba(255,253,249,0.45);
  flex-wrap: wrap; gap: 10px;
}
.ig-link { display: inline-flex; align-items: center; gap: 8px; }
.ig-link svg { width: 17px; height: 17px; fill: currentColor; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ------------------------------------------------------------
   Auth / Account / Admin
------------------------------------------------------------ */
.page-plain {
  min-height: 100svh;
  padding: 140px 0 90px;
  background: var(--cream);
}

.auth-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--clay);
  padding: 42px 44px;
}
.auth-card h1 { font-size: 26px; margin-bottom: 6px; }
.auth-card .form-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }
.auth-tabs { display: flex; gap: 0; margin-bottom: 26px; border: 1px solid var(--sand); border-radius: 5px; overflow: hidden; }
.auth-tabs button {
  flex: 1; padding: 11px; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 12.5px; font-weight: 600;
  letter-spacing: 1.6px; text-transform: uppercase;
  background: var(--cream); color: var(--muted);
}
.auth-tabs button.active { background: var(--charcoal); color: var(--white); }
.auth-alt { text-align: center; font-size: 13.5px; color: var(--muted); margin-top: 18px; }
.auth-alt a { color: var(--clay-deep); font-weight: 600; }

/* Status pills */
.status-pill {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px; white-space: nowrap;
}
.status-pill.pending { background: #fdf1de; color: #b9780d; }
.status-pill.approved { background: #e5f3eb; color: #2f7d52; }
.status-pill.declined { background: #fbe5e5; color: #a63232; }
.status-pill.cancelled { background: #eceae5; color: #6f675c; }

/* Booking cards / lists */
.booking-list { display: flex; flex-direction: column; gap: 14px; }
.booking-row {
  background: var(--white);
  border: 1px solid var(--np-border, #e3ddd1);
  border-left: 4px solid var(--clay);
  border-radius: 8px;
  padding: 18px 22px;
  display: flex; flex-wrap: wrap; gap: 14px 26px;
  align-items: center;
  justify-content: space-between;
}
.booking-row .b-main { flex: 1 1 320px; }
.booking-row .b-title { font-family: var(--serif); font-size: 18px; color: var(--charcoal); margin-bottom: 3px; }
.booking-row .b-meta { font-size: 13.5px; color: var(--muted); }
.booking-row .b-meta strong { color: var(--charcoal-soft); }
.booking-row .b-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.booking-row .b-note { width: 100%; font-size: 13px; color: var(--muted); background: var(--cream); border-radius: 4px; padding: 8px 12px; }

.btn-sm {
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 9px 16px; border-radius: 3px; cursor: pointer; border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn-approve { background: #2f7d52; color: #fff; }
.btn-approve:hover { background: #256842; }
.btn-decline { background: transparent; color: #a63232; border-color: #a63232; }
.btn-decline:hover { background: #a63232; color: #fff; }
.btn-cancel { background: transparent; color: var(--muted); border-color: var(--sand); }
.btn-cancel:hover { border-color: #a63232; color: #a63232; }

/* Account layout */
.account-layout { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 40px; align-items: start; }
@media (max-width: 920px) { .account-layout { grid-template-columns: 1fr; } }
.panel {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(50,30,36,0.07);
  border-top: 4px solid var(--clay);
  padding: 32px 34px;
}
.panel h2 { font-size: 22px; margin-bottom: 16px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.panel-head h2 { margin-bottom: 0; }

/* Admin filter tabs */
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 22px 0; }
.filter-row button {
  font-family: var(--sans);
  font-size: 12px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 9px 18px; border-radius: 20px; cursor: pointer;
  background: var(--white); color: var(--muted); border: 1px solid var(--sand);
}
.filter-row button.active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.filter-row button .n { opacity: 0.7; margin-left: 4px; }

.empty-state {
  text-align: center; color: var(--muted); background: var(--white);
  border: 1px dashed var(--sand); border-radius: 8px; padding: 44px 20px; font-size: 15px;
}

.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 8px; }
@media (max-width: 720px) { .admin-stats { grid-template-columns: repeat(2, 1fr); } }
.admin-stat { background: var(--white); border: 1px solid var(--sand); border-radius: 8px; padding: 14px 18px; }
.admin-stat .num { font-family: var(--serif); font-size: 26px; color: var(--charcoal); }
.admin-stat .lbl { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); }
