:root {
  --bg: #f8f7f5;
  --text: #1b2430;
  --muted: #5f6b7a;
  --ink: #0b1220;
  --accent: #2f5d50; /* deep forest green */
  --accent-ink: #143a30;
  --accent-2: #1f3a5f; /* dark indigo-blue */
  --panel: #ffffff;
  --border: #e1ddd6;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.site-header.scrolled { box-shadow: 0 6px 16px rgba(15, 23, 32, 0.08); }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-name { font-family: 'Dancing Script', cursive; font-weight: 700; font-size: 28px; color: var(--ink); letter-spacing: 0.2px; }

.nav { display: flex; gap: 18px; }
.nav a { color: var(--ink); text-decoration: none; font-size: 15px; }
.nav a:hover { color: var(--accent-ink); }

.hero {
  position: relative;
  min-height: 50vh;
  display: grid; place-items: center;
  padding: 56px 20px 28px;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,18,32,0.65), rgba(11,18,32,0.40)),
    linear-gradient(0deg, rgba(11,18,32,0.35), rgba(11,18,32,0.00) 40%),
    url('assets/hero/bag_brown_molly.JPEG') center center / cover no-repeat;
  filter: saturate(1.05);
}
.hero-inner { position: relative; z-index: 1; max-width: 980px; text-align: center; }
.hero-title { margin: 0 0 10px; font-size: 44px; color: var(--ink); letter-spacing: 0.5px; }
.hero-title { color: #fff; }
.hero-subtitle { margin: 0 auto; max-width: 720px; color: #eef2f6; font-size: 18px; }
.hero-ctas { margin-top: 22px; display: inline-flex; gap: 12px; flex-wrap: wrap; }

.button { appearance: none; border: 1px solid var(--accent); background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; padding: 12px 18px; border-radius: 999px; cursor: pointer; font-weight: 600; letter-spacing: 0.2px; }
.button.primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border-color: var(--accent); }
.button.ghost { background: transparent; color: var(--accent-ink); }
.hero .button.ghost { background: rgba(11, 18, 32, 0.55); color: #fff; border-color: rgba(255,255,255,0.4); }
.hero .button.ghost:hover { background: rgba(11, 18, 32, 0.7); }
.button:hover { filter: brightness(0.95); }

.section { padding: 56px 20px; }
.section-inner { max-width: 1080px; margin: 0 auto; }
.section h2 { margin: 0 0 16px; color: var(--ink); font-size: 28px; letter-spacing: 0.3px; }
.section p { margin: 0 0 10px; }

.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.link-cta { color: var(--accent-2); text-decoration: none; }
.link-cta:hover { text-decoration: underline; }

.gallery .grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.card-item { grid-column: span 4; border: 1px solid var(--border); background: var(--panel); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06); transition: transform 200ms ease, box-shadow 200ms ease; will-change: transform; cursor: pointer; }
.card-item:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(16, 24, 40, 0.12); }
.card-media { aspect-ratio: 4/3; width: 100%; object-fit: cover; object-position: center; background: #eee; transition: transform 300ms ease; }
.card-item:hover .card-media { transform: scale(1.06); }
.card-body { padding: 14px 16px; }
.card-title { margin: 0 0 4px; font-weight: 600; color: var(--ink); }
.card-meta { margin: 0; color: var(--muted); font-size: 14px; }
.card-actions { padding: 12px 14px 16px; }
.card-actions a { text-decoration: none; color: var(--accent-ink); font-weight: 600; }

/* Lightbox modal */
.lightbox { position: fixed; inset: 0; background: rgba(15, 23, 32, 0.8); display: none; align-items: center; justify-content: center; z-index: 50; }
.lightbox.open { display: flex; }
.lightbox-dialog { width: min(960px, 92vw); background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); color: var(--ink); }
.lightbox-media { position: relative; background: #000; }
.lightbox-media img, .lightbox-media video { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.lightbox-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 42px; height: 42px; border: 0; border-radius: 999px; background: rgba(17, 24, 39, 0.6); color: #fff; cursor: pointer; display: grid; place-items: center; font-size: 22px; opacity: 1; transition: background 160ms ease; }
.lightbox-arrow:hover { background: rgba(17, 24, 39, 0.75); }
.lightbox-arrow.left { left: 10px; }
.lightbox-arrow.right { right: 10px; }
.lightbox-close { position: absolute; top: 10px; right: 10px; z-index: 3; width: 38px; height: 38px; border: 0; border-radius: 999px; background: rgba(17, 24, 39, 0.6); color: #fff; cursor: pointer; display: grid; place-items: center; font-size: 18px; opacity: 1; transition: background 160ms ease; }
.lightbox-close:hover { background: rgba(17, 24, 39, 0.75); }
.lightbox-caption {}
.lightbox-thumbs { display: grid; grid-auto-flow: column; gap: 6px; overflow-x: auto; padding: 8px 16px 14px; background: #fafafa; }
.lightbox-thumbs img, .lightbox-thumbs video { width: 88px; height: 56px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border); cursor: pointer; opacity: 0.9; }
.lightbox-thumbs .active { outline: 2px solid var(--accent); opacity: 1; }

@media (max-width: 1000px) {
  .card-item { grid-column: span 6; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .hero-title { font-size: 34px; }
  .card-item { grid-column: span 12; }
}



.contact a { color: var(--accent-ink); }

.site-footer { border-top: 1px solid var(--border); padding: 20px; background: #fff; }
.footer-inner { max-width: 1080px; margin: 0 auto; display: grid; gap: 8px; }
.legal { color: var(--muted); font-size: 14px; }


