/* ============================================================
   Contenta — subpage stylesheet
   Shared by /privacy-policy, /cookie-policy, /accessibility
   Mirrors the homepage nav + footer; adds prose styles.
   ============================================================ */

:root{
  --ink:        #0E0C0A;
  --ink-2:      #15110D;
  --ink-3:      #1F1A14;
  --cream:      #ECE3D1;
  --paper:      #F6F1E5;
  --paper-2:    #EFE8D8;
  --gold:       #C9A876;
  --gold-soft:  #E0C798;
  --ember:      #D8855B;
  --line:       rgba(236,227,209,0.14);
  --line-strong:rgba(236,227,209,0.28);
  --line-paper: rgba(14,12,10,0.14);
  --line-paper-soft: rgba(14,12,10,0.08);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; background:var(--paper); }
body{
  background: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before{
  content:''; position:fixed; inset:0; z-index:9999; pointer-events:none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.045 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.85;
  mix-blend-mode: overlay;
}

.display{
  font-family: 'Fraunces', serif;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.98;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.display .it{
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.eyebrow{
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}

.wrap{ max-width: 1480px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); position:relative; }

/* ===== TOP NAV (mirrors homepage) ===== */
nav.top{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14,12,10,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .4s ease;
}
nav.top .inner{
  max-width: 1480px; margin: 0 auto;
  padding: 22px clamp(20px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo{
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1;
}
.logo-mark{
  width: 38px; height: 38px;
  display: block;
  flex-shrink: 0;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.logo:hover .logo-mark{ transform: rotate(45deg); }
.logo-text{ display: flex; flex-direction: column; line-height: 1; }
.logo .name{
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.34em;
}
.logo .sub{
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 5px;
  font-weight: 500;
}
.nav-links{ list-style: none; display: flex; gap: 30px; }
.nav-links a{
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color .25s ease;
}
.nav-links a::after{
  content:''; position:absolute; bottom:-2px; left:0;
  width:0; height:1px; background: var(--gold);
  transition: width .35s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:hover{ color: var(--gold-soft); }
.nav-links a:hover::after{ width:100%; }
.nav-cta{
  border: 1px solid var(--cream);
  color: var(--cream);
  padding: 12px 22px;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .35s ease;
  background: transparent;
}
.nav-cta:hover{ background: var(--cream); color: var(--ink); }
.menu-btn{ display:none; background: transparent; border: none; cursor: pointer; padding: 8px; }
@media (max-width: 1180px){
  .nav-links{ display: none; }
  .nav-cta{ display: none; }
  .menu-btn{ display: block; }
}

/* ===== PAGE HERO ===== */
.page-hero{
  background: var(--ink);
  color: var(--cream);
  padding: clamp(150px, 18vh, 220px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.page-hero::before{
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(700px 320px at 80% 20%, rgba(201,168,118,0.12), transparent 60%),
    radial-gradient(500px 280px at 10% 80%, rgba(216,133,91,0.08), transparent 60%);
}
.page-hero .wrap{ position: relative; z-index: 2; }
.page-hero-eyebrow-row{
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.page-hero-eyebrow-row .dot{
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,118,0.7);
}
.page-hero-eyebrow-row .line-h{ width: 56px; height: 1px; background: rgba(236,227,209,0.4); }
.page-hero h1{
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--cream);
  max-width: 1100px;
  margin-bottom: 24px;
}
.page-hero h1 .it{
  color: var(--gold-soft);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.page-hero .meta{
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(236,227,209,0.55);
}

/* ===== PROSE ===== */
.prose-section{
  background: var(--paper);
  color: var(--ink);
  padding: clamp(70px, 10vw, 140px) 0;
}
.prose{
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(14,12,10,0.82);
}
.prose .lede{
  font-size: 1.18rem;
  line-height: 1.55;
  color: rgba(14,12,10,0.92);
  margin-bottom: 48px;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  letter-spacing: -0.005em;
  font-style: italic;
}
.prose h2{
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  letter-spacing: -0.012em;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 56px;
  margin-bottom: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line-paper);
}
.prose h2:first-child{ margin-top: 0; padding-top: 0; border-top: none; }
.prose h2 .num{
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 8px;
  font-variation-settings: "opsz" 14, "SOFT" 100;
}
.prose h3{
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.18rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 10px;
}
.prose p{ margin-bottom: 18px; }
.prose ul, .prose ol{ margin: 0 0 22px 0; padding-left: 24px; }
.prose li{ margin-bottom: 8px; }
.prose li::marker{ color: var(--ember); }
.prose strong{ color: var(--ink); font-weight: 600; }
.prose a{
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ember);
  transition: color .25s ease, border-color .25s ease;
}
.prose a:hover{ color: var(--ember); }
.prose .callout{
  background: var(--paper-2);
  border-left: 2px solid var(--ember);
  padding: 22px 26px;
  margin: 28px 0;
  font-size: 0.96rem;
  color: rgba(14,12,10,0.78);
}
.prose .updated{
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line-paper);
  font-size: 0.84rem;
  color: rgba(14,12,10,0.55);
  font-style: italic;
}

.prose-pages-nav{
  margin-top: 80px;
  padding-top: 36px;
  border-top: 1px solid var(--line-paper);
}
.prose-pages-nav-label{
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(14,12,10,0.5);
  font-weight: 500;
  margin-bottom: 14px;
}
.prose-pages-nav ul{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.prose-pages-nav a{
  font-size: 0.86rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .25s ease, color .25s ease;
  letter-spacing: 0.02em;
}
.prose-pages-nav a:hover,
.prose-pages-nav a[aria-current="page"]{
  border-color: var(--ember);
  color: var(--ember);
}

/* ===== FOOTER (mirrors homepage) ===== */
footer{
  background: var(--ink-2);
  color: var(--cream);
  padding: clamp(70px, 9vw, 110px) 0 30px;
  border-top: 1px solid var(--line);
}
.foot-grid{
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
  gap: clamp(20px, 3vw, 50px);
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px){ .foot-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .foot-grid{ grid-template-columns: 1fr; } }

.foot-brand-row{
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.foot-brand-row img{ width: 44px; height: 44px; display: block; flex-shrink: 0; }
.foot-brand .mark{
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.34em;
  margin-bottom: 6px;
  line-height: 1;
}
.foot-brand .submark{
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.55;
  font-weight: 500;
  line-height: 1;
}
.foot-brand p{
  font-size: 0.92rem;
  color: rgba(236,227,209,0.6);
  max-width: 320px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.credentials-label{
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(236,227,209,0.4);
  margin-bottom: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.badges-row{
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.badges-row a{ display: inline-flex; line-height: 0; text-decoration: none; }
.badges-row img{
  display: block; width: auto; height: 48px;
  opacity: 0.5;
  transition: opacity .4s ease;
}
.badges-row img:hover,
.badges-row a:hover img,
.badges-row a:focus-visible img{ opacity: 0.95; }
.badges-row a:focus-visible{ outline: 1px solid var(--gold-soft); outline-offset: 6px; }

.foot-col h4{
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(236,227,209,0.5);
  margin-bottom: 18px;
}
.foot-col ul{ list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a{
  color: var(--cream);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color .25s ease;
}
.foot-col a:hover{ color: var(--gold-soft); }

/* ============================================================
   SHARED BUTTONS — used across subpages
   ============================================================ */
.btn-cream{
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--cream);
  color: var(--ink);
  text-decoration: none;
  padding: 19px 32px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--cream);
  transition: background .35s ease, border-color .35s ease, color .35s ease;
  cursor: pointer;
  font-family: inherit;
}
.btn-cream:hover{ background: var(--gold-soft); border-color: var(--gold-soft); }

.btn-outline{
  display: inline-flex; align-items: center; gap: 14px;
  background: transparent;
  color: var(--cream);
  text-decoration: none;
  padding: 19px 32px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(236,227,209,0.5);
  transition: border-color .35s ease, background .35s ease;
  font-family: inherit;
}
.btn-outline:hover{ border-color: var(--cream); background: rgba(236,227,209,0.06); }

/* ============================================================
   BLOG INDEX + ARTICLE PAGES
   ============================================================ */
.blog-index{
  background: var(--paper);
  padding: clamp(70px, 10vw, 130px) 0 clamp(80px, 12vw, 140px);
}
.blog-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 56px);
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 760px){ .blog-grid{ grid-template-columns: 1fr; } }
.blog-card{
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.blog-card:hover{ transform: translateY(-3px); }
.blog-card-photo{
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 24px;
  background: rgba(14,12,10,0.05);
}
.blog-card-photo img{
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.blog-card:hover .blog-card-photo img{ transform: scale(1.04); }
.blog-card-date{
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--ember);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.blog-card h2{
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  letter-spacing: -0.012em;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--ink);
}
.blog-card p{
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(14,12,10,0.7);
  margin-bottom: 18px;
}
.blog-card-link{
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color .25s ease, border-color .25s ease;
}
.blog-card-link::after{ content: ' \2192'; color: var(--ember); }
.blog-card:hover .blog-card-link{ color: var(--ember); border-color: var(--ember); }

/* Blog article (single post) */
.blog-article-hero{
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: clamp(150px, 18vh, 220px) 0 clamp(40px, 5vw, 70px);
}
.blog-article-hero .meta-row{
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
  color: rgba(236,227,209,0.6);
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 500;
}
.blog-article-hero .meta-row .dot{
  width: 7px; height: 7px; border-radius: 999px; background: var(--gold);
}
.blog-article-hero h1{
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--cream);
  max-width: 1100px;
  margin-bottom: 28px;
}
.blog-article-hero .meta{
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(236,227,209,0.55);
}
.blog-article-image{
  background: var(--ink);
}
.blog-article-image img{
  display: block;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: auto;
}
.blog-article-prev-next{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 760px;
  margin: 56px auto 0;
  padding-top: 36px;
  border-top: 1px solid var(--line-paper);
  flex-wrap: wrap;
}
.blog-prev, .blog-next{
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: var(--ink);
  max-width: 320px;
  transition: color .25s ease;
}
.blog-next{ text-align: right; margin-left: auto; }
.blog-prev:hover, .blog-next:hover{ color: var(--ember); }
.blog-prev-label, .blog-next-label{
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(14,12,10,0.45);
}
.blog-prev-title, .blog-next-title{
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.25;
  letter-spacing: -0.005em;
}

/* ============================================================
   CONTACT PAGE — split layout (info + form)
   ============================================================ */
.contact-section{
  background: var(--paper);
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 12vw, 140px);
}
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(36px, 5vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 760px){
  .contact-grid{ grid-template-columns: 1fr; }
}
.contact-info{
  position: sticky;
  top: 110px;
}
@media (max-width: 760px){
  .contact-info{ position: static; top: auto; }
}
.contact-info h2{
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 22px;
}
.contact-info h2 .it{
  color: var(--ember);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.contact-info > p{
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(14,12,10,0.75);
  margin-bottom: 32px;
}
.contact-block{
  padding: 20px 0;
  border-top: 1px solid var(--line-paper-soft);
}
.contact-block:first-of-type{ border-top: 1px solid var(--line-paper); }
.contact-block-label{
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(14,12,10,0.55);
  margin-bottom: 8px;
}
.contact-block a{
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.18rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ember);
  transition: color .25s ease;
}
.contact-block a:hover{ color: var(--ember); }
.contact-block .value-plain{
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.contact-social-row{
  display: flex; gap: 14px;
  margin-top: 24px;
}
.contact-social-row a{
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(14,12,10,0.18);
  border-radius: 999px;
  color: rgba(14,12,10,0.6);
  border-bottom: 1px solid rgba(14,12,10,0.18);
  transition: all .3s ease;
}
.contact-social-row a:hover{
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.contact-social-row a svg{ width: 18px; height: 18px; display: block; }

.contact-form-wrap{
  background: var(--paper-2);
  border: 1px solid var(--line-paper);
  padding: clamp(28px, 4vw, 48px);
}
.contact-form-wrap h3{
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 12px;
  padding-top: 14px;
  border-top: 3px solid var(--ember);
}
.contact-form-wrap p.lede{
  font-size: 0.96rem;
  color: rgba(14,12,10,0.7);
  line-height: 1.6;
  margin-bottom: 26px;
}

/* ============================================================
   SERVICE DETAIL SUBPAGES — categories within one service
   ============================================================ */
.service-detail-section{
  background: var(--paper-2);
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--line-paper-soft);
}
.service-detail-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--line-paper-soft);
  border: 1px solid var(--line-paper-soft);
}
.service-detail-card{
  background: var(--paper);
  padding: clamp(30px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) 1fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: start;
}
@media (max-width: 760px){
  .service-detail-card{ grid-template-columns: 1fr; gap: 12px; }
}
.service-detail-num{
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--ember);
  letter-spacing: 0.06em;
  padding-top: 6px;
}
.service-detail-card h2{
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  letter-spacing: -0.012em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 12px;
  grid-column: 2;
}
@media (max-width: 760px){
  .service-detail-card h2{ grid-column: 1; margin-top: 4px; }
}
.service-detail-card p{
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(14,12,10,0.75);
  margin: 0;
  grid-column: 2;
}
@media (max-width: 760px){
  .service-detail-card p{ grid-column: 1; }
}
.service-detail-back{
  margin-top: 48px;
  text-align: center;
}
.back-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  transition: color .25s ease, border-color .25s ease;
}
.back-link:hover{ color: var(--ember); border-color: var(--ember); }
.back-link .back-arrow{
  color: var(--ember);
  transition: transform .3s ease;
}
.back-link:hover .back-arrow{ transform: translateX(-4px); }

/* ============================================================
   PODCAST PAGE — episode list
   ============================================================ */
.podcast-episodes{
  background: var(--paper);
  padding: clamp(60px, 9vw, 110px) 0 clamp(80px, 12vw, 140px);
}
.episode-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 760px){ .episode-grid{ grid-template-columns: 1fr; } }
.episode-card{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(16px, 2vw, 26px);
  text-decoration: none;
  color: var(--ink);
  padding: clamp(18px, 2vw, 28px);
  background: var(--paper);
  border: 1px solid var(--line-paper-soft);
  align-items: start;
  transition: border-color .35s ease, transform .35s ease;
}
.episode-card:hover{
  border-color: var(--ink);
  transform: translateY(-2px);
}
@media (max-width: 540px){
  .episode-card{ grid-template-columns: 100px 1fr; gap: 14px; }
}
.episode-art-wrap{
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: rgba(14,12,10,0.05);
}
.episode-art{
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.episode-body{ display: flex; flex-direction: column; }
.episode-meta{
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(14,12,10,0.5);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.episode-card h3{
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  letter-spacing: -0.005em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-card p{
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(14,12,10,0.65);
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.episode-link{
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ember);
  margin-top: auto;
}

/* ============================================================
   SERVICES PAGE — hero image, intro, 4 service cards, CTA
   ============================================================ */
.services-hero{
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
  padding-top: 80px;
}
.services-hero .bg{
  position: absolute; inset: 0; z-index: -2; overflow: hidden;
}
.services-hero .bg img{
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.92) contrast(1.05);
}
.services-hero .vignette{
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(14,12,10,0.5) 0%, rgba(14,12,10,0.55) 50%, rgba(14,12,10,0.9) 100%);
}
.services-hero-inner{
  padding: clamp(70px, 10vw, 130px) 24px;
  max-width: 1100px;
  width: 100%;
}
.services-hero .eyebrow-row{
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.services-hero .eyebrow-row .dot{
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--gold); box-shadow: 0 0 12px rgba(201,168,118,0.7);
}
.services-hero .eyebrow-row .line-h{ width: 56px; height: 1px; background: rgba(236,227,209,0.4); }
.services-hero h1{
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5.4vw, 4.8rem);
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 32px;
}
.services-hero h1 .it{
  color: var(--gold-soft); font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.services-intro{
  background: var(--paper);
  padding: clamp(70px, 10vw, 130px) 0 clamp(40px, 6vw, 80px);
}
.services-intro p{
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  color: rgba(14,12,10,0.78);
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.005em;
}

.services-grid-section{
  background: var(--paper);
  padding: clamp(40px, 5vw, 80px) 0 clamp(80px, 12vw, 140px);
}
.services-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 760px){ .services-grid{ grid-template-columns: 1fr; } }

.service-card{
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-paper-soft);
  transition: border-color .35s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}
.service-card:hover{
  border-color: var(--ink);
  transform: translateY(-3px);
}
.service-card-photo{
  aspect-ratio: 3/2;
  overflow: hidden;
  background: rgba(14,12,10,0.05);
}
.service-card-photo img{
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.service-card:hover .service-card-photo img{ transform: scale(1.04); }

.service-card-body{
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
}
.service-card-num{
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--ember);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.service-card h2{
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: -0.012em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--ink);
}
.service-card h2 .it{ color: var(--ember); font-style: italic; }
.service-card-body p{
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(14,12,10,0.74);
  margin-bottom: 22px;
}
.service-card-body p strong{ color: var(--ink); font-weight: 600; }
.service-card-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  align-self: flex-start;
  transition: color .25s ease, border-color .25s ease;
}
.service-card:hover .service-card-link{
  color: var(--ember);
  border-color: var(--ember);
}
.service-card-link::after{
  content: '→';
  color: var(--ember);
  transition: transform .35s ease;
}
.service-card:hover .service-card-link::after{ transform: translateX(5px); }

/* Services CTA (dark) */
.services-cta{
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 11vw, 140px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.services-cta::before{
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(700px 320px at 80% 20%, rgba(201,168,118,0.10), transparent 60%),
    radial-gradient(500px 280px at 10% 80%, rgba(216,133,91,0.08), transparent 60%);
}
.services-cta-inner{
  max-width: 900px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.services-cta .eyebrow{
  color: rgba(236,227,209,0.6);
  margin-bottom: 22px;
  display: inline-block;
}
.services-cta h2{
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 24px;
}
.services-cta h2 .it{ color: var(--gold-soft); font-style: italic; }
.services-cta p{
  font-size: 1.05rem;
  color: rgba(236,227,209,0.78);
  max-width: 600px;
  margin: 0 auto 38px;
  line-height: 1.6;
}
.services-cta .btn-cream{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  color: var(--ink);
  text-decoration: none;
  padding: 19px 32px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--cream);
  transition: all .35s ease;
}
.services-cta .btn-cream:hover{ background: var(--gold-soft); border-color: var(--gold-soft); }

/* ============================================================
   WORKS PAGE — gallery (3-col masonry via CSS columns)
   ============================================================ */
.works-intro{
  background: var(--paper);
  padding: clamp(60px, 9vw, 110px) 0 clamp(36px, 5vw, 70px);
  text-align: center;
}
.works-intro h2{
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  max-width: 1000px;
  margin: 0 auto 28px;
}
.works-intro h2 .it{
  color: var(--ember);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.works-intro p{
  font-size: 1.04rem;
  line-height: 1.7;
  color: rgba(14,12,10,0.72);
  max-width: 680px;
  margin: 0 auto;
}

.works-gallery-section{
  background: var(--paper);
  padding: clamp(40px, 5vw, 80px) 0 clamp(80px, 12vw, 140px);
}
.gallery{
  column-count: 3;
  column-gap: clamp(10px, 1.4vw, 20px);
  max-width: 1480px;
  margin: 0 auto;
}
@media (max-width: 900px){ .gallery{ column-count: 2; } }
@media (max-width: 540px){ .gallery{ column-count: 1; } }

.gallery-item{
  break-inside: avoid;
  margin: 0 0 clamp(10px, 1.4vw, 20px);
  display: block;
  overflow: hidden;
  position: relative;
  background: rgba(14,12,10,0.04);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
}
.gallery-item.in{
  opacity: 1;
  transform: translateY(0);
}
.gallery-item img{
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .5s ease;
}
.gallery-item:hover img{
  transform: scale(1.04);
  filter: saturate(1.02) contrast(1.06);
}
.gallery-item::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,12,10,0) 60%, rgba(14,12,10,0.45) 100%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.gallery-item:hover::after{ opacity: 1; }

@media (prefers-reduced-motion: reduce){
  .gallery-item{ transition: opacity .3s ease; transform: none; }
  .gallery-item img{ transition: none; }
}

/* ============================================================
   CAREERS PAGE — intro + values + embedded application form
   ============================================================ */
.careers-intro{
  background: var(--paper);
  padding: clamp(70px, 10vw, 130px) 0 clamp(40px, 6vw, 70px);
}
.careers-intro-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 90px);
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 760px){ .careers-intro-grid{ grid-template-columns: 1fr; } }
.careers-intro h2{
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 22px;
}
.careers-intro h2 .it{
  color: var(--ember);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.careers-intro p{
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(14,12,10,0.78);
  margin-bottom: 18px;
}
.careers-values-label{
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(14,12,10,0.55);
  display: inline-block;
  padding-top: 10px;
  border-top: 1px solid var(--ink);
  margin-bottom: 22px;
}
.careers-values{
  list-style: none;
  padding: 0;
  margin: 0;
}
.careers-values li{
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(14,12,10,0.8);
  padding: 16px 0 16px 28px;
  border-top: 1px solid var(--line-paper-soft);
  position: relative;
}
.careers-values li::before{
  content: '';
  position: absolute;
  left: 0; top: 23px;
  width: 12px; height: 1px;
  background: var(--ember);
}
.careers-values li:first-child{ border-top: none; }

.careers-form-section{
  background: var(--paper-2);
  padding: clamp(60px, 9vw, 110px) 0 clamp(80px, 11vw, 140px);
  border-top: 1px solid var(--line-paper-soft);
}
.careers-form-grid{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px){
  .careers-form-grid{ grid-template-columns: 1fr; }
}
.careers-form-wrap{
  background: var(--paper);
  border: 1px solid var(--line-paper);
  padding: clamp(32px, 4vw, 52px);
  margin: 0;
  max-width: none;
}
.careers-sidebar{
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (max-width: 900px){
  .careers-sidebar{ position: static; top: auto; }
}
.sidebar-block{ }
.sidebar-eyebrow{
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(14,12,10,0.55);
  display: inline-block;
  padding-top: 10px;
  border-top: 1px solid var(--ink);
  margin-bottom: 16px;
}
.sidebar-title{
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--ink);
}
.sidebar-title .it{ color: var(--ember); font-style: italic; }
.sidebar-block > p{
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(14,12,10,0.75);
  margin: 0;
}
.sidebar-list,
.sidebar-timeline{
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-list li{
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(14,12,10,0.78);
  padding: 13px 0 13px 22px;
  border-top: 1px solid var(--line-paper-soft);
  position: relative;
}
.sidebar-list li::before{
  content: '';
  position: absolute;
  left: 0; top: 21px;
  width: 12px; height: 1px;
  background: var(--ember);
}
.sidebar-list li:first-child{ border-top: none; padding-top: 4px; }
.sidebar-list li:first-child::before{ top: 12px; }

.sidebar-timeline{ counter-reset: step; }
.sidebar-timeline li{
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(14,12,10,0.72);
  padding: 14px 0 14px 38px;
  border-top: 1px solid var(--line-paper-soft);
  position: relative;
  counter-increment: step;
}
.sidebar-timeline li::before{
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 16px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--ember);
}
.sidebar-timeline li:first-child{ border-top: none; padding-top: 4px; }
.sidebar-timeline li:first-child::before{ top: 6px; }
.sidebar-timeline li strong{
  color: var(--ink);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.careers-form-title{
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.45rem, 2.4vw, 1.75rem);
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 12px;
  padding-top: 16px;
  border-top: 3px solid var(--ember);
}
.careers-form-blurb{
  font-size: 0.96rem;
  color: rgba(14,12,10,0.72);
  line-height: 1.6;
  margin-bottom: 24px;
}
.form-required-note{
  font-size: 0.78rem;
  color: var(--ember);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-paper-soft);
}
.careers-form{
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.form-row{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row > label{
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.form-row .req{
  color: var(--ember);
  margin-left: 2px;
  font-weight: 600;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea{
  width: 100%;
  padding: 12px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 0.98rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(14,12,10,0.25);
  border-radius: 0;
  transition: border-color .25s ease;
}
.form-row input::placeholder,
.form-row textarea::placeholder{
  color: rgba(14,12,10,0.35);
}
.form-row input:focus,
.form-row textarea:focus{
  outline: none;
  border-bottom-color: var(--ember);
}
.form-row textarea{
  min-height: 90px;
  resize: vertical;
  line-height: 1.5;
}
.form-grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
@media (max-width: 600px){ .form-grid-2{ grid-template-columns: 1fr; gap: 26px; } }
.form-hint{
  font-size: 0.82rem;
  color: rgba(14,12,10,0.6);
  margin: 4px 0 8px;
  line-height: 1.5;
}
.form-file input[type="file"]{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
.form-file-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: transparent;
  border: 1px solid rgba(14,12,10,0.25);
  font-size: 0.78rem;
  color: var(--ink);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
}
.form-file-btn:hover{
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.form-file-btn svg{ width: 14px; height: 14px; }
.form-file-name{
  display: inline-block;
  font-size: 0.84rem;
  color: var(--ember);
  margin-left: 12px;
  font-style: italic;
}
.form-checkbox{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--ink);
  cursor: pointer;
  padding: 4px 0;
  user-select: none;
}
.form-checkbox input{
  width: 18px; height: 18px;
  cursor: pointer;
  accent-color: var(--ember);
}
.form-submit{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  padding: 18px 36px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
  align-self: flex-start;
  margin-top: 18px;
  font-family: inherit;
}
.form-submit:hover{
  background: var(--ember);
  border-color: var(--ember);
}
.form-submit:disabled{
  opacity: 0.6;
  cursor: not-allowed;
}
.form-status{
  margin-top: 18px;
  padding: 18px 22px;
  font-size: 0.94rem;
  display: none;
  background: var(--paper-2);
  border-left: 2px solid var(--ember);
  line-height: 1.55;
}
.form-status.show{ display: block; }
.form-status.success{ border-left-color: #4a7e54; }
.form-status.error{ border-left-color: #c44545; }
.form-status strong{ color: var(--ink); }

/* ============================================================
   TEAM PAGE — featured founder + member grid + closer CTA
   ============================================================ */

.team-founder{
  background: var(--paper);
  padding: clamp(80px, 11vw, 140px) 0;
}
.team-founder-grid{
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px){ .team-founder-grid{ grid-template-columns: 1fr; } }
.team-founder-photo{
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(160deg, #d6c5ad, #8a7560);
}
.team-founder-photo img{
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.92) contrast(1.02);
}
.team-founder-eyebrow{
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(14,12,10,0.55);
  display: inline-block;
  padding-top: 10px;
  border-top: 1px solid var(--ink);
  margin-bottom: 22px;
}
.team-founder-content h2{
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin-bottom: 6px;
  color: var(--ink);
}
.team-founder-content h2 .it{
  color: var(--ember);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* Member shared (used on founder + team cards) */
.member-role{
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ember);
  display: inline-block;
  margin-bottom: 22px;
}
.member-intro{
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(14,12,10,0.75);
  margin-bottom: 28px;
}
.member-facts{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  border-top: 1px solid var(--line-paper-soft);
  padding-top: 22px;
}
.member-facts > div{
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: baseline;
}
@media (max-width: 600px){
  .member-facts > div{
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.member-facts dt{
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(14,12,10,0.5);
  font-family: 'Manrope', sans-serif;
}
.member-facts dd{
  font-size: 0.94rem;
  color: rgba(14,12,10,0.78);
  line-height: 1.55;
}
.member-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color .25s ease, border-color .25s ease;
}
.member-link:hover{ color: var(--ember); border-color: var(--ember); }
.member-link .arr{ color: var(--ember); transition: transform .3s ease; }
.member-link:hover .arr{ transform: translate(2px, -2px); }

/* Mantra callout (Jane only) */
.member-mantra{
  margin-top: 0;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: var(--paper-2);
  border-left: 2px solid var(--ember);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.member-mantra .lbl{
  display: block;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ember);
  margin-bottom: 6px;
}

/* Section divider above team grid */
.team-section-divider{
  background: var(--paper-2);
  padding: clamp(70px, 10vw, 120px) 0 clamp(40px, 5vw, 60px);
  border-top: 1px solid var(--line-paper-soft);
  text-align: center;
}
.team-section-divider .eyebrow-line{
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
  color: rgba(14,12,10,0.55);
}
.team-section-divider .eyebrow-line .dot{
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--ember);
}
.team-section-divider .eyebrow-line .line-h{
  width: 56px; height: 1px; background: rgba(14,12,10,0.3);
}
.team-section-divider h2{
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto;
}
.team-section-divider h2 .it{
  color: var(--ember);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* Team grid */
.team-grid-section{
  background: var(--paper-2);
  padding: 0 0 clamp(80px, 12vw, 140px);
}
.team-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
}
@media (max-width: 900px){ .team-grid{ grid-template-columns: 1fr; } }

.team-card{
  background: var(--paper);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
}
.team-card-photo{
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 30px;
  background: rgba(14,12,10,0.05);
}
.team-card-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.03);
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
.team-card:hover .team-card-photo img{ transform: scale(1.04); }

/* Header row: name on left, LinkedIn icon on right */
.team-card-header,
.team-founder-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.team-card-header h3,
.team-founder-header h2{
  margin: 0;
  flex: 1;
}

.team-card h3{
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.55rem, 2.4vw, 1.95rem);
  letter-spacing: -0.012em;
  line-height: 1.05;
  color: var(--ink);
  min-height: 1.05em;
}

/* LinkedIn brand mark — ember square, paper "in" letters via SVG cutouts */
.member-link-icon{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ember);          /* drives SVG fill — the square is ember */
  background: transparent;
  border: none;
  border-radius: 5px;
  flex-shrink: 0;
  text-decoration: none;
  margin-top: 4px;
  transition: color .3s cubic-bezier(.2,.8,.2,1), transform .3s ease;
}
.member-link-icon:hover{
  color: var(--ink);            /* hover: stamp goes deep ink */
  transform: translateY(-1px);
}
.member-link-icon:focus-visible{
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}
.member-link-icon svg{
  width: 100%;
  height: 100%;
  display: block;
}

/* Cross-card alignment — names + Background labels line up across the row */
.team-card .member-role{
  display: block;
  line-height: 1.4;
  min-height: 2.5em;
  margin-bottom: 22px;
}
.team-card .member-intro{
  min-height: 10.8rem;
}
@media (max-width: 900px){
  .team-card .member-intro{ min-height: 0; }
  .team-card .member-role{ min-height: 0; }
}

/* Team closer CTA (mirror of homepage closer with bg image) */
.team-closer{
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}
.team-closer .bg{
  position: absolute; inset: 0; z-index: -2; overflow: hidden;
}
.team-closer .bg img{
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.05);
  animation: tcKenburns 22s ease-in-out infinite alternate;
}
@keyframes tcKenburns{
  from{ transform: scale(1.0); }
  to  { transform: scale(1.08); }
}
.team-closer .vignette{
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(14,12,10,0.5) 0%, rgba(14,12,10,0.5) 50%, rgba(14,12,10,0.9) 100%);
}
.team-closer-inner{
  padding: clamp(70px, 10vw, 130px) 24px;
  max-width: 1100px;
  width: 100%;
}
.team-closer .eyebrow{
  color: rgba(236,227,209,0.7);
  margin-bottom: 22px;
  display: inline-block;
}
.team-closer h2{
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5.4vw, 4.8rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 28px;
}
.team-closer h2 .it{
  color: var(--gold-soft); font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.team-closer p{
  font-size: 1.05rem;
  color: rgba(236,227,209,0.82);
  max-width: 720px;
  margin: 0 auto 38px;
  line-height: 1.6;
}
.team-closer .btn-cream{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  color: var(--ink);
  text-decoration: none;
  padding: 19px 32px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--cream);
  transition: all .35s ease;
}
.team-closer .btn-cream:hover{
  background: var(--gold-soft); border-color: var(--gold-soft);
}
.team-closer .btn-cream .arr{ transition: transform .35s ease; }
.team-closer .btn-cream:hover .arr{ transform: translateX(5px); }
@media (prefers-reduced-motion: reduce){
  .team-closer .bg img{ animation: none; transform: none; }
}

/* ===== PODCAST WIDGET (footer column) ===== */
.podcast-widget{
  display: flex;
  width: 100%;
}
.podcast-card{
  display: inline-flex;
  gap: 20px;
  align-items: center;
  text-decoration: none;
  color: var(--cream);
  width: 100%;
  padding: 20px 22px 20px 20px;
  border: 1px solid rgba(236,227,209,0.12);
  background: rgba(236,227,209,0.025);
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}
.podcast-card:hover{
  background: rgba(236,227,209,0.06);
  border-color: rgba(236,227,209,0.28);
  transform: translateY(-1px);
}
.podcast-art-wrap{
  flex-shrink: 0;
  width: 112px; height: 112px;
  background: rgba(236,227,209,0.05);
  overflow: hidden;
  position: relative;
}
.podcast-art{
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0;
  transition: opacity .55s ease;
}
.podcast-widget[data-state="loaded"] .podcast-art,
.podcast-widget[data-state="fallback"] .podcast-art{ opacity: 1; }
.podcast-meta{
  display: flex; flex-direction: column; gap: 8px;
  flex: 1; min-width: 0;
}
.podcast-eyebrow{
  font-size: 0.64rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(236,227,209,0.5);
}
.podcast-title{
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.12rem;
  letter-spacing: -0.012em;
  line-height: 1.28;
  color: var(--cream);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.podcast-show{
  font-size: 0.82rem;
  color: rgba(236,227,209,0.6);
  letter-spacing: 0.04em;
}
.podcast-arrow{
  color: var(--gold-soft);
  font-size: 1.2rem;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
  transition: transform .3s ease;
}
.podcast-card:hover .podcast-arrow{ transform: translate(2px, -2px); }
.podcast-widget[data-state="loading"] .podcast-title,
.podcast-widget[data-state="loading"] .podcast-show{
  background: linear-gradient(90deg, rgba(236,227,209,0.06) 0%, rgba(236,227,209,0.16) 50%, rgba(236,227,209,0.06) 100%);
  background-size: 200% 100%;
  animation: pcSkeleton 1.6s ease-in-out infinite;
  color: transparent;
  border-radius: 2px;
}
.podcast-widget[data-state="loading"] .podcast-show{ max-width: 70%; }
@keyframes pcSkeleton{
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce){
  .podcast-widget[data-state="loading"] .podcast-title,
  .podcast-widget[data-state="loading"] .podcast-show{ animation: none; }
}
/* ===== FOOTER SOCIAL ICONS (bottom row) ===== */
.foot-social{
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.foot-social a{
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(236,227,209,0.55);
  transition: color .25s ease, transform .3s cubic-bezier(.2,.8,.2,1);
  text-decoration: none;
}
.foot-social a:hover{
  color: var(--gold-soft);
  transform: translateY(-2px);
}
.foot-social svg{ width: 18px; height: 18px; display: block; }

.foot-bottom-right{
  display: inline-flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.foot-bottom{
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 26px;
  flex-wrap: wrap; gap: 14px;
}
.foot-bottom .small{
  font-size: 0.74rem;
  color: rgba(236,227,209,0.5);
  letter-spacing: 0.04em;
}
.foot-bottom .legal{ display: flex; gap: 22px; flex-wrap: wrap; }
.foot-bottom .legal a{
  font-size: 0.74rem;
  color: rgba(236,227,209,0.55);
  text-decoration: none;
  transition: color .25s ease;
}
.foot-bottom .legal a:hover,
.foot-bottom .legal a[aria-current="page"]{ color: var(--cream); }
