/* ═══════════════════════════════════════════════════════════════
   BUILT & CITED — Shared Stylesheet
   Web & Marketing Studio
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,800;0,900;1,500;1,700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Josefin+Sans:wght@200;300;400;500;600;700&display=swap');

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

:root {
  --bc-black: #0A0A0A;
  --bc-black-soft: #131313;
  --bc-black-line: #1C1C1C;
  --bc-rose: #D4906F;
  --bc-rose-deep: #B8765C;
  --bc-cream: #FAF5ED;
  --bc-cream-soft: #F0EBE2;
  --bc-bg-line: #E0D5C2;
  --bc-text: #1A1A1A;
  --bc-text-soft: #3A3A3A;
  --bc-text-mute: #5A5A5A;
  --bc-gray-1: #6A6A6A;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bc-cream);
  color: var(--bc-black);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ═══════════════ NAV ═══════════════ */
.nav {
  background: var(--bc-black);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--bc-black-line);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-logo { height: 44px; }
.nav-logo img { height: 100%; width: auto; }
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--bc-cream);
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--bc-rose);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--bc-rose); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--bc-rose);
  color: var(--bc-black);
  padding: 12px 22px;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--bc-cream); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--bc-cream); margin: 5px 0;
  transition: 0.3s;
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn-primary {
  display: inline-block;
  background: var(--bc-black);
  color: var(--bc-cream);
  padding: 18px 38px;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--bc-rose-deep); transform: translateY(-2px); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--bc-black);
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1.5px solid var(--bc-black);
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--bc-black); color: var(--bc-cream); }
.btn-discovery {
  display: inline-block;
  background: var(--bc-rose);
  color: var(--bc-black);
  padding: 20px 44px;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.btn-discovery:hover { background: var(--bc-cream); transform: translateY(-2px); }
.btn-text {
  display: inline-block;
  color: var(--bc-rose-deep);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--bc-rose-deep);
  padding-bottom: 6px;
  transition: gap 0.2s;
}
.btn-text:hover { color: var(--bc-rose); border-color: var(--bc-rose); }

/* ═══════════════ PAGE HERO (interior pages) ═══════════════ */
.page-hero {
  background: var(--bc-cream);
  padding: 110px 48px 90px;
  text-align: center;
  border-bottom: 1px solid var(--bc-bg-line);
  position: relative;
}
.page-hero .eyebrow {
  font-size: 11px;
  letter-spacing: 8px;
  color: var(--bc-rose-deep);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 60px;
  color: var(--bc-black);
  letter-spacing: -0.8px;
  line-height: 1.08;
  max-width: 900px;
  margin: 0 auto 20px;
}
.page-hero h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--bc-rose-deep);
}
.page-hero .sub {
  font-size: 18px;
  color: var(--bc-text);
  opacity: 0.8;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}
.hero-rule {
  width: 100px;
  height: 1px;
  background: var(--bc-rose-deep);
  margin: 28px auto;
  position: relative;
}
.hero-rule::before, .hero-rule::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 1px;
  height: 9px;
  background: var(--bc-rose-deep);
}
.hero-rule::before { left: 0; }
.hero-rule::after { right: 0; }

/* ═══════════════ HOMEPAGE HERO ═══════════════ */
.hero {
  background: var(--bc-cream);
  padding: 140px 48px 120px;
  text-align: center;
  border-bottom: 1px solid var(--bc-bg-line);
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 8px;
  color: var(--bc-rose-deep);
  font-weight: 600;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 80px;
  color: var(--bc-black);
  letter-spacing: -1px;
  line-height: 1.05;
  max-width: 1000px;
  margin: 0 auto 24px;
}
.hero h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--bc-rose-deep);
}
.hero-sub {
  font-size: 19px;
  color: var(--bc-black);
  opacity: 0.78;
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════ SECTION BASE ═══════════════ */
.sec {
  padding: 110px 48px;
  position: relative;
}
.sec.cream { background: var(--bc-cream); }
.sec.cream-soft { background: var(--bc-cream-soft); }
.sec.dark { background: var(--bc-black); color: var(--bc-cream); }
.sec-inner { max-width: 1080px; margin: 0 auto; }
.sec-eyebrow {
  font-size: 11px;
  letter-spacing: 7px;
  color: var(--bc-rose-deep);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sec.dark .sec-eyebrow { color: var(--bc-rose); }
.sec-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 50px;
  letter-spacing: -0.7px;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--bc-black);
}
.sec.dark .sec-headline { color: var(--bc-cream); }
.sec-headline em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--bc-rose-deep);
}
.sec.dark .sec-headline em { color: var(--bc-rose); }
.sec-body {
  font-size: 17px;
  color: var(--bc-black);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 18px;
  opacity: 0.85;
}
.sec.dark .sec-body { color: var(--bc-cream); opacity: 0.8; }
.sec-intro-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}
.sec-intro-center .sec-body { margin-left: auto; margin-right: auto; }

/* ═══════════════ ESTABLISHMENT GAP ═══════════════ */
.gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.gap-text h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 56px;
  color: var(--bc-black);
  letter-spacing: -0.8px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.gap-text h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--bc-rose-deep);
}
.gap-text p {
  font-size: 16.5px;
  color: var(--bc-black);
  line-height: 1.75;
  margin-bottom: 16px;
  opacity: 0.85;
}
.gap-image {
  aspect-ratio: 4/5;
  border: 1px solid var(--bc-bg-line);
  position: relative;
  overflow: hidden;
  background: var(--bc-cream-soft);
}
.gap-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gap-image::before, .gap-image::after,
.gap-image .ctr, .gap-image .cbl {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--bc-cream);
  border-style: solid;
  border-width: 0;
  z-index: 2;
  mix-blend-mode: difference;
}
.gap-image::before { top: 14px; left: 14px; border-top-width: 1px; border-left-width: 1px; }
.gap-image::after { bottom: 14px; right: 14px; border-bottom-width: 1px; border-right-width: 1px; }
.gap-image .ctr { top: 14px; right: 14px; border-top-width: 1px; border-right-width: 1px; }
.gap-image .cbl { bottom: 14px; left: 14px; border-bottom-width: 1px; border-left-width: 1px; }

/* ═══════════════ SERVICES GRID ═══════════════ */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.svc-tile {
  background: var(--bc-cream);
  border: 1px solid var(--bc-bg-line);
  padding: 36px 32px;
  transition: transform 0.2s, border-color 0.2s;
}
.svc-tile:hover { transform: translateY(-4px); border-color: var(--bc-rose); }
.sec.cream-soft .svc-tile { background: var(--bc-cream); }
.svc-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 28px;
  color: var(--bc-rose-deep);
  margin-bottom: 18px;
}
.svc-tile h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--bc-black);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.svc-tile p {
  font-size: 13.5px;
  color: var(--bc-black);
  opacity: 0.8;
  line-height: 1.65;
}

/* ═══════════════ TIMELINE ═══════════════ */
.timeline-wrap {
  background: var(--bc-cream);
  padding: 64px 50px;
  border: 1px solid var(--bc-bg-line);
  margin-top: 32px;
  position: relative;
}
.sec.cream .timeline-wrap { background: var(--bc-cream-soft); }
.timeline-wrap::before, .timeline-wrap::after,
.timeline-wrap .ctr, .timeline-wrap .cbl {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--bc-rose-deep);
  border-style: solid;
  border-width: 0;
}
.timeline-wrap::before { top: 18px; left: 18px; border-top-width: 1px; border-left-width: 1px; }
.timeline-wrap::after { bottom: 18px; right: 18px; border-bottom-width: 1px; border-right-width: 1px; }
.timeline-wrap .ctr { top: 18px; right: 18px; border-top-width: 1px; border-right-width: 1px; }
.timeline-wrap .cbl { bottom: 18px; left: 18px; border-bottom-width: 1px; border-left-width: 1px; }
.timeline-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  position: relative;
}
.timeline-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--bc-rose-deep);
  z-index: 0;
}
.t-cell {
  background: var(--bc-cream);
  border: 1.5px solid var(--bc-rose-deep);
  padding: 18px 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.t-day {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 22px;
  color: var(--bc-rose-deep);
  margin-bottom: 4px;
}
.t-name {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--bc-black);
  font-weight: 500;
}
.timeline-rush {
  text-align: center;
  margin-top: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--bc-rose-deep);
  font-weight: 500;
}

/* ═══════════════ TEMPLATES ═══════════════ */
.tmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
}
.tmp-tile {
  background: var(--bc-cream);
  border: 1px solid var(--bc-bg-line);
  transition: transform 0.2s;
}
.tmp-tile:hover { transform: translateY(-4px); }
.sec.cream-soft .tmp-tile { background: var(--bc-cream); }
.tmp-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bc-cream-soft);
  border-bottom: 1px solid var(--bc-bg-line);
}
.tmp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.tmp-meta { padding: 24px 28px; }
.tmp-tag {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--bc-rose-deep);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tmp-meta h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--bc-black);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.tmp-meta p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--bc-rose-deep);
  font-weight: 500;
}
.tmp-explore { text-align: center; margin-top: 40px; }

/* ═══════════════ AEO DARK ═══════════════ */
.aeo-headline-big {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--bc-cream);
  letter-spacing: -0.6px;
  line-height: 1.15;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 32px;
}
.aeo-headline-big em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--bc-rose);
}
.aeo-engines {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.aeo-engine {
  background: rgba(212, 144, 111, 0.08);
  border: 1px solid rgba(212, 144, 111, 0.3);
  padding: 14px 24px;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--bc-cream);
  font-weight: 500;
}
.aeo-engine strong { color: var(--bc-rose); font-weight: 600; }

/* ═══════════════ WORK PREVIEW / CASE CARDS ═══════════════ */
.work-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
}
.work-card {
  background: var(--bc-cream);
  border: 1px solid var(--bc-bg-line);
}
.sec.cream .work-card, .sec.cream-soft .work-card { background: var(--bc-cream); }
.work-card-header {
  background: var(--bc-black);
  color: var(--bc-cream);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.work-card-header .case-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 20px;
  color: var(--bc-rose);
}
.work-card-header .case-tag {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--bc-rose);
  font-weight: 600;
  text-transform: uppercase;
}
.work-card-body { padding: 28px; }
.work-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--bc-black);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.case-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--bc-rose-deep);
  margin-bottom: 18px;
  font-weight: 500;
}
.work-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--bc-bg-line);
}
.work-stat { text-align: center; }
.work-stat .stat-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--bc-rose-deep);
  letter-spacing: -0.2px;
  line-height: 1.1;
}
.work-stat .stat-lbl {
  font-size: 10.5px;
  color: var(--bc-black);
  opacity: 0.75;
  line-height: 1.4;
  margin-top: 4px;
}

/* ═══════════════ FULL CASE STUDY (Work page) ═══════════════ */
.case-study {
  background: var(--bc-cream);
  border: 1px solid var(--bc-bg-line);
  margin-bottom: 24px;
}
.case-header {
  background: var(--bc-black);
  color: var(--bc-cream);
  padding: 24px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.case-header .c-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 24px;
  color: var(--bc-rose);
}
.case-header .c-tag {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--bc-rose);
  font-weight: 600;
  text-transform: uppercase;
}
.case-content { padding: 40px 44px; }
.case-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 34px;
  color: var(--bc-black);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}
.case-content .c-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  color: var(--bc-rose-deep);
  margin-bottom: 28px;
  font-weight: 500;
}
.case-block { margin-bottom: 24px; }
.case-block .c-label {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--bc-rose-deep);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.case-block p {
  font-size: 15px;
  color: var(--bc-text);
  line-height: 1.75;
}
.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--bc-bg-line);
}
.case-result {
  background: var(--bc-cream-soft);
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--bc-bg-line);
}
.case-result .r-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--bc-rose-deep);
  letter-spacing: -0.4px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.case-result .r-lbl {
  font-size: 11px;
  color: var(--bc-text);
  line-height: 1.4;
  font-weight: 500;
}
.case-insight {
  background: var(--bc-cream-soft);
  border-left: 3px solid var(--bc-rose-deep);
  padding: 18px 24px;
  margin-top: 22px;
}
.case-insight .i-label {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--bc-rose-deep);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.case-insight p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--bc-black);
  line-height: 1.55;
  font-weight: 500;
}

/* ═══════════════ INDUSTRIES ═══════════════ */
.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 880px;
  margin: 40px auto 0;
}
.industry-tag {
  background: var(--bc-cream);
  border: 1px solid var(--bc-bg-line);
  padding: 10px 18px;
  font-size: 13px;
  color: var(--bc-black);
  letter-spacing: 0.4px;
  transition: border-color 0.2s, color 0.2s;
}
.industry-tag:hover { border-color: var(--bc-rose); color: var(--bc-rose-deep); }
.sec.cream-soft .industry-tag { background: var(--bc-cream); }
.industries-closer {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--bc-rose-deep);
  font-weight: 500;
  margin-top: 40px;
  line-height: 1.5;
  text-align: center;
}
.industries-closer a {
  border-bottom: 1px solid var(--bc-rose-deep);
  padding-bottom: 2px;
}

/* ═══════════════ TESTIMONIAL ═══════════════ */
.testi {
  background: var(--bc-cream);
  padding: 110px 48px;
  text-align: center;
  border-top: 1px solid var(--bc-bg-line);
  border-bottom: 1px solid var(--bc-bg-line);
}
.testi-eyebrow {
  font-size: 11px;
  letter-spacing: 7px;
  color: var(--bc-rose-deep);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 42px;
  color: var(--bc-black);
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto 28px;
  font-weight: 500;
}
.testi-body {
  font-size: 16px;
  color: var(--bc-black);
  max-width: 720px;
  margin: 0 auto 32px;
  opacity: 0.85;
  line-height: 1.65;
}
.testi-attr {
  font-size: 12px;
  color: var(--bc-rose-deep);
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ═══════════════ BELIEF BLOCKS (About) ═══════════════ */
.belief-block {
  background: var(--bc-cream);
  border-left: 3px solid var(--bc-rose-deep);
  padding: 28px 32px;
  margin-bottom: 16px;
}
.sec.cream-soft .belief-block { background: var(--bc-cream); }
.belief-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 28px;
  color: var(--bc-rose-deep);
  margin-bottom: 8px;
}
.belief-block h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--bc-black);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.belief-block p {
  font-size: 14.5px;
  color: var(--bc-text);
  line-height: 1.7;
}

/* ═══════════════ PROSE (About thesis, etc.) ═══════════════ */
.prose-block { max-width: 760px; margin: 0 auto; }
.prose-block p {
  font-size: 17px;
  color: var(--bc-text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.prose-block p strong { color: var(--bc-black); font-weight: 600; }
.prose-emphasis {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--bc-rose-deep);
  font-weight: 500;
  line-height: 1.5;
  margin: 28px 0;
  text-align: center;
}
.founder-line {
  background: var(--bc-cream-soft);
  border: 1px solid var(--bc-bg-line);
  padding: 28px 32px;
  margin-top: 32px;
  text-align: center;
}
.founder-line .fl-eye {
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--bc-rose-deep);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.founder-line p {
  font-size: 14.5px;
  color: var(--bc-text);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}
.founder-line em {
  font-style: italic;
  color: var(--bc-rose-deep);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
}

/* ═══════════════ JOURNAL ═══════════════ */
.journal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
}
.journal-card {
  background: var(--bc-cream);
  border: 1px solid var(--bc-bg-line);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}
.journal-card:hover { transform: translateY(-4px); border-color: var(--bc-rose); }
.journal-card-top {
  background: var(--bc-black);
  padding: 28px 28px 24px;
  border-bottom: 2px solid var(--bc-rose);
}
.journal-cat {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--bc-rose);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.journal-card-top h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 21px;
  color: var(--bc-cream);
  line-height: 1.25;
  letter-spacing: -0.2px;
}
.journal-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.journal-card-body p {
  font-size: 14px;
  color: var(--bc-text);
  line-height: 1.65;
  opacity: 0.85;
  margin-bottom: 18px;
  flex: 1;
}
.journal-meta {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--bc-text-mute);
  text-transform: uppercase;
}
.journal-featured {
  background: var(--bc-cream);
  border: 1px solid var(--bc-bg-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 48px;
  overflow: hidden;
}
.journal-featured-text { padding: 56px 48px; }
.journal-featured-img {
  background: linear-gradient(135deg, var(--bc-black) 0%, #2A1A14 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.journal-featured-img .fmark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 120px;
  color: var(--bc-rose);
  opacity: 0.5;
}
.journal-featured .jf-eye {
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--bc-rose-deep);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.journal-featured h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 34px;
  color: var(--bc-black);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}
.journal-featured p {
  font-size: 15px;
  color: var(--bc-text);
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 24px;
}

/* ═══════════════ START / CONTACT ═══════════════ */
.start-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.start-info h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 38px;
  color: var(--bc-black);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.start-info h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--bc-rose-deep);
}
.start-info p {
  font-size: 16px;
  color: var(--bc-text);
  line-height: 1.7;
  margin-bottom: 18px;
  opacity: 0.85;
}
.start-checklist { margin-top: 28px; }
.start-checklist li {
  list-style: none;
  font-size: 15px;
  color: var(--bc-text);
  padding: 12px 0 12px 32px;
  position: relative;
  border-bottom: 1px solid var(--bc-bg-line);
}
.start-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--bc-rose-deep);
  border-bottom: 2px solid var(--bc-rose-deep);
  transform: rotate(-45deg);
}
.start-embed {
  background: var(--bc-cream);
  border: 1px solid var(--bc-bg-line);
  padding: 12px;
  min-height: 700px;
}
.start-embed iframe {
  width: 100%;
  min-height: 680px;
  border: none;
}

/* ═══════════════ UNIVERSAL CTA ═══════════════ */
.cta-section {
  background: var(--bc-black);
  color: var(--bc-cream);
  padding: 130px 48px;
  text-align: center;
  position: relative;
}
.cta-section::before, .cta-section::after,
.cta-section .ctr, .cta-section .cbl {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  border-color: var(--bc-rose);
  border-style: solid;
  border-width: 0;
}
.cta-section::before { top: 48px; left: 48px; border-top-width: 1px; border-left-width: 1px; }
.cta-section::after { bottom: 48px; right: 48px; border-bottom-width: 1px; border-right-width: 1px; }
.cta-section .ctr { top: 48px; right: 48px; border-top-width: 1px; border-right-width: 1px; }
.cta-section .cbl { bottom: 48px; left: 48px; border-bottom-width: 1px; border-left-width: 1px; }
.cta-eyebrow {
  font-size: 11px;
  letter-spacing: 8px;
  color: var(--bc-rose);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.cta-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 60px;
  color: var(--bc-cream);
  letter-spacing: -0.7px;
  line-height: 1.08;
  margin: 0 auto 24px;
  max-width: 880px;
}
.cta-headline em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--bc-rose);
}
.cta-sub {
  font-size: 17px;
  color: var(--bc-cream);
  opacity: 0.82;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ═══════════════ FOOTER ═══════════════ */
.foot {
  background: var(--bc-black);
  color: var(--bc-cream);
  padding: 90px 48px 40px;
  border-top: 1px solid var(--bc-black-line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto 56px;
  align-items: start;
}
.foot-logo { width: 280px; margin-bottom: 22px; }
.foot-logo img { width: 100%; height: auto; }
.foot-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--bc-rose);
  margin-bottom: 24px;
}
.foot-contact {
  font-size: 13px;
  color: var(--bc-cream);
  opacity: 0.7;
  line-height: 1.7;
}
.foot-contact a:hover { color: var(--bc-rose); }
.foot-col h4 {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--bc-rose);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot-col a {
  display: block;
  color: var(--bc-cream);
  opacity: 0.7;
  font-size: 13px;
  margin-bottom: 11px;
  transition: opacity 0.2s, color 0.2s;
}
.foot-col a:hover { opacity: 1; color: var(--bc-rose); }
.foot-rule {
  max-width: 1080px;
  margin: 0 auto 28px;
  height: 1px;
  background: var(--bc-rose);
  position: relative;
}
.foot-rule::before, .foot-rule::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 1px;
  height: 7px;
  background: var(--bc-rose);
}
.foot-rule::before { left: 0; }
.foot-rule::after { right: 0; }
.foot-bottom {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--bc-cream);
  opacity: 0.5;
  text-transform: uppercase;
  font-weight: 500;
}
.foot-bottom a:hover { color: var(--bc-rose); opacity: 1; }

/* ═══════════════ PROSE PAGES (Privacy / Terms) ═══════════════ */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px 100px;
}
.legal-wrap h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 42px;
  color: var(--bc-black);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.legal-wrap .updated {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--bc-rose-deep);
  font-size: 16px;
  margin-bottom: 40px;
}
.legal-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--bc-black);
  margin: 36px 0 12px;
}
.legal-wrap p {
  font-size: 15px;
  color: var(--bc-text);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-wrap a { color: var(--bc-rose-deep); border-bottom: 1px solid var(--bc-rose-deep); }

/* ═══════════════ THANK YOU ═══════════════ */
.thanks-wrap {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}
.thanks-wrap .t-eye {
  font-size: 11px;
  letter-spacing: 8px;
  color: var(--bc-rose-deep);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.thanks-wrap h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 56px;
  color: var(--bc-black);
  letter-spacing: -0.7px;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
}
.thanks-wrap h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--bc-rose-deep);
}
.thanks-wrap p {
  font-size: 18px;
  color: var(--bc-text);
  opacity: 0.8;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ═══════════════ FADE-IN ON SCROLL ═══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 960px) {
  .hero h1 { font-size: 52px; }
  .page-hero h1 { font-size: 42px; }
  .sec-headline, .gap-text h2, .cta-headline { font-size: 38px; }
  .aeo-headline-big { font-size: 32px; }
  .testi-quote { font-size: 28px; }
  .gap-grid, .svc-grid, .tmp-grid, .work-preview-grid,
  .foot-grid, .start-grid, .journal-grid, .journal-featured {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .timeline-row { grid-template-columns: 1fr 1fr; }
  .timeline-row::before { display: none; }
  .case-results, .work-stats { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bc-black);
    flex-direction: column;
    padding: 24px 48px;
    gap: 18px;
    border-bottom: 1px solid var(--bc-black-line);
  }
  .nav-toggle { display: block; }
  .nav, .hero, .page-hero, .sec, .cta-section, .foot, .testi {
    padding-left: 24px;
    padding-right: 24px;
  }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .journal-featured-img { min-height: 240px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 40px; }
  .page-hero h1 { font-size: 34px; }
  .sec-headline, .gap-text h2, .cta-headline { font-size: 30px; }
  .testi-quote { font-size: 24px; }
  .hero, .sec, .cta-section { padding-top: 70px; padding-bottom: 70px; }
}

/* ═══════════════ ARTICLE PAGES ═══════════════ */
.article-hero {
  background: var(--bc-cream);
  padding: 90px 48px 60px;
  text-align: center;
  border-bottom: 1px solid var(--bc-bg-line);
}
.article-cat {
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--bc-rose-deep);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.article-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 52px;
  color: var(--bc-black);
  letter-spacing: -0.7px;
  line-height: 1.12;
  max-width: 820px;
  margin: 0 auto 20px;
}
.article-dek {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--bc-rose-deep);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.5;
  font-weight: 500;
}
.article-meta {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--bc-text-mute);
  text-transform: uppercase;
  font-weight: 500;
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 70px 40px 40px;
}
.article-body p {
  font-size: 18px;
  color: var(--bc-text);
  line-height: 1.85;
  margin-bottom: 24px;
}
.article-body p.lead {
  font-size: 22px;
  color: var(--bc-black);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 32px;
}
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--bc-black);
  letter-spacing: -0.3px;
  margin: 48px 0 18px;
  line-height: 1.2;
}
.article-body strong { color: var(--bc-black); font-weight: 600; }
.article-body em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--bc-rose-deep);
}
.article-pull {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--bc-rose-deep);
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  margin: 40px 0;
  padding: 32px 20px;
  border-top: 1px solid var(--bc-bg-line);
  border-bottom: 1px solid var(--bc-bg-line);
}
.article-back {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 20px;
}
.article-back a {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--bc-rose-deep);
  font-weight: 600;
  text-transform: uppercase;
}
.article-back a:hover { color: var(--bc-rose); }
.article-cta {
  max-width: 720px;
  margin: 20px auto 0;
  padding: 0 40px 80px;
}
.article-cta-inner {
  background: var(--bc-black);
  color: var(--bc-cream);
  padding: 48px 44px;
  position: relative;
}
.article-cta-inner::before, .article-cta-inner::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--bc-rose);
  border-style: solid;
  border-width: 0;
}
.article-cta-inner::before { top: 18px; left: 18px; border-top-width: 1px; border-left-width: 1px; }
.article-cta-inner::after { bottom: 18px; right: 18px; border-bottom-width: 1px; border-right-width: 1px; }
.article-cta-eye {
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--bc-rose);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.article-cta-inner h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--bc-cream);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.article-cta-inner p {
  font-size: 15px;
  color: var(--bc-cream);
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 26px;
}
@media (max-width: 960px) {
  .article-hero h1 { font-size: 36px; }
  .article-body { padding: 50px 24px 30px; }
  .article-body p { font-size: 17px; }
  .article-body p.lead { font-size: 20px; }
  .article-back, .article-cta { padding-left: 24px; padding-right: 24px; }
  .article-hero { padding-left: 24px; padding-right: 24px; }
  .article-cta-inner { padding: 36px 28px; }
}

/* ═══════════════ ARTICLE PAGES ═══════════════ */
.article-hero {
  background: var(--bc-cream);
  padding: 90px 48px 60px;
  text-align: center;
  border-bottom: 1px solid var(--bc-bg-line);
}
.article-hero .a-cat {
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--bc-rose-deep);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.article-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 52px;
  color: var(--bc-black);
  letter-spacing: -0.7px;
  line-height: 1.1;
  max-width: 820px;
  margin: 0 auto 22px;
}
.article-hero .a-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--bc-rose-deep);
}
.article-hero .a-meta span { color: var(--bc-text-mute); }
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 40px 90px;
}
.article-body p {
  font-size: 18px;
  color: var(--bc-text);
  line-height: 1.85;
  margin-bottom: 24px;
}
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--bc-black);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin: 48px 0 18px;
}
.article-body p:first-of-type {
  font-size: 21px;
  line-height: 1.7;
  color: var(--bc-black);
}
.article-cta {
  background: var(--bc-black);
  color: var(--bc-cream);
  padding: 70px 48px;
  text-align: center;
  position: relative;
  margin: 0 auto;
  max-width: 920px;
  margin-bottom: 90px;
}
.article-cta::before, .article-cta::after {
  content: '';
  position: absolute;
  width: 32px; height: 32px;
  border-color: var(--bc-rose);
  border-style: solid;
  border-width: 0;
}
.article-cta::before { top: 22px; left: 22px; border-top-width: 1px; border-left-width: 1px; }
.article-cta::after { bottom: 22px; right: 22px; border-bottom-width: 1px; border-right-width: 1px; }
.article-cta .ac-eye {
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--bc-rose);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.article-cta h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--bc-cream);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.article-cta p {
  font-size: 15.5px;
  color: var(--bc-cream);
  opacity: 0.82;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.article-back {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 24px;
}
.article-back a {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--bc-rose-deep);
  font-weight: 600;
  text-transform: uppercase;
}
.article-more {
  background: var(--bc-cream-soft);
  padding: 80px 48px;
  border-top: 1px solid var(--bc-bg-line);
}
.article-more-inner { max-width: 1080px; margin: 0 auto; }
.article-more h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--bc-black);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -0.3px;
}
@media (max-width: 960px) {
  .article-hero h1 { font-size: 36px; }
  .article-body { padding: 48px 24px 64px; }
  .article-body p { font-size: 17px; }
  .article-body p:first-of-type { font-size: 19px; }
  .article-hero, .article-more { padding-left: 24px; padding-right: 24px; }
}

/* ═══════════════ ARTICLE HEADER IMAGE BAND ═══════════════ */
.article-banner {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--bc-bg-line);
}
.article-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 55%, rgba(10,10,10,0.18) 100%);
}
@media (max-width: 960px) {
  .article-banner { height: 240px; }
}
/* About studio image band */
.studio-band {
  max-width: 1080px;
  margin: 48px auto 0;
  height: 320px;
  overflow: hidden;
  border: 1px solid var(--bc-bg-line);
  position: relative;
}
.studio-band img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.studio-band::before, .studio-band::after {
  content: '';
  position: absolute;
  width: 32px; height: 32px;
  border-color: var(--bc-cream);
  border-style: solid;
  border-width: 0;
  z-index: 2;
  mix-blend-mode: difference;
}
.studio-band::before { top: 16px; left: 16px; border-top-width: 1px; border-left-width: 1px; }
.studio-band::after { bottom: 16px; right: 16px; border-bottom-width: 1px; border-right-width: 1px; }
@media (max-width: 960px) { .studio-band { height: 220px; } }

/* ═══════════════ TEMPLATE BOARD SHOWCASE ═══════════════ */
.board-block {
  margin-bottom: 80px;
}
.board-block:last-of-type { margin-bottom: 0; }
.board-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.board-intro .bi-eye {
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--bc-rose-deep);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.board-intro h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 42px;
  color: var(--bc-black);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.board-intro .bi-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--bc-rose-deep);
  font-weight: 500;
  margin-bottom: 18px;
}
.board-intro p {
  font-size: 16px;
  color: var(--bc-text);
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 14px;
}
.board-intro .bi-best {
  font-size: 14px;
  color: var(--bc-text-mute);
  margin-top: 16px;
}
.board-intro .bi-best strong { color: var(--bc-black); font-weight: 600; }
.board-frame {
  position: relative;
  padding: 18px;
  background: var(--bc-cream);
  border: 1px solid var(--bc-bg-line);
  max-width: 1000px;
  margin: 0 auto;
}
.sec.cream .board-frame { background: var(--bc-cream-soft); }
.board-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.board-frame::before, .board-frame::after,
.board-frame .ctr, .board-frame .cbl {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: var(--bc-rose-deep);
  border-style: solid;
  border-width: 0;
  z-index: 2;
}
.board-frame::before { top: 8px; left: 8px; border-top-width: 1px; border-left-width: 1px; }
.board-frame::after { bottom: 8px; right: 8px; border-bottom-width: 1px; border-right-width: 1px; }
.board-frame .ctr { top: 8px; right: 8px; border-top-width: 1px; border-right-width: 1px; }
.board-frame .cbl { bottom: 8px; left: 8px; border-bottom-width: 1px; border-left-width: 1px; }
@media (max-width: 960px) {
  .board-intro h2 { font-size: 32px; }
  .board-block { margin-bottom: 56px; }
  .board-frame { padding: 10px; }
}
