/* The Outdoors Edit — base styles */
:root {
  --forest: #2f3e2f;
  --forest-dark: #202b20;
  --sand: #e8ddc9;
  --sand-light: #f6f2e9;
  --blush: #e8a2b8;
  --blush-dark: #d97a97;
  --ink: #24241f;
  --white: #ffffff;
  --max-width: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--sand-light);
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest-dark);
}

a { color: inherit; text-decoration: none; }

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / nav */
header.site {
  background: var(--forest);
  color: var(--sand-light);
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Decorative sun / continuous mountain ridge / moon doodle, sitting inline
   between the logo and the nav so it never overlaps either — not an overlay,
   just a third flex child in the header row. Hidden once the header stacks
   on narrow screens (see header.site .wrap media query below). */
.header-mountain { display: flex; align-items: center; flex-shrink: 0; }
.header-mountain svg { display: block; height: 26px; width: auto; }
@media (max-width: 900px) {
  .header-mountain { display: none; }
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  color: var(--sand-light);
}

nav.main ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav.main a {
  font-size: 0.95rem;
  color: var(--sand-light);
  opacity: 0.85;
  transition: opacity 0.15s;
}

nav.main a:hover, nav.main a.active { opacity: 1; border-bottom: 2px solid var(--blush); }

.header-right { display: flex; align-items: center; gap: 26px; }
.header-social { display: flex; align-items: center; gap: 14px; }
.header-social a { display: inline-flex; opacity: 0.9; transition: opacity 0.15s, transform 0.15s; }
.header-social a:hover { opacity: 1; transform: translateY(-1px); }
@media (max-width: 820px) {
  .header-right { flex-direction: column; gap: 12px; }
}

/* Hero */
.hero {
  padding: 90px 0 70px;
  text-align: center;
}

.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 18px; }

.hero p.sub {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
  color: #4a4a3f;
}

/* Full-bleed hero with background photo (home page) */
.hero-bg {
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  /* No tint at all — the photo shows at full brightness. Legibility comes entirely
     from the solid .hero-panel behind the text. */
  background-image: url('hero-dolomites.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--forest); /* shows while the real photo isn't in yet */
}
.hero-bg h1 { color: var(--sand-light); font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 12px; }
.hero-bg p.sub.light { color: var(--sand-light); max-width: 440px; margin: 0 auto 22px; font-size: 0.98rem; opacity: 0.95; }
.btn.outline.light { border-color: var(--sand-light); color: var(--sand-light); }

/* Solid, compact panel so hero text stays legible — no reliance on darkening the photo */
.hero-panel {
  background: rgba(24,32,24,0.82);
  border-radius: 12px;
  padding: 28px 32px;
  max-width: 460px;
  margin: 0 auto;
}
@media (max-width: 600px) { .hero-panel { padding: 22px 20px; max-width: 90%; } }
@media (max-width: 820px) {
  .hero-bg { background-attachment: scroll; min-height: 520px; } /* fixed bg is unreliable on mobile browsers */
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { text-align: center; }
}

/* Meet Cami row under hero */
.meet-row {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}
/* Base rule so .portrait-round works anywhere, not just inside .meet-row —
   without this, an <img> using only this class falls back to the browser's
   default object-fit (stretch-to-fit), which badly distorts a portrait photo
   squeezed into a square box. */
.portrait-round {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--sand);
  flex-shrink: 0;
}
.meet-row p { color: #4a4a3f; font-size: 1.05rem; }
@media (max-width: 700px) { .meet-row { flex-direction: column; text-align: center; padding: 40px 24px; } }

/* Platform stat panels (TikTok / Instagram) */
.platforms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.platform-panel {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.platform-panel h3 { font-size: 1.15rem; margin-bottom: 2px; }
.platform-panel .period { font-size: 0.8rem; color: #6a6250; margin-bottom: 18px; }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 20px; }
.metric-grid-2col { grid-template-columns: repeat(2, 1fr); }
.metric-grid > div { display: flex; flex-direction: column; align-items: center; text-align: center; }
.m-icon { margin-bottom: 6px; }
.m-icon.icon-pink { color: var(--blush-dark); }
.m-icon.icon-green { color: var(--forest); }
.metric-grid .m-num { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--forest-dark); }
.metric-grid .m-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.4px; color: #6a6250; }
.demo-row { display: flex; flex-direction: column; gap: 6px; font-size: 0.85rem; color: #4a4a3f; border-top: 1px solid var(--sand); padding-top: 14px; }
.demo-row strong { color: var(--forest-dark); }
@media (max-width: 820px) {
  .platforms-grid { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Once a .ph placeholder holds a real photo, drop the dashed-placeholder look.
   Fixed height (not just min-height) + absolutely-positioned, cover-cropped img
   guarantees every card's photo box is the exact same size, no matter the
   source photo's original dimensions (portrait, landscape, whatever). */
.ph:has(img) {
  border: none;
  background: none;
  padding: 0;
  overflow: hidden;
  position: relative;
  height: 230px;
  min-height: 230px;
  display: block;
}
.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card .ph.zoom img { transform: scale(1.15); }

/* Social post covers (TikTok/IG screenshots) — all cropped to the same box
   (matching the Prime Day post's proportions) so the grid reads as uniform
   tiles with no letterboxing. */
.card .ph.post {
  height: auto;
  min-height: 0;
  aspect-ratio: 1135 / 1600;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.card .ph.post img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  min-height: 220px;
  overflow: hidden;
  border-radius: 0;
}
.collage-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--blush-dark);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }
.btn.outline {
  background: transparent;
  border: 2px solid var(--forest);
  color: var(--forest);
}

/* Placeholder image blocks — replace with real photos */
.ph {
  background: repeating-linear-gradient(45deg, #d8cdb4, #d8cdb4 12px, #e8ddc9 12px, #e8ddc9 24px);
  border: 2px dashed #a89a76;
  color: #5c5341;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.85rem;
  padding: 16px;
  border-radius: 6px;
  min-height: 220px;
}

/* Sections */
section { padding: 70px 0; }
section.alt { background: var(--sand); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 12px; }
.section-head p { color: #4a4a3f; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.card .body { padding: 16px; }
.card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.card p { font-size: 0.9rem; color: #5c5341; }
.card p.post-stats {
  font-size: 0.68rem;
  line-height: 1.4;
  color: #8a7f66;
  letter-spacing: -0.15px;
  word-spacing: -1px;
}
a.card { display: block; }

.card .ph { position: relative; border-radius: 8px 8px 0 0; }
.platform-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--blush-dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 4px 9px;
  border-radius: 20px;
  z-index: 2;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats .num { font-family: 'Fraunces', serif; font-size: 2.2rem; color: var(--forest-dark); }
.stats .label { font-size: 0.85rem; color: #6a6250; text-transform: uppercase; letter-spacing: 0.5px; }

.brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.brand-row .ph { width: 140px; height: 70px; min-height: 70px; font-size: 0.7rem; }
.brand-row .ph.brand-name {
  background: var(--white);
  border: 1px solid var(--blush);
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest-dark);
  border-radius: 6px;
}
/* Plain, unboxed brand logos — just the marks, no card/border around them */
.brand-logo-img {
  height: 46px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

/* Case study cards (brand collaborations, Wix-portfolio-style) */
.case {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 28px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: start;
}
.case .ph { min-height: 160px; }
.case .meta {
  font-size: 0.82rem;
  color: #6a6250;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}
.case h3 { font-size: 1.2rem; margin-bottom: 10px; }
.case p { font-size: 0.95rem; color: #4a4a3f; margin-bottom: 6px; }
.case .results {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.case .results .stat {
  background: var(--sand);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest-dark);
}
.case .quote {
  margin-top: 14px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--forest-dark);
  border-left: 3px solid var(--blush);
  padding-left: 14px;
}
@media (max-width: 700px) {
  .case { grid-template-columns: 1fr; }
}

/* Services list */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-item {
  background: var(--white);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.service-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-item p { font-size: 0.9rem; color: #5c5341; }
@media (max-width: 700px) { .services { grid-template-columns: 1fr; } }

blockquote.testimonial {
  max-width: 640px;
  margin: 24px auto;
  padding-left: 18px;
  border-left: 3px solid var(--blush);
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-style: italic;
  text-align: left;
  color: var(--forest-dark);
}
blockquote.testimonial cite {
  display: block;
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  color: #6a6250;
}

form.contact { max-width: 560px; margin: 0 auto; display: grid; gap: 16px; }
form.contact label { font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; display: block; }
form.contact input, form.contact textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfc4a8;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
}
form.contact textarea { min-height: 140px; resize: vertical; }

footer.site {
  background: var(--forest-dark);
  color: var(--sand-light);
  text-align: center;
  padding: 40px 0;
  font-size: 0.85rem;
}
footer.site .social { margin-top: 14px; display: flex; justify-content: center; align-items: center; gap: 18px; }
footer.site .social a { opacity: 0.85; display: inline-flex; align-items: center; justify-content: center; transition: opacity 0.15s, transform 0.15s; }
footer.site .social a:hover { opacity: 1; transform: translateY(-1px); }

@media (max-width: 820px) {
  nav.main ul { gap: 16px; flex-wrap: wrap; justify-content: center; }
  header.site .wrap { flex-direction: column; gap: 12px; }
  .grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
}

/* About page main photo — single static shot, no slider. */
.about-photo-main {
  max-width: 560px;
  margin: 0 auto 12px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.about-photo-main img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
@media (max-width: 560px) {
  .about-photo-main img { height: 260px; }
}

/* Contact page "get in touch" — same full-bleed-photo + solid-panel pattern as
   the home page hero, so the text stays legible without darkening the photo. */
.contact-cta-bg {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background-image: url('contact-cta-bg.jpg');
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed;
  background-color: var(--forest);
}
.contact-cta-panel {
  background: rgba(24,32,24,0.82);
  border-radius: 12px;
  padding: 28px 32px;
  max-width: 460px;
  margin: 0 auto;
}
.contact-cta-panel h2 { color: var(--sand-light); margin-bottom: 12px; }
.contact-cta-panel p { color: var(--sand-light); opacity: 0.95; margin-bottom: 22px; }
@media (max-width: 600px) { .contact-cta-panel { padding: 22px 20px; max-width: 90%; } }
@media (max-width: 820px) {
  .contact-cta-bg { background-attachment: scroll; min-height: 360px; }
}

/* Home page "meet" section — video background instead of flat beige */
.video-bg-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.video-bg-section video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.video-bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24,32,24,0.4);
  z-index: -1;
}
.video-bg-section .section-head h2 {
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}

/* Partnership Spotlight — visually distinct from organic gallery cards */
.spotlight-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: var(--white);
  border: 2px solid var(--blush-dark);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(24,32,24,0.12);
}
.spotlight-media { position: relative; min-height: 320px; overflow: hidden; border-radius: 12px 0 0 12px; }
.spotlight-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spotlight-body { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.spotlight-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--blush-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.spotlight-body h2 { margin-bottom: 10px; }
.spotlight-body p { color: #4a4a3f; margin-bottom: 18px; }
.spotlight-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.spotlight-stats .stat {
  background: var(--sand-light);
  border: 1px solid var(--sand);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest-dark);
}
@media (max-width: 760px) {
  .spotlight-card { grid-template-columns: 1fr; }
  .spotlight-media { min-height: 260px; border-radius: 12px 12px 0 0; }
  .spotlight-body { padding: 28px 24px; }
}

/* Platform-term tooltips — small explainer on hover/focus for brands
   unfamiliar with TikTok/IG terminology */
.term {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted #9a8f72;
  cursor: help;
}
.term::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest-dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: normal;
  width: max-content;
  max-width: 200px;
  padding: 8px 10px;
  border-radius: 6px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s;
  z-index: 20;
  pointer-events: none;
}
.term::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--forest-dark);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s;
  z-index: 20;
}
.term:hover::after, .term:hover::before,
.term:focus::after, .term:focus::before {
  opacity: 1;
  visibility: visible;
}

/* Inline TikTok/IG embed modal */
.embed-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.embed-modal[hidden] { display: none; }
.embed-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24,32,24,0.75);
}
.embed-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  max-height: 90vh;
  overflow-y: auto;
}
.embed-modal-close {
  position: absolute;
  top: 6px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  color: var(--forest-dark);
}
.embed-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 280px;
  min-height: 200px;
  padding-top: 16px;
}
.embed-fallback-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blush-dark);
  text-decoration: underline;
}
.embed-loading {
  color: #8a7f66;
  font-size: 0.9rem;
}
