/* ============================================================
   Stack & Move Totes — Shared Stylesheet
   Used by: 404.html
   ============================================================ */

:root {
  --green: #2D6A4F;
  --green-light: #52B788;
  --green-pale: #D8F3DC;
  --green-dark: #1B4332;
  --accent: #F4A261;
  --accent-light: #FDDCB5;
  --text: #1A1A1A;
  --text-muted: #5A5A5A;
  --surface: #FAFAF8;
  --border: #E0DED6;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--green-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--green-light); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-muted);
  font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green-dark) !important; color: white !important; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  background: var(--green);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--green);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--green);
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--green); color: white; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  padding: 6rem 5% 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-dot {
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.6; transform:scale(1.2); }
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}
h1 em { font-style: italic; color: var(--green-light); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-val { font-size: 1.6rem; font-weight: 700; color: var(--green-dark); display: block; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

/* ── HERO VISUAL ─────────────────────────────────────────── */
.hero-visual { display: flex; flex-direction: column; gap: 1rem; }
.tote-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  animation: floatIn 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
.tote-card:nth-child(1) { animation-delay: 0.1s; }
.tote-card:nth-child(2) { animation-delay: 0.25s; margin-left: 2rem; }
.tote-card:nth-child(3) { animation-delay: 0.4s;  margin-left: 1rem; }
@keyframes floatIn { to { opacity:1; transform:translateY(0); } }

.tote-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-light), var(--green));
}
.tote-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.tote-tag {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem; border-radius: 50px;
}
.tag-green { background: var(--green-pale); color: var(--green-dark); }
.tag-amber { background: var(--accent-light); color: #7A3B08; }
.tote-name  { font-weight: 700; font-size: 1rem; color: var(--green-dark); }
.tote-desc  { font-size: 0.85rem; color: var(--text-muted); }
.tote-price { font-weight: 700; font-size: 1.1rem; color: var(--green); }

/* ── SECTIONS ────────────────────────────────────────────── */
section { padding: 5rem 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--green-light); margin-bottom: 0.75rem;
  display: block;
}
h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--green-dark);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 560px; line-height: 1.75; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-bg { background: var(--green-dark); color: white; }
.how-bg h2 { color: white; }
.how-bg .section-label { color: var(--green-light); }
.how-bg .section-sub   { color: rgba(255,255,255,0.65); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: background 0.2s;
}
.step:hover { background: rgba(255,255,255,0.1); }
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--green-light);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; color: white; }
.step-desc  { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
.step-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

/* ── WHY US ──────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: white;
  transition: transform 0.2s;
}
.why-card:hover { transform: translateY(-3px); }
.why-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.why-card h3 { font-weight: 700; font-size: 1rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.price-card.featured { border-color: var(--green); border-width: 2px; }
.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: white;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.3rem 1rem; border-radius: 50px; white-space: nowrap;
}
.price-tier   { font-weight: 700; font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.price-amount { font-family: 'DM Serif Display', serif; font-size: 2.8rem; color: var(--green-dark); line-height: 1; }
.price-unit   { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; display: block; margin-top: 0.25rem; }
.price-features { list-style: none; margin-bottom: 1.75rem; }
.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 0.6rem;
}
.price-features li:last-child { border-bottom: none; }
.check { color: var(--green-light); font-weight: 700; }

.btn-book {
  width: 100%; display: block; text-align: center;
  padding: 0.85rem; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.2s;
}
.btn-book-outline { border: 2px solid var(--green); color: var(--green); background: transparent; }
.btn-book-outline:hover { background: var(--green); color: white; }
.btn-book-filled  { background: var(--green); color: white; border: 2px solid var(--green); }
.btn-book-filled:hover { background: var(--green-dark); border-color: var(--green-dark); }

/* ── BOOKING FORM ────────────────────────────────────────── */
.booking-bg { background: var(--green-pale); }
.booking-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 680px;
  margin: 3rem auto 0;
  border: 1px solid var(--border);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-full  { grid-column: 1 / -1; }
label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 0.4rem;
}
input, select, textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--text);
  background: var(--surface);
  transition: border-color 0.2s;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--green-light); }
textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%; padding: 1rem;
  background: var(--green); color: white; border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 1rem; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem; color: white;
  position: relative; overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: var(--green-light); opacity: 0.15; border-radius: 50%;
}
.about-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem; line-height: 1.5;
  margin-bottom: 2rem; position: relative;
}
.about-quote::before {
  content: '"'; font-size: 4rem; color: var(--green-light);
  line-height: 0; vertical-align: -1.5rem; margin-right: 0.25rem; opacity: 0.7;
}
.about-vals  { display: flex; flex-direction: column; gap: 1rem; }
.about-val   { display: flex; gap: 1rem; align-items: flex-start; }
.val-icon    { font-size: 1.4rem; flex-shrink: 0; }
.val-text strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.val-text span   { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.about-text h2   { margin-bottom: 1rem; }
.about-text p    { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }

/* ── 404 PAGE ────────────────────────────────────────────── */
body.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.page-404 nav { position: static; }

.error-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 5%;
  text-align: center;
}
.error-wrap  { max-width: 560px; }
.error-code  {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(5rem, 15vw, 9rem);
  color: var(--green-pale);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: -1rem;
}
.error-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--green-dark);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.error-title em { font-style: italic; color: var(--green-light); }
.error-sub {
  color: var(--text-muted); font-size: 1rem;
  line-height: 1.75; margin-bottom: 2.5rem;
}
.error-actions {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.quick-links { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.quick-link {
  background: white; border: 1px solid var(--border);
  border-radius: 50px; padding: 0.4rem 1rem;
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  transition: all 0.2s;
}
.quick-link:hover { border-color: var(--green-light); color: var(--green); }
.tote-svg { animation: wobble 3s ease-in-out infinite; display: block; margin: 0 auto 2rem; }
@keyframes wobble {
  0%, 100% { transform: rotate(-3deg); }
  50%       { transform: rotate(3deg); }
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 5% 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer-logo    { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: white; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-links   { display: flex; gap: 2rem; list-style: none; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green-light); }
.footer-bottom  { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
footer.footer-simple { text-align: center; padding: 1.25rem 5%; }
footer.footer-simple a { color: var(--green-light); text-decoration: none; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero        { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid  { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr 1fr; }
  .form-grid   { grid-template-columns: 1fr; }
  .footer-top  { flex-direction: column; gap: 1.5rem; }
  .nav-links   { display: none; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}