/* =====================================================================
   DESIGN LATTICE — PAGE STYLES (client logos + About/Projects/Contact)
   Loaded on every page after styles.css.
   ===================================================================== */

/* ---------- SUB-PAGE HEADER (solid) + content offset ---------- */
.site-header.solid { position: fixed; background: rgba(246,245,241,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); }
.site-header.solid .brand,
.site-header.solid .menu-item > a, .site-header.solid .menu-item > span { color: var(--ink); }
.site-header.solid .hamburger span { background: var(--ink); }
.subpage { padding-top: var(--header-h); }

/* ---------- PROJECT-PAGE HEADER LOGO (left side, swaps per studio tab) ---------- */
.site-header .brand { display: flex; align-items: center; }
.site-header .brand-logo { display: block; height: clamp(40px, 6vw, 58px); width: auto; max-width: 260px; }
.site-header .brand-logo--design-hands { height: clamp(30px, 4.5vw, 43.5px); }

.page-head { padding: clamp(60px,9vw,120px) 32px clamp(28px,4vw,52px); max-width: 1400px; margin: 0 auto; }
.page-eyebrow { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #91836A; display: inline-flex; align-items: center; gap: 10px; }
.page-eyebrow::before { content: ""; width: 26px; height: 1px; background: #91836A; }
.page-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px,7vw,84px);
  letter-spacing: -0.02em; line-height: 1.02; margin-top: 18px; }
.page-lead { font-family: var(--font-body); font-size: clamp(16px,1.4vw,19px); color: var(--ink-soft);
  max-width: 60ch; margin-top: 22px; line-height: 1.7; }

/* =====================================================================
   ABOUT PAGE (Chalk Studio structure: hero + journey carousel + inspire + cards + cta + consult)
   ===================================================================== */

/* ---- HERO BANNER ---- */
.about-hero { position: relative; width: 100%; height: clamp(480px, 70vh, 680px); background-size: cover;
  background-position: center; background-attachment: fixed; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25)); }
.hero-content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 1; padding: 0 32px; }
.about-hero h1 { font-family: var(--font-display); font-weight: 300; font-size: clamp(28px,5vw,54px);
  line-height: 1.28; letter-spacing: -0.01em; color: #fff; text-align: center; max-width: 900px; }

/* ---- ABOUT PAGE (WordPress-style section layout, refined) ---- */
.subpage { padding-top: 0; }

.about__header { position: relative; width: 100%; }

.about__section { max-width: 1220px; margin: 0 auto; padding: clamp(40px,6vw,80px) clamp(28px,5vw,48px); }
.about__section:first-of-type { padding-top: clamp(70px,9vw,120px); padding-bottom: clamp(50px,7vw,100px); }

.about__section h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(36px,4.2vw,56px);
  letter-spacing: -0.015em; margin: 0 0 clamp(36px,5vw,52px); color: var(--ink); line-height: 1.15; }
.about__section h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(24px,2.8vw,40px);
  letter-spacing: -0.01em; margin: 0 0 clamp(16px,2vw,28px); color: var(--ink); line-height: 1.2; }
.about__section p { font-family: var(--font-body); font-size: clamp(14px,1.05vw,16px); line-height: 1.8;
  color: var(--ink-soft); margin: 0; }

strong { font-weight: 500; color: var(--ink); }

.about__section.has-2-columns { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px,9vw,120px); align-items: center; }
.about__section.has-3-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(40px,5vw,70px); }

.column { display: flex; flex-direction: column; justify-content: flex-start; }
.column.is-vertically-aligned-center { justify-content: center; }
.column.is-vertically-aligned-top { justify-content: flex-start; }

.about__image { overflow: hidden; border-radius: 6px; background: var(--beige); aspect-ratio: auto; }
.about__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1); display: block; }
.about__section:hover .about__image img { transform: scale(1.05); }
.about__image a { display: block; }

/* Responsive */
@media (max-width: 768px) {
  .about__section.has-2-columns,
  .about__section.has-3-columns { grid-template-columns: 1fr; gap: clamp(40px,6vw,60px); }
}

/* ---- JOURNEY (single static panel; scroll/click through years) ---- */
.journey-section { background: #ECE9DF; padding: clamp(48px,7vw,96px) clamp(20px,5vw,48px); }
.journey-panel { max-width: 1180px; margin: 0 auto; background: #fff; border: 1px solid rgba(18,17,17,0.12);
  border-radius: 4px; padding: clamp(28px,3.5vw,52px) clamp(24px,3.5vw,56px) clamp(36px,4.5vw,60px); }

.journey-panel-head { display: flex; align-items: center; gap: 20px; margin-bottom: clamp(28px,4vw,52px); }
.journey-panel-label { font-family: var(--font-display); font-size: clamp(15px,1.4vw,18px); color: var(--ink);
  letter-spacing: 0.01em; }
.journey-panel-head::after { content: ""; flex: 1; height: 1px; background: rgba(18,17,17,0.14); }

.journey-panel-body { display: grid; grid-template-columns: minmax(120px,0.7fr) 1.1fr 1.3fr;
  gap: clamp(24px,4vw,64px); align-items: start; min-height: clamp(240px,30vw,320px); overflow: hidden; }

/* Year list — vertical, active large & dark, others greyed */
.journey-years { display: flex; flex-direction: column; gap: clamp(10px,1.4vw,20px);
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1); will-change: transform; }
.journey-year { background: none; border: 0; cursor: pointer; text-align: left; padding: 0;
  font-family: var(--font-display); font-weight: 300; letter-spacing: -0.02em; line-height: 1;
  font-size: clamp(22px,2.6vw,32px); color: rgba(18,17,17,0.28);
  transition: color 0.4s var(--ease), opacity 0.4s var(--ease); }
.journey-year:hover { color: rgba(18,17,17,0.55); }
.journey-year.is-active { color: var(--ink); font-size: clamp(48px,6.2vw,80px); }

/* Detail — title + description, aligned to active year */
.journey-detail { padding-top: clamp(6px,1vw,14px); opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.journey-detail.is-shown { opacity: 1; transform: translateY(0); }
.journey-detail-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(18px,1.9vw,24px);
  letter-spacing: -0.01em; color: var(--ink); line-height: 1.25; margin: 0 0 clamp(12px,1.4vw,18px); }
.journey-detail-text { font-family: var(--font-body); font-size: clamp(13px,1.05vw,15px); line-height: 1.75;
  color: var(--ink-soft); margin: 0; max-width: 42ch; }

/* Media — stacked images, only active visible */
.journey-media { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 3px; background: #e8e8e3; }
.journey-media-item { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s var(--ease); }
.journey-media-item.is-active { opacity: 1; }
.journey-media-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 860px) {
  .journey-panel-body { grid-template-columns: auto 1fr; row-gap: clamp(20px,4vw,32px); min-height: 0; }
  .journey-media { grid-column: 1 / -1; order: 3; }
  .journey-year.is-active { font-size: clamp(40px,11vw,60px); }
}

/* ---- INSPIRE SECTION (beige outer, white text box in the middle) ---- */
.inspire-section { padding: clamp(80px,10vw,140px) 32px; background: #ECE9DF; overflow: hidden; }
.inspire-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr;
  gap: clamp(30px,4vw,70px); align-items: stretch; }
.inspire-img { width: 240px; aspect-ratio: 3/4; overflow: hidden; align-self: center;
  opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.inspire-img.is-visible { opacity: 1; transform: translateY(0); }
.inspire-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.inspire-img:hover img { transform: scale(1.06); }
.inspire-quote { font-family: var(--font-display); font-weight: 400; font-size: clamp(20px,2.4vw,32px);
  line-height: 1.35; color: var(--ink); text-align: center; width: clamp(280px,34vw,420px);
  letter-spacing: 0.01em; text-transform: uppercase; background: #ffffff;
  display: flex; align-items: center; justify-content: center; padding: clamp(24px,3.5vw,52px);
  opacity: 0; transform: translateY(36px); box-shadow: 0 0 0 rgba(18,17,17,0);
  transition: opacity .9s var(--ease), transform .9s var(--ease), box-shadow .5s var(--ease); }
.inspire-quote.is-visible { opacity: 1; transform: translateY(0); }
.inspire-quote.is-visible:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -28px rgba(18,17,17,0.3); }

/* ---- DESIGN LATTICE EDIT (blog/press cards + newsletter) ---- */
.edit-section { background: #ECE9DF; padding: clamp(56px,7vw,100px) 0 clamp(64px,8vw,110px); }
.edit-inner { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px,5vw,48px); }
.edit-head { display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-bottom: 18px; border-bottom: 1px solid rgba(18,17,17,0.16); margin-bottom: clamp(28px,3.5vw,44px); }
.edit-label { font-family: var(--font-display); font-size: clamp(15px,1.5vw,19px); color: var(--ink); }
.edit-nav { display: flex; align-items: center; gap: 16px; }
.edit-note { font-family: var(--font-body); font-size: 12px; color: var(--ink-soft); opacity: 0.8; }
.edit-arrow { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(18,17,17,0.3);
  background: none; color: var(--ink); font-size: 18px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; transition: background .3s var(--ease), color .3s var(--ease); }
.edit-arrow:hover { background: var(--ink); color: #fff; }

.edit-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 8px; scrollbar-width: none; cursor: grab; }
.edit-track::-webkit-scrollbar { display: none; }
.edit-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.edit-card { flex: 0 0 clamp(280px,30vw,400px); scroll-snap-align: start; }
.edit-card-img { aspect-ratio: 4/3; overflow: hidden; background: #e8e8e3; }
.edit-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); pointer-events: none; }
.edit-card:hover .edit-card-img img { transform: scale(1.05); }
.edit-card-meta { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
  color: #91836A; margin: 16px 0 8px; }
.edit-card-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(15px,1.4vw,19px);
  line-height: 1.4; color: var(--ink); margin: 0; }

.edit-subscribe { display: flex; justify-content: center; margin-top: clamp(36px,5vw,60px); }
.edit-subscribe input { width: min(520px,90%); padding: 15px 26px; border: 1px solid rgba(18,17,17,0.25);
  border-radius: 100px; background: transparent; font-family: var(--font-body); font-size: 14px; color: var(--ink);
  text-align: center; transition: border-color .3s var(--ease); }
.edit-subscribe input::placeholder { color: var(--ink-soft); opacity: 0.7; }
.edit-subscribe input:focus { outline: none; border-color: var(--ink); }

/* ---- BELIEVE / JOIN US ---- */
.believe-section { background: #faf9f6; text-align: center; padding: clamp(70px,9vw,130px) 32px; }
.believe-eyebrow { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.06em; color: #91836A;
  display: block; margin-bottom: clamp(18px,2.5vw,28px); }
.believe-heading { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px,4vw,52px);
  letter-spacing: 0.01em; text-transform: uppercase; color: var(--ink); line-height: 1.18;
  margin: 0 0 clamp(28px,4vw,44px); }
.believe-links { display: flex; gap: clamp(28px,5vw,64px); justify-content: center; flex-wrap: wrap; }
.believe-link { font-family: var(--font-body); font-size: 15px; color: var(--ink); border-bottom: 1px solid var(--ink);
  padding-bottom: 5px; transition: color .3s var(--ease), border-color .3s var(--ease); }
.believe-link:hover { color: #91836A; border-color: #91836A; }

/* ---- OVERSIZED BRAND WATERMARK ---- */
.brand-watermark { font-family: var(--font-display); font-weight: 400; text-align: center;
  font-size: clamp(48px,14vw,200px); letter-spacing: -0.02em; line-height: 1; color: rgba(18,17,17,0.07);
  padding: clamp(30px,5vw,70px) 16px; overflow: hidden; white-space: nowrap; user-select: none; background: #faf9f6; }

/* ---- PORTFOLIO CARDS ---- */
.portfolio-section { max-width: 1400px; margin: 0 auto; padding: clamp(80px,10vw,140px) 32px; }
.portfolio-section > h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(24px,2.8vw,38px);
  color: var(--head); text-align: center; margin-bottom: 54px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.portfolio-card { cursor: pointer; transition: transform .3s var(--ease); }
.portfolio-card:hover { transform: translateY(-4px); }
.card-image { aspect-ratio: 4/3; overflow: hidden; background: #e8e8e3; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.portfolio-card:hover .card-image img { transform: scale(1.06); }
.card-meta { padding: 20px 0; }
.card-meta h4 { font-family: var(--font-display); font-weight: 400; font-size: clamp(16px,1.4vw,20px);
  color: var(--ink); margin-bottom: 8px; }
.meta-text { font-family: var(--font-body); font-size: 13px; color: #91836A; letter-spacing: 0.06em;
  text-transform: uppercase; }

/* ---- CTA SECTION ---- */
.cta-section { background: var(--ink); color: #fff; text-align: center; padding: clamp(80px,10vw,140px) 32px; }
.cta-section h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px,3.8vw,50px);
  letter-spacing: -0.02em; margin-bottom: 36px; }
.cta-links { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.cta-link { font-family: var(--font-body); font-size: 15px; color: #fff; border-bottom: 1px solid #fff;
  padding-bottom: 6px; transition: color .3s var(--ease), border-color .3s var(--ease); }
.cta-link:hover { color: #D5D1C1; border-color: #D5D1C1; }

.about-statement { max-width: 1400px; margin: 0 auto; padding: clamp(70px,10vw,140px) 32px clamp(50px,7vw,100px); }
.about-statement .eyebrow-line { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: #91836A; margin-bottom: 30px; display: block; }
.about-statement h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px,3.4vw,46px);
  line-height: 1.28; letter-spacing: -0.01em; color: var(--ink); max-width: 24ch; }

.timeline { background: #ECE9DF; padding: clamp(60px,8vw,110px) 32px; }
.timeline-inner { max-width: 1400px; margin: 0 auto; }
.timeline > .timeline-inner > h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px,2.4vw,30px);
  color: var(--head); margin-bottom: 54px; }
.timeline-item { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,80px); align-items: center;
  padding: clamp(30px,4vw,56px) 0; border-top: 1px solid var(--line); }
.timeline-item:nth-child(even) .tl-media { order: 2; }
.tl-media { aspect-ratio: 4/3; overflow: hidden; }
.tl-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.timeline-item:hover .tl-media img { transform: scale(1.05); }
.tl-text .tag { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.06em; color: #91836A; text-transform: uppercase; }
.tl-text h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px,2.6vw,34px);
  letter-spacing: -0.01em; margin: 14px 0 16px; }
.tl-text p { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 52ch; }

/* ---- CONSULTATION FORM (refined) ---- */
.consult { background: #ECE9DF; padding: clamp(80px,10vw,140px) clamp(28px,5vw,48px); }
.consult-inner { max-width: 720px; margin: 0 auto; }
.consult-inner h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px,4vw,48px);
  letter-spacing: -0.015em; margin: 0 0 clamp(16px,2vw,24px); color: var(--ink); }
.consult-inner > p { font-family: var(--font-body); font-size: clamp(14px,1.05vw,16px); line-height: 1.8;
  color: var(--ink-soft); margin: 0 0 clamp(32px,4vw,48px); }

.consult-form { display: flex; flex-direction: column; gap: clamp(18px,2vw,24px); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px,2vw,24px); }
.cf-row input, .cf-row select, textarea { padding: clamp(13px,1.5vw,16px) clamp(14px,2vw,18px);
  border: 1px solid rgba(18,17,17,0.12); border-radius: 5px; font-size: clamp(13px,1vw,15px);
  font-family: var(--font-body); background: white; color: var(--ink); transition: border-color 0.3s ease; }
.cf-row input::placeholder, textarea::placeholder { color: #999; }
.cf-row input:focus, .cf-row select:focus, textarea:focus { outline: none; border-color: var(--ink); }
textarea { resize: vertical; min-height: 120px; }

.cf-submit { padding: clamp(13px,1.5vw,16px) clamp(28px,4vw,40px); background: var(--ink); color: white;
  border: none; border-radius: 5px; font-family: var(--font-display); font-size: clamp(13px,1vw,15px);
  font-weight: 500; cursor: pointer; transition: background 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: 0.02em; text-transform: uppercase; align-self: flex-start; }
.cf-submit:hover { background: rgba(18,17,17,0.85); }

.cf-thanks { font-family: var(--font-body); font-size: clamp(14px,1.05vw,16px); color: var(--ink);
  line-height: 1.7; margin-top: clamp(20px,3vw,32px); }

@media (max-width: 768px) {
  .cf-row { grid-template-columns: 1fr; }
}

.about-inspire { padding: clamp(60px,8vw,110px) 32px; background: #faf9f6; }
.ab-inspire-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(30px,4vw,70px); align-items: center; }
.ab-inspire-img { aspect-ratio: 3/4; width: 240px; overflow: hidden; }
.ab-inspire-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.ab-inspire-img:hover img { transform: scale(1.05); }
.ab-inspire-quote { font-family: var(--font-display); font-weight: 300; font-size: clamp(15px,1.6vw,20px);
  line-height: 1.5; color: var(--ink); text-align: center; letter-spacing: -0.005em; width: 220px; }

.about-portfolio { max-width: 1400px; margin: 0 auto; padding: clamp(60px,8vw,110px) 32px; }
.about-portfolio h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px,2.4vw,32px);
  color: var(--head); text-align: center; margin-bottom: 44px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.portfolio-grid a { aspect-ratio: 4/5; overflow: hidden; background: #e8e8e3; }
.portfolio-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.portfolio-grid a:hover img { transform: scale(1.05); }

.about-cta { background: var(--ink); color: var(--cream); text-align: center; padding: clamp(70px,9vw,130px) 32px; }
.about-cta h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px,4vw,52px); letter-spacing: -0.02em; }
.about-cta p { font-family: var(--font-body); color: #B7B2A8; margin: 18px auto 34px; max-width: 46ch; line-height: 1.6; }
.about-cta .btn { display: inline-flex; align-items: center; padding: 14px 30px; border-radius: 100px;
  background: var(--beige); color: var(--ink); font-family: var(--font-display); font-size: 15px; transition: background .3s var(--ease); }
.about-cta .btn:hover { background: #fff; }

/* =====================================================================
   PROJECTS PAGE — 5-image collage (matches sample10)
   ===================================================================== */
.brand-section { max-width: 1400px; margin: 0 auto; padding: clamp(40px,6vw,80px) 32px; }
.brand-section + .brand-section { border-top: 1px solid var(--line); }
.brand-head { margin-bottom: 32px; max-width: 64ch; }
.brand-head .focus { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: #91836A; }
.brand-head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px,3.4vw,46px); letter-spacing: -0.02em; margin: 8px 0 14px; }
.brand-head p { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--ink-soft); }

/* ---- PROJECTS HERO BANNER (rotating slides) ---- */
.projects-page { padding-top: 0; }
.pj-hero { position: relative; min-height: 100vh; overflow: hidden; background: #111; }
.pj-hero-slides { position: absolute; inset: 0; }
.pj-hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s var(--ease); transform: scale(1.04); }
.pj-hero-slide.is-active { opacity: 1; transform: scale(1.08); transition: opacity 1.2s var(--ease), transform 6s linear; }
.pj-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.55)); }
.pj-hero-content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; color: #fff;
  padding: calc(var(--header-h) + 24px) 24px 24px; }
.pj-hero-content h1 { font-family: var(--font-thin); font-weight: 200; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: clamp(30px, 5vw, 60px); }
.pj-hero-content p { font-family: var(--font-display); font-weight: 300; letter-spacing: 0.18em;
  text-transform: uppercase; font-size: clamp(11px, 1.2vw, 14px); margin-top: 16px; color: rgba(255,255,255,0.9); }
.pj-hero-coords { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.1em; margin-top: 22px; color: rgba(255,255,255,0.6); }
.pj-hero-dots { position: absolute; bottom: 22px; left: 0; right: 0; z-index: 3; display: flex; gap: 10px; justify-content: center; }
.pj-hero-dot { width: 34px; height: 2px; border: 0; background: rgba(255,255,255,0.4); cursor: pointer; padding: 0; }
.pj-hero-dot.is-active { background: #fff; }

/* ---- QUOTE + SERVICES ---- */
.pj-quote { padding: clamp(50px,7vw,90px) 32px clamp(30px,4vw,50px); }
.pj-quote-inner { max-width: 980px; margin: 0 auto; text-align: center; }
.pj-quote-text { font-family: var(--font-body); font-size: clamp(16px,1.5vw,20px); line-height: 1.7; color: var(--ink-soft); }
.pj-services { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px;
  max-width: 980px; margin: 44px auto 0; text-align: left; }
.pj-service { font-family: var(--font-body); font-size: 14px; line-height: 1.35; color: var(--ink);
  display: flex; align-items: center; gap: 13px; padding: 14px 16px; background: #fff;
  border: 1px solid var(--line); border-radius: 10px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.pj-service:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -18px rgba(0,0,0,0.28); border-color: #ddd2bf; }
.pj-svc-ic { flex: 0 0 40px; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: #F3EFE9; color: #91836A; }
.pj-svc-ic svg { width: 20px; height: 20px; }
.pj-svc-t { min-width: 0; }

/* ---- FILTER TABS ---- */
.pj-filters { display: flex; gap: clamp(20px,4vw,48px); justify-content: center; align-items: center;
  padding: 10px 32px clamp(34px,4vw,50px); flex-wrap: wrap; }
.pj-tab { background: none; border: 0; cursor: pointer; font-family: var(--font-display); font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(41,41,41,0.5); padding: 6px 0;
  position: relative; transition: color .3s var(--ease); }
.pj-tab::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--ink); transform: scaleX(0); transition: transform .3s var(--ease); }
.pj-tab:hover { color: var(--ink); }
.pj-tab.is-active { color: var(--ink); }
.pj-tab.is-active::after { transform: scaleX(1); }

/* ---- GALLERY (one teaser block per project) ---- */
.pj-gallery-wrap { max-width: 1400px; margin: 0 auto; padding: 0 32px clamp(50px,7vw,90px); }
.pj-gallery { display: flex; flex-direction: column; gap: clamp(40px,5vw,68px); }   /* separation between projects */

.pj-project { width: 100%; }
.pj-project.is-hidden { display: none; }
.pj-project-head { display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 0 2px 14px; border-bottom: 1px solid rgba(0,0,0,0.10); margin-bottom: 16px; }
.pj-project-title { font-family: var(--font-display); font-weight: 500; line-height: 1.1;
  font-size: clamp(1.35rem,2.6vw,2.1rem); color: var(--ink, #1a1a1a); margin: 0; }
.pj-project-meta { font-family: var(--font-body); font-size: clamp(.72rem,1vw,.85rem);
  letter-spacing: 0.06em; text-transform: uppercase; color: rgba(0,0,0,0.45); white-space: nowrap; }

/* 5-box collage: BIG on the LEFT (spans both rows), four boxes on the right */
.pj-block { display: grid; gap: 12px; width: 100%; }
.pj-block--5 {
  grid-template-columns: minmax(0,2fr) minmax(0,1fr) minmax(0,1fr);
  grid-template-rows: minmax(0,1fr) minmax(0,1fr);
  grid-template-areas: "c0 c1 c2" "c0 c3 c4";
  aspect-ratio: 2.05/1; max-height: clamp(420px,46vw,640px);
}

.pj-cell { position: relative; overflow: hidden; background: #e8e8e3; min-width: 0; min-height: 0;
  border-radius: 3px; cursor: pointer; padding: 0; border: 0; }
.pj-cell--0 { grid-area: c0; } .pj-cell--1 { grid-area: c1; } .pj-cell--2 { grid-area: c2; }
.pj-cell--3 { grid-area: c3; } .pj-cell--4 { grid-area: c4; }
.pj-cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pj-cell:hover img { transform: scale(1.045); }
.pj-cell .ov { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .35s ease; }
.pj-cell .ov .shade { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.pj-cell .ov .txt { position: relative; z-index: 1; text-align: center; padding: 22px; transform: translateY(6%); transition: transform .35s ease; }
.pj-cell:hover .ov { opacity: 1; }
.pj-cell:hover .ov .txt { transform: translateY(0); }
.pj-cell .ov .m { display: block; font-family: var(--font-body); font-size: clamp(.72rem,1vw,.86rem); letter-spacing: 0.04em; color: rgba(255,255,255,.92); margin-bottom: 8px; }
.pj-cell .ov .t { display: block; font-family: var(--font-display); font-size: clamp(1.1rem,2vw,1.7rem); color: #fff; line-height: 1.2; }

/* "View All" box (5th cell) */
.pj-viewall { display: block; }
.pj-viewall img { filter: saturate(.85) brightness(.62); transition: transform .6s ease, filter .4s ease; }
.pj-viewall:hover img { filter: saturate(.9) brightness(.7); }
.pj-viewall-ov { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px; text-align: center; color: #fff;
  background: rgba(18,18,18,0.18); }
.pj-viewall-plus { font-family: var(--font-display); font-size: clamp(1.4rem,2.4vw,2rem); font-weight: 500; line-height: 1;
  letter-spacing: .01em; }
.pj-viewall-label { font-family: var(--font-body); font-size: clamp(.74rem,1vw,.9rem); letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 600; }
.pj-viewall-arrow { display: inline-block; font-size: 1.1rem; transition: transform .35s ease; opacity: .9; }
.pj-viewall:hover .pj-viewall-arrow { transform: translateX(5px); }

/* ============ PREMIUM SLIDESHOW LIGHTBOX ============ */
body.pj-lb-open { overflow: hidden; }
.pj-lb { position: fixed; inset: 0; z-index: 1000; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .45s var(--ease), visibility 0s linear .45s; }
.pj-lb.is-open { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity .45s var(--ease); }
.pj-lb-backdrop { position: absolute; inset: 0; background: rgba(8,8,9,0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.pj-lb-stage { transform: scale(0.97); transition: transform .5s var(--ease); }
.pj-lb.is-open .pj-lb-stage { transform: scale(1); }
.pj-lb-bar { position: absolute; top: 0; left: 0; right: 0; z-index: 3; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; padding: clamp(16px,2.4vw,30px) clamp(18px,3vw,44px); }
.pj-lb-meta { display: flex; flex-direction: column; gap: 4px; }
.pj-lb-title { font-family: var(--font-display); color: #fff; font-size: clamp(1.05rem,1.8vw,1.5rem); line-height: 1.1; }
.pj-lb-count { font-family: var(--font-body); color: rgba(255,255,255,0.6); font-size: .8rem; letter-spacing: 0.14em; }
.pj-lb-close { background: none; border: 0; color: rgba(255,255,255,0.85); cursor: pointer; padding: 8px;
  border-radius: 50%; transition: background .25s ease, color .25s ease; }
.pj-lb-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.pj-lb-stage { position: absolute; top: clamp(70px,9vh,110px); left: clamp(60px,8vw,120px);
  right: clamp(60px,8vw,120px); bottom: clamp(96px,14vh,150px); margin: 0; z-index: 1; }
/* Two stacked layers crossfade for a silky-smooth slideshow. */
.pj-lb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transition: opacity .55s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; will-change: opacity; }
.pj-lb-img.is-front { opacity: 1; }

.pj-lb-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; background: none; border: 0;
  color: rgba(255,255,255,0.7); cursor: pointer; padding: 10px; transition: color .25s ease, transform .25s ease; }
.pj-lb-nav:hover { color: #fff; }
.pj-lb-prev { left: clamp(10px,2vw,30px); } .pj-lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.pj-lb-next { right: clamp(10px,2vw,30px); } .pj-lb-next:hover { transform: translateY(-50%) translateX(3px); }

.pj-lb-thumbs { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; gap: 8px; overflow-x: auto; padding: 16px clamp(18px,3vw,44px) 20px;
  scrollbar-width: none; scroll-behavior: smooth; }
.pj-lb-thumbs::-webkit-scrollbar { display: none; }
.pj-lb-thumb { flex: 0 0 auto; width: 78px; height: 52px; border: 0; padding: 0; cursor: pointer;
  border-radius: 2px; overflow: hidden; opacity: .42; transition: opacity .25s ease, outline-color .25s ease;
  outline: 2px solid transparent; outline-offset: 1px; background: #222; }
.pj-lb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pj-lb-thumb:hover { opacity: .8; }
.pj-lb-thumb.is-active { opacity: 1; outline-color: #fff; }

/* =====================================================================
   CONSULTATION FORM (projects page)
   ===================================================================== */
.consult { background: #ECE9DF; padding: clamp(60px,8vw,110px) 32px; }
.consult-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.consult-inner h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(24px,3vw,38px); letter-spacing: -0.01em; }
.consult-inner > p { font-family: var(--font-body); color: var(--ink-soft); margin: 16px auto 36px; max-width: 52ch; line-height: 1.6; }
.consult-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consult-form input, .consult-form select, .consult-form textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 2px; padding: 14px 16px; }
.consult-form textarea { resize: vertical; }
.consult-form input:focus, .consult-form select:focus, .consult-form textarea:focus { outline: none; border-color: #91836A; }
.cf-submit { align-self: flex-start; margin-top: 6px; background: var(--ink); color: var(--cream);
  font-family: var(--font-display); font-size: 14px; letter-spacing: 0.04em; padding: 14px 34px; border: 0;
  border-radius: 100px; cursor: pointer; transition: background .3s var(--ease); }
.cf-submit:hover { background: #000; }
.cf-thanks { font-family: var(--font-body); color: var(--ink); font-size: 17px; }

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
/* ---- CONTACT HERO (full-page cover) ---- */
.contact-hero { position: relative; min-height: 100vh; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: calc(var(--header-h) + 32px) 32px 32px; }
.contact-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); z-index: 1; }
.contact-hero__content { position: relative; z-index: 2; color: #fff; max-width: 820px; }
.contact-hero__eyebrow { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; gap: 10px; }
.contact-hero__eyebrow::before { content: ""; width: 26px; height: 1px; background: rgba(255,255,255,0.7); }
.contact-hero__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(34px,6vw,68px);
  letter-spacing: -0.02em; line-height: 1.08; margin: 20px 0 0; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.contact-hero__lead { font-family: var(--font-body); font-size: clamp(15px,1.4vw,19px); line-height: 1.7;
  color: rgba(255,255,255,0.9); max-width: 56ch; margin: 22px auto 0; }

/* ---- CONTACT MAP (modern framed map with floating studio card) ---- */
.contact-map-section { background: var(--cream); padding: clamp(36px,5vw,72px) clamp(20px,4vw,48px) clamp(56px,7vw,96px); }
.contact-map { position: relative; max-width: 1240px; margin: 0 auto;
  height: clamp(380px,46vw,540px); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 40px 80px -40px rgba(0,0,0,0.45); background: #e8e8e3; }
.contact-map__frame { display: block; width: 100%; height: 100%; border: 0;
  filter: grayscale(1) contrast(1.04) brightness(1.02); transition: filter .6s var(--ease); }
.contact-map:hover .contact-map__frame { filter: grayscale(0) contrast(1) brightness(1); }
.contact-map__card { position: absolute; left: clamp(16px,3vw,40px); bottom: clamp(16px,3vw,40px);
  width: min(360px, calc(100% - 32px)); background: rgba(255,255,255,0.94);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7); border-radius: 12px; padding: 24px 26px;
  box-shadow: 0 26px 50px -26px rgba(0,0,0,0.5); }
.contact-map__eyebrow { display: block; font-family: var(--font-body); font-size: 11.5px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.contact-map__addr { font-family: var(--font-body); font-weight: 300; font-size: 15px; line-height: 1.6;
  color: var(--ink); margin: 0 0 18px; }
.contact-map__btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display);
  font-size: 14px; color: #fff; background: var(--ink); padding: 11px 22px; border-radius: 100px;
  transition: opacity .25s var(--ease), transform .25s var(--ease); }
.contact-map__btn:hover { opacity: 0.85; transform: translateX(2px); }

.contact-page { max-width: 1200px; margin: 0 auto; padding: clamp(40px,6vw,80px) 32px clamp(70px,9vw,120px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,90px); }
.contact-page .page-lead { margin-top: 22px; }
.contact-blocks { display: flex; flex-direction: column; gap: 26px; }
.contact-blocks .blk .lbl { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #91836A; margin-bottom: 8px; }
.contact-blocks .blk a, .contact-blocks .blk p { font-family: var(--font-body); font-size: 17px; color: var(--ink); display: block; line-height: 1.6; }
.contact-blocks .blk a:hover { color: #91836A; }

/* =====================================================================
   RESPONSIVE (sub-pages)
   ===================================================================== */
@media (max-width: 900px) {
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-item:nth-child(even) .tl-media { order: 0; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .contact-page { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .pj-block--5 { grid-template-columns: 1fr 1fr; grid-template-rows: auto;
    grid-template-areas: "c0 c0" "c1 c2" "c3 c4"; aspect-ratio: auto; max-height: none; }
  .pj-block--5 .pj-cell { min-height: clamp(150px,42vw,230px); }
  .pj-block--5 .pj-cell--0 { min-height: clamp(220px,62vw,360px); }
  .pj-project-head { flex-direction: column; gap: 4px; }
  .pj-project-meta { white-space: normal; }
  .pj-services { grid-template-columns: 1fr 1fr; }
  .pj-cell .ov { opacity: 1; } .pj-cell .ov .shade { background: rgba(0,0,0,0.35); } .pj-cell .ov .txt { transform: none; }
  .pj-lb-stage { left: 16px; right: 16px; top: 64px; bottom: 86px; }
  .pj-lb-thumb { width: 60px; height: 42px; }
  .pj-lb-nav { display: none; }
}

/* =====================================================================
   BLOG ARTICLE PAGE (blog.html)
   ===================================================================== */
.blog-page { background: var(--cream); }
.blog-article { width: 100%; }
.blog-hero { position: relative; min-height: clamp(360px, 56vh, 620px);
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 40px) 32px 48px; }
.blog-hero-overlay { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.62) 100%); }
.blog-hero-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; width: 100%; color: #fff; }
.blog-cat { display: inline-block; font-family: var(--font-body); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: #fff; background: rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.4); padding: 6px 14px; border-radius: 100px; margin-bottom: 18px; }
.blog-hero-inner h1 { font-family: var(--font-display); font-weight: 300;
  font-size: clamp(28px, 4.4vw, 52px); line-height: 1.16; letter-spacing: -0.01em;
  margin: 0; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.blog-meta { font-family: var(--font-body); font-size: 14px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9); margin: 16px 0 0; }

.blog-body { max-width: 720px; margin: 0 auto; padding: clamp(40px, 6vw, 72px) 24px clamp(50px, 7vw, 90px); }
.blog-back { display: inline-block; font-family: var(--font-body); font-size: 14px; color: var(--ink-soft);
  letter-spacing: 0.02em; border-bottom: 1px solid transparent; transition: color .2s var(--ease), border-color .2s var(--ease); }
.blog-back:hover { color: var(--ink); border-color: var(--ink); }
.blog-lead { font-family: var(--font-body); font-weight: 400; font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.55; color: var(--ink); margin: 28px 0 10px; }
.blog-body p { font-family: var(--font-body); font-weight: 300; font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.8; color: #2e2e2e; margin: 20px 0; }
.blog-h { font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.3; color: var(--ink); margin: 44px 0 6px; }
.blog-quote { font-family: var(--font-display); font-weight: 300; font-size: clamp(21px, 2.8vw, 30px);
  line-height: 1.4; color: var(--ink); margin: 40px 0; padding: 6px 0 6px 28px;
  border-left: 2px solid var(--ink); }
.blog-list { margin: 22px 0; padding: 0; }
.blog-list li { position: relative; font-family: var(--font-body); font-weight: 300;
  font-size: clamp(16px, 1.7vw, 18px); line-height: 1.7; color: #2e2e2e; padding: 7px 0 7px 26px; }
.blog-list li::before { content: ""; position: absolute; left: 2px; top: 16px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--ink); opacity: 0.65; }
.blog-figure { margin: 36px 0; }
.blog-figure img { width: 100%; height: auto; border-radius: 4px; display: block; }
.blog-figure figcaption { font-family: var(--font-body); font-size: 13px; color: var(--ink-soft);
  text-align: center; margin-top: 12px; letter-spacing: 0.02em; }
.blog-back--bottom { margin-top: 48px; }

.blog-missing { max-width: 720px; margin: 0 auto; padding: clamp(120px,18vh,220px) 24px;
  text-align: center; }
.blog-missing h1 { font-family: var(--font-display); font-weight: 300; font-size: clamp(28px,4vw,44px);
  color: var(--ink); margin: 0 0 14px; }
.blog-missing p { font-family: var(--font-body); color: var(--ink-soft); margin: 0 0 24px; }

/* Read next */
.blog-more { max-width: 1200px; margin: 0 auto; padding: 0 24px clamp(60px, 8vw, 100px); }
.blog-more-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(18px, 2vw, 24px);
  color: var(--head); text-align: center; margin: 0 0 32px; }
.blog-more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.blog-more-card { display: block; }
.blog-more-img { aspect-ratio: 4/3; background-size: cover; background-position: center;
  border-radius: 4px; transition: transform .5s var(--ease); }
.blog-more-card:hover .blog-more-img { transform: scale(1.03); }
.blog-more-cat { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-soft); margin: 16px 0 6px; }
.blog-more-card h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.35; color: var(--ink); margin: 0; }

@media (max-width: 760px) {
  .blog-more-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* Blog FAQ block */
.blog-faq { margin: 48px 0 8px; }
.blog-faq-item { padding: 22px 0; border-top: 1px solid var(--line); }
.blog-faq-item:last-child { border-bottom: 1px solid var(--line); }
.blog-faq-q { font-family: var(--font-display); font-weight: 400; font-size: clamp(17px,1.9vw,20px);
  color: var(--ink); margin: 0 0 8px; }
.blog-faq-a { font-family: var(--font-body); font-weight: 300; font-size: clamp(15px,1.6vw,17px);
  line-height: 1.75; color: #2e2e2e; margin: 0; }
