/* ============================================================
   Jackie Bajuk Virtual Operations — Site Stylesheet
   Palette: warm neutrals + forest/sage green accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --ivory: #FAFAF7;
  --paper: #FFFFFF;
  --sand: #F2F0EA;
  --sand-deep: #E6E2D8;
  --charcoal: #131209;
  --ink: #131209;
  --taupe: #857C6E;
  --forest: #3F615D;
  --forest-deep: #28403D;
  --sage: #82A099;
  --sage-pale: #E1E9E6;
  --gold: #C9BE84;
  --gold-deep: #A08A3F;
  --line: #E4E0D6;
  --radius: 2px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--taupe) var(--paper); }
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--taupe); border-radius: 5px; border: 2px solid var(--paper); background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: var(--forest); }

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Tonal texture: faint diagonal hairlines for sections that want a little more depth than flat white */
.texture {
  background-image: repeating-linear-gradient(135deg, rgba(19,18,9,0.03) 0px, rgba(19,18,9,0.03) 1px, transparent 1px, transparent 13px);
}

/* Reusable curved-line decorative accent (thin arcs) — purely tonal, no animation */
.curve-accent { position: absolute; pointer-events: none; z-index: 0; }
.curve-accent svg { display: block; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }
em, .accent { font-style: italic; color: var(--forest); }

p { margin: 0 0 1.1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 12px;
}
.eyebrow::after {
  content: "";
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 34px; height: 2px; background: var(--gold);
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section--sand { background: var(--sand); background-image: repeating-linear-gradient(135deg, rgba(19,18,9,0.028) 0px, rgba(19,18,9,0.028) 1px, transparent 1px, transparent 13px); }
.section--forest { background: var(--forest); color: var(--ivory); }
.section--forest h2, .section--forest h1 { color: var(--ivory); }
.section--tight { padding: 64px 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--forest);
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn--primary { background: var(--forest); color: var(--ivory); }
.btn--primary:hover { background: var(--forest-deep); border-color: var(--forest-deep); }
.btn--outline { background: transparent; color: var(--forest); }
.btn--outline:hover { background: var(--forest); color: var(--ivory); }
.btn--light { border-color: var(--ivory); color: var(--ivory); }
.btn--light:hover { background: var(--ivory); color: var(--forest); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--gold);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; padding-bottom: 20px;
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.logo span { display: block; font-family: 'Jost', sans-serif; font-size: 0.6rem; letter-spacing: 0.22em; color: var(--taupe); text-transform: uppercase; margin-top: 2px; }
.site-header .logo img { display: block; height: 52px; width: auto; }
footer.site-footer .logo img { display: block; height: 92px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.hero-art:has(img) { padding: 24px; align-items: center; }
.hero-art img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; display: block; margin: 0 auto; }
.res-card .thumb-img { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; border: 1px solid var(--line); }
.res-card .thumb-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
nav.main-nav { display: flex; align-items: center; gap: 36px; }
nav.main-nav a {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  color: var(--charcoal); padding-bottom: 4px; border-bottom: 1px solid transparent;
}
nav.main-nav a:hover, nav.main-nav a.active { border-color: var(--forest); color: var(--forest); }
nav.main-nav .btn { margin-left: 4px; }

/* Hero */
.hero {
  padding: 90px 0 100px;
  background-image: url('assets/logo-icon-watermark.png'), linear-gradient(180deg, var(--ivory) 0%, var(--sand) 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: right -40px bottom -60px, center;
  background-size: 380px auto, cover;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: var(--sage-pale); opacity: 0.5; z-index: 0;
}
.hero::before {
  content: "";
  position: absolute; left: -160px; bottom: -200px;
  width: 380px; height: 380px; border-radius: 50%;
  border: 1px solid var(--gold-deep); opacity: 0.3; z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.hero p.lede { font-size: 1.15rem; color: #4a463d; max-width: 46ch; }
.hero-actions { display: flex; gap: 18px; margin-top: 34px; flex-wrap: wrap; }
.hero-art {
  aspect-ratio: 4/5; background: var(--sand-deep);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--taupe); font-size: 0.85rem; text-align: center; padding: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
}

/* Stat bar */
.stat-bar {
  display: flex; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat-bar .stat { flex: 1; text-align: center; padding: 34px 20px; border-right: 1px solid var(--line); }
.stat-bar .stat:last-child { border-right: none; }
.stat .num { font-family: 'Fraunces', serif; font-size: 2.2rem; color: var(--forest); }
.stat .label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe); margin-top: 6px; }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.card {
  background: var(--paper); padding: 40px 34px; border-radius: var(--radius);
  border: 1px solid var(--line);
}
.card h3 { margin-bottom: 12px; }
.card p { color: #514d43; font-size: 0.98rem; margin-bottom: 0; }

.pain-point { display: flex; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.pain-point .num { font-family: 'Fraunces', serif; font-style: italic; color: var(--sage); font-size: 1.3rem; min-width: 34px; }
.pain-point h3 { margin-bottom: 6px; font-size: 1.1rem; }
.pain-point p { color: #514d43; margin-bottom: 0; font-size: 0.97rem; }

/* Process */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; counter-reset: step; }
.process-steps .step { position: relative; padding-top: 8px; }
.process-steps .step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: 'Fraunces', serif; font-style: italic; font-size: 2.6rem; color: var(--sage);
  display: block; margin-bottom: 10px;
}

/* Testimonials */
.testi { background: var(--paper); border: 1px solid var(--line); padding: 36px; border-radius: var(--radius); }
.testi p.quote { font-family: 'Fraunces', serif; font-size: 1.15rem; font-style: italic; color: var(--charcoal); }
.testi .who { font-size: 0.8rem; letter-spacing: 0.05em; color: var(--taupe); margin-top: 16px; text-transform: uppercase; }
.testi .who strong { display: block; color: var(--forest); font-style: normal; text-transform: none; font-family: 'Fraunces', serif; font-size: 1rem; }

/* Pricing / service cards */
.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px 38px; display: flex; flex-direction: column; height: 100%;
}
.svc-card.featured { border-color: var(--forest); box-shadow: 0 0 0 1px var(--forest); }
.svc-card .type { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); margin-bottom: 10px; }
.svc-card .price { font-family: 'Fraunces', serif; font-size: 2rem; color: var(--gold-deep); margin: 14px 0; }
.svc-card ul { list-style: none; padding: 0; margin: 20px 0 28px; }
.svc-card li { padding: 8px 0; border-top: 1px solid var(--line); font-size: 0.95rem; }
.svc-card li:first-child { border-top: none; }
.svc-card .ideal { font-size: 0.92rem; font-style: italic; color: #514d43; margin-bottom: 20px; }
.svc-card .btn { margin-top: auto; text-align: center; justify-content: center; }

/* Resource cards */
.res-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.res-card .tag { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--forest); font-weight: 600; }

.card .try-link {
  display: inline-block; margin-top: 16px;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  color: var(--forest); border-bottom: 1px solid var(--gold); padding-bottom: 3px;
}
.card .try-link:hover { color: var(--forest-deep); border-color: var(--gold-deep); }
.link-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.link-list li { border-bottom: 1px solid var(--line); }
.link-list a { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 13px 2px; color: #3a382f; font-size: 0.97rem; }
.link-list a:hover { color: var(--forest); }
.link-list a::after { content: "\2192"; color: var(--gold-deep); font-size: 0.9rem; flex: none; }

/* Form embed placeholder */
.embed-box {
  border: 1px dashed var(--taupe); border-radius: var(--radius); background: var(--paper);
  padding: 40px; text-align: center; color: var(--taupe); font-size: 0.9rem;
}
.embed-box strong { display: block; color: var(--charcoal); font-family: 'Jost'; margin-bottom: 8px; font-size: 0.95rem; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.post-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.post-card .thumb { aspect-ratio: 16/10; background: var(--sand-deep); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-cover { width: 100%; aspect-ratio: 16/9; overflow: hidden; border-bottom: 1px solid var(--line); }
.post-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card .body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.post-card .cat { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); font-weight: 600; margin-bottom: 10px; }
.post-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.post-card p { font-size: 0.92rem; color: #514d43; flex: 1; }
.post-card .date { font-size: 0.78rem; color: var(--taupe); margin-top: 14px; }
.post-card a.stretched { position: relative; }

/* Footer */
footer.site-footer { background: var(--ink); color: var(--sand); padding: 72px 0 32px; border-top: 3px solid var(--gold); position: relative; overflow: hidden; }
footer.site-footer::before {
  content: ""; position: absolute; left: -120px; bottom: -180px;
  width: 340px; height: 340px; border-radius: 50%;
  border: 1px solid rgba(201,190,132,0.25); z-index: 0;
}
footer.site-footer .wrap { position: relative; z-index: 1; }
footer.site-footer a { color: var(--sand); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
footer.site-footer h4 { color: var(--ivory); font-family: 'Jost'; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
footer.site-footer ul { list-style: none; padding: 0; margin: 0; }
footer.site-footer li { margin-bottom: 10px; font-size: 0.92rem; opacity: 0.85; }
footer.site-footer li a:hover { color: var(--sage-pale); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; display: flex; justify-content: space-between; font-size: 0.8rem; opacity: 0.65; flex-wrap: wrap; gap: 10px; }

/* Utility */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-lg { margin-top: 56px; }
.small { font-size: 0.85rem; color: var(--taupe); }

/* Article / blog post */
.post-hero {
  padding: 64px 0 48px; background-color: var(--sand);
  background-image: url('assets/logo-icon-watermark.png'), repeating-linear-gradient(135deg, rgba(19,18,9,0.028) 0px, rgba(19,18,9,0.028) 1px, transparent 1px, transparent 13px);
  background-repeat: no-repeat, repeat;
  background-position: right -20px bottom -40px, 0 0;
  background-size: 220px auto, auto;
  text-align: center; position: relative; overflow: hidden;
}
.post-hero::before {
  content: ""; position: absolute; right: -140px; top: -160px;
  width: 320px; height: 320px; border-radius: 50%;
  border: 1px solid var(--gold-deep); opacity: 0.28; z-index: 0;
}
.post-hero .wrap { position: relative; z-index: 1; }
.post-hero .wrap > * { margin-left: auto; margin-right: auto; }
.post-hero .back { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--forest); font-weight: 600; margin-bottom: 22px; display: block; }
.post-hero .meta { font-size: 0.8rem; color: var(--taupe); margin-top: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.post-hero h1 { max-width: 22ch; }
.post-hero .lede { max-width: 52ch; }
.article-body { max-width: 72ch; margin: 0 auto; padding: 72px 32px; }
.article-body h2 { font-size: 1.6rem; margin-top: 1.6em; padding-top: 0.5em; position: relative; }
.article-body h2::before { content: ""; position: absolute; top: 0; left: 0; width: 40px; height: 3px; background: var(--gold); }
.article-body h3 { font-size: 1.2rem; margin-top: 1.4em; color: var(--forest); }
.article-body p { color: #3a382f; }
.article-body > p:first-of-type::first-letter {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 3.4em; line-height: 0.8;
  float: left; margin: 0.06em 0.09em 0 0; color: var(--forest);
}
.article-body ul, .article-body ol { color: #3a382f; padding-left: 1.3em; margin-bottom: 1.1em; }
.article-body li { margin-bottom: 0.4em; }
.article-body blockquote { border-left: 3px solid var(--gold); margin: 1.6em 0; padding: 4px 0 4px 22px; font-family: 'Fraunces', serif; font-style: italic; font-size: 1.15rem; color: var(--forest-deep); }
.article-body a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.article-body a.btn { text-decoration: none; }
.article-body a.btn--primary { color: var(--ivory); }
.article-body a.btn--outline { color: var(--forest); }
.article-body strong { color: var(--charcoal); }
.callout {
  background: var(--sand);
  background-image: repeating-linear-gradient(135deg, rgba(19,18,9,0.03) 0px, rgba(19,18,9,0.03) 1px, transparent 1px, transparent 13px);
  border: 1px solid var(--line); border-left: 3px solid var(--gold-deep);
  border-radius: var(--radius); padding: 26px 28px; margin: 1.8em 0;
}
.callout p:last-child, .callout ul:last-child, .callout ol:last-child { margin-bottom: 0; }
.callout .label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--forest); font-weight: 600; display: block; margin-bottom: 10px; }
.divider { border: none; height: 1px; background: var(--line); margin: 3em auto; width: 60%; position: relative; }
.divider::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.article-cta {
  background: var(--sand);
  background-image: repeating-linear-gradient(135deg, rgba(19,18,9,0.03) 0px, rgba(19,18,9,0.03) 1px, transparent 1px, transparent 13px);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 36px; margin-top: 48px; text-align: center;
  position: relative; overflow: hidden;
}
.article-cta::before { content:""; position:absolute; right:-90px; bottom:-100px; width:220px; height:220px; border-radius:50%; border:1px solid var(--gold-deep); opacity:0.25; z-index:0; }
.article-cta > * { position: relative; z-index: 1; }
.article-cta h3 { margin-bottom: 10px; }

@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2, .process-steps, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
  .stat-bar { flex-direction: column; }
  .stat-bar .stat { border-right: none; border-bottom: 1px solid var(--line); }
}
