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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #f5f3ef;
  color: #111;
}

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

/* ── MASTHEAD ── */
.mast {
  background: #fff;
  border-bottom: 1px solid #e0ddd8;
  padding: 2.2rem 2rem 1.4rem;
  text-align: center;
}

.mast-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.6rem;
}

.mast-name {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.mast-subb {
  font-size: 18px;
  letter-spacing: 0.16em;
  margin-top: 15px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #696969;
}

.mast-sub {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #aaa;
}

/* ── NAVBAR ── */
.navbar {
  background: #111;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-a {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  border-right: 1px solid #2a2a2a;
  transition: background 0.15s, color 0.15s;
}

.nav-a:first-child {
  border-left: 1px solid #2a2a2a;
}

.nav-a:hover,
.nav-a.active {
  background: #fff;
  color: #111;
}

/* ── DATE BAR ── */
.date-bar {
  background: #f5f3ef;
  border-bottom: 1px solid #e0ddd8;
  text-align: center;
  padding: 0.35rem;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #767676;
}
.body {
    margin-left: 150px;
    margin-right: 150px;
}
/* ── PAGE HERO ── */
.page-hero {
  background: #fff;
  border-bottom: 1px solid #e0ddd8;
  padding: 2.5rem 1.6rem 2rem;
  display: flex;
  align-items: flex-end;
  gap: 1.4rem;
}

.page-hero-swatch {
  width: 56px;
  height: 72px;
  border-radius: 4px;
  flex-shrink: 0;
}

.page-hero-stamp {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
  margin-bottom: 6px;
}

.page-hero-num {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #bbb;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.page-hero-title {
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #111;
}

.page-hero-sub {
  font-size: 14px;
  color: #888;
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
}

/* ── SECTION WRAPPERS ── */
.section-wrap {
  padding: 2rem 1.6rem 0;
}

.section-label {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #767676;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e0ddd8;
}

.divider {
  border: none;
  border-top: 1px solid #e0ddd8;
  margin: 2rem 1.6rem 0;
}

/* ── GRID LAYOUTS ── */
.cols3 {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.cols2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.cols4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* ── SWATCH CARDS ── */
.swatch {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
  background: #fff;
  transition: transform 0.18s, box-shadow 0.18s;
   width: 100%;
}

.swatch:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.sw-color {
  overflow: hidden;
  position: relative;
display: block;
  width: 100%;
}

.sw-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;

}

.lead-color  { height: 200px; }
.tall-color  { height: 300px; }
.color       { height: 200px; }
.mid-color   { height: 200px; }
.sm-color    { height: 100px; }
.xs-color    { height: 70px; }

.sw-body {
  background: #fff;
  padding: 0.65rem 0.85rem 0.8rem;
}

.sw-stamp {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
  margin-bottom: 4px;
}

.sw-num {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #a5a5a5;
  text-transform: uppercase;
  margin-bottom: 6px;
  margin-top:6px;
}

.sw-title {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 3px;
  line-height: 1.3;
}

.sw-title-lg {
  font-size: 20px;
}

.sw-preview {
  font-size: 15px;
  color: #5e5e5e;
  line-height: 1.5;
}

.sw-arrow {
  display: inline-block;
  margin-top: 7px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #818181;
}

/* ── WHITE CONTENT CARDS ── */
.content-card {
  background: #fff;
  border-radius: 6px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.content-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.5rem;
}

.content-card-body {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* ── SKILL ROWS ── */
.skill-row {
  background: #fff;
  border-radius: 6px;
  padding: 1rem 1.2rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.skill-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.skill-name {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  flex: 1;
  margin-bottom: 8px;
}

.skill-desc {
  font-size: 15px;
  color: #aaa;
}

/* ── TIMELINE ── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  background: #fff;
  border-radius: 6px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

.timeline-year {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #aaa;
  text-transform: uppercase;
  min-width: 3rem;
  padding-top: 1px;
}

.timeline-title {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin-bottom: 2px;
}

.timeline-org {
  font-size: 11px;
  color: #888;
  font-style: italic;
}

.timeline-desc {
  font-size: 11px;
  color: #aaa;
  margin-top: 4px;
  line-height: 1.5;
}

/* ── ARTICLE CARDS ── */
.article-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
  transition: transform 0.18s, box-shadow 0.18s;
  display: block;
  width: 500px;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
}

.article-color-bar {
  height: 6px;
  width: 100%;
  display: block;
}

.article-body {
  padding: 1rem 1.1rem 1.1rem;
   flex: 1;
  min-width: 0;
}

.article-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 5px;
}

.article-title {
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  margin-bottom: 6px;
}

.article-excerpt {
  font-size: 11px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 10px;
}

.article-meta {
  font-size: 10px;
  color: #bbb;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-arrow {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bbb;
  border-bottom: 1px solid #e0ddd8;
  padding-bottom: 1px;
}

.article-card-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.article-thumb {
  width: 120px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
  align-self: stretch;
}

/* ── STAT TILES ── */
.stat-tile {
  background: #fff;
  border-radius: 6px;
  padding: 1.2rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  text-align: center;
}

.stat-color-top {
  height: 4px;
  border-radius: 2px;
  margin-bottom: 0.8rem;
}

.stat-number {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-top: 4px;
}

/* ── CONTACT SECTION ── */
.contact-wrap {
  padding: 2rem 1.6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.contact-card {
  background: #111;
  border-radius: 6px;
  padding: 1.8rem;
}

.contact-heading {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.contact-sub {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.04em;
  margin-bottom: 1.4rem;
  line-height: 1.7;
}


.contact-textarea {
  height: 90px;
  resize: none;
}

.contact-btn {
  width: 100%;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 4px;
  padding: 0.65rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  margin-top: 0.2rem;
}

.contact-btn:hover {
  background: #e0ddd8;
}


/* ── LINK TILES ── */
.links-stack {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.link-tile {
  background: #fff;
  border-radius: 6px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  transition: transform 0.15s, box-shadow 0.15s;
}

.link-tile:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.link-tile-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.link-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.link-label {
  font-size: 12px;
  font-weight: 600;
  color: #111;
}

.link-sub {
  font-size: 11px;
  color: #aaa;
}

.link-arrow {
  font-size: 14px;
  color: #ccc;
}

/* ── FOOTER ── */
.footer {
  margin-top: 2.5rem;
  background: #111;
  padding: 2rem 1.6rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 0.8rem;
}

.footer-link {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 0.4rem;
  transition: color 0.15s;
}

.footer-link:hover {
  color: #fff;
}

.footer-name {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 11px;
  color: #444;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 11px;
  color: #444;
}

.footer-badge {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #333;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .cols3 { grid-template-columns: 1fr; }
  .cols4 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .cols2 { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .cols4 { grid-template-columns: 1fr; }
}