:root {
    --paper: #f7f6f2;
    --ink: #171717;
    --muted: #737373;
    --line: #d8d5cd;
    --soft: #ece9e2;
    --accent: #d62222;
    --accent-soft: #f1d8d6;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--paper) 88%, white);
    backdrop-filter: blur(18px);
}

.nav {
    max-width: var(--max);
    min-height: 72px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    text-transform: capitalize;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.logo-mark {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--ink);
    color: white;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.logo-mark img {
    position: absolute;
    inset: 0;
    filter: grayscale(1) contrast(1.08);
}

.brand-name {
    font-size: 13px;
    font-weight: 780;
    line-height: 1;
    text-transform: uppercase;
}

.brand-tag {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1;
}

.nav-links {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 28px;
    color: #404040;
    font-size: 12px;
    font-weight: 650;
    text-transform: capitalize;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--accent);
}
.dropdown {
    position: relative;
}

.dropbtn {
    text-decoration: none;
    color: inherit;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 180px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);

    overflow: hidden;
    z-index: 1000;
}

.dropdown-content a {
    display: grid;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    grid-auto-flow: row;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
}

.dropdown:hover .dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    grid-auto-flow: row;
} 
    
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 24px;
  border-radius: 999px;

  background: #171717;
  color: #fff;

  font-size: 14px;
  font-weight: 600;

  transition: 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  background: #d62222;
}

main {
    overflow: hidden;
}

section {
    border-bottom: 1px solid var(--line);
}

.hero,
.artisan-strip-section {
    border-bottom: 0;
}

.section-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 84px 24px;
}

.eyebrow {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero {
    min-height: calc(100vh - 72px);
    display: grid;
    align-items: stretch;
}

.hero-grid {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 42px 24px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.hero-media {
    width: 90%;
    max-width: 1200px;
    height: 70vh;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 24px;
}

.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-slot {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, .06) 25%, transparent 25%) 0 0 / 28px 28px,
        linear-gradient(315deg, rgba(0, 0, 0, .05) 25%, transparent 25%) 0 0 / 28px 28px,
        #d7d7d4;
}

.photo-slot::after {
    content: attr(data-label);
    position: absolute;
    left: 18px;
    bottom: 16px;
    color: rgba(0, 0, 0, .58);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.photo-slot.has-image::after {
    content: "";
}

.slot-upload {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
    background: rgba(0, 0, 0, .72);
    color: white;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.slot-upload span {
    transform: translateY(-1px);
    font-size: 20px;
    line-height: 1;
}

.slot-upload input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.hero-copy {
    align-self: end;
    padding-bottom: 28px;
}

h1 {
    max-width: 640px;
    margin: 18px 0 24px;
    font-size: clamp(48px, 7vw, 104px);
    font-weight: 850;
    line-height: .86;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-text {
    max-width: 520px;
    color: #3f3f3f;
    font-size: 16px;
    line-height: 1.55;
}

.hero-aside {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 28px;
}

.stats-section{
    display:flex;
    align-items:flex-start;
    gap:70px;
    margin-top:50px;
}

.kicker{
    width:120px;
    font-size:25px;
    font-weight:400;
    margin-top: 43px;
    line-height:1.05;
}

.stats-wrapper{
    display:flex;
    align-items:flex-end;
    gap:0;
}

.cluster-count{
    width:120px;
    height:300px; /* same height as circles area */

    display:flex;
    flex-direction:column;

    justify-content:center; /* vertical center */
    align-items:center;     /* horizontal center */

    margin-right:25px;
}

.cluster-count .number{
    font-size:84px;
    font-weight:700;
    line-height:0.9;
    margin:0;
    margin-top: 80px;
}

.cluster-count .label{
    margin-top:-5px;
    font-size:14px;
    color:#777;
}

.circle{
    width:200px;
    height:200px;
    border-radius:50%;
    border:1px solid #bfbfbf;
    margin-right:-1px;
}

.stat-block{
    display:flex;
    flex-direction:column;
    align-items:center;
    position:relative;
}

.stat-top{
    width:100%;
    padding-left:12px;
    margin-bottom:12px;
    border-left:1px solid #d6d6d6;
}

.stat-top strong{
    display:block;
    font-size:24px;
    font-weight:700;
    line-height:1;
}

.stat-top span{
    font-size:12px;
    color:#8a8a8a;
}

.featured{
    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.95) 0%,
            rgba(244,225,225,0.9) 45%,
            rgba(237,204,204,0.85) 100%
        );
    border:none;
}

.circle-top-text{
    margin-bottom:12px;
}

.circle-top-text strong{
    display:block;
    font-size:22px;
    font-weight:700;
}

.circle-top-text span{
    color:#888;
    font-size:12px;
}

.first-circle{
    display:flex;
    align-items:center;
    gap:18px;
}

.circle-side-text{
    text-align:right;
}

.circle-side-text strong{
    display:block;
    font-size:52px;
    line-height:1;
}

.circle-side-text span{
    color:#888;
    font-size:12px;
}

.stat strong {
    display: block;
    font-size: 24px;
    line-height: 1;
}

.stat span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 760;
    line-height: 1.1;
    text-transform: uppercase;
}

.section-grid {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 52px;
}

.section-title {
    position: sticky;
    top: 104px;
    align-self: start;
}

.section-title h2 {
    margin: 8px 0 0;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
}

.artisan-strip-section {
    padding: 10px 0 34px;
}

.artisan-marquee {
    width: 100%;
    overflow: hidden;
}

.artisan-track {
    display: flex;
    width: max-content;
    gap: 18px;
    padding: 8px 18px;
    animation: artisan-scroll 34s linear infinite;
}

.artisan-marquee:hover .artisan-track,
.artisan-marquee:focus-within .artisan-track {
    animation-play-state: paused;
}

.artisan-card {
    display: grid;
    width: clamp(140px, 14vw, 190px);
    gap: 10px;
    color: var(--ink);
}

.artisan-card:hover,
.artisan-card:focus-visible {
    color: var(--accent);
}

.artisan-photo {
    min-height: 0;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(0, 0, 0, .07) 25%, transparent 25%) 0 0 / 24px 24px,
        linear-gradient(315deg, rgba(0, 0, 0, .055) 25%, transparent 25%) 0 0 / 24px 24px,
        #d7d7d4;
}

.artisan-photo img {
    border-radius: inherit;
}

.artisan-photo::after {
    content: attr(data-label);
    left: 50%;
    bottom: 50%;
    width: 70%;
    transform: translate(-50%, 50%);
    text-align: center;
    line-height: 1.25;
}

.artisan-card span {
    overflow: hidden;
    color: inherit;
    font-size: 12px;
    font-weight: 760;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#Design {
    scroll-margin-top: 92px;
}

#Design .section-inner {
    padding-top: 48px;
}

#Design .section-grid {
    grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
    gap: clamp(120px, 13vw, 210px);
}

@keyframes artisan-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }
}

.impact-feature {
    background: var(--paper);
}

.impact-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 70px 24px 78px;
    display: grid;
    grid-template-columns: minmax(190px, 220px) 72px minmax(250px, 280px) minmax(360px, 1fr);
    gap: 38px;
    align-items: start;
}

.impact-title {
    margin: 0;
    font-size: 28px;
    font-weight: 500;
    line-height: .98;
    text-transform: none;
}

.impact-title::first-line {
    font-weight: 800;
}

.impact-number {
    color: #030303;
    font-size: 48px;
    font-weight: 500;
    line-height: .86;
    text-align: right;
}

.impact-copy {
    min-height: 296px;
    padding-left: 38px;
    border-left: 1px solid #cfcfcf;
}

.impact-label {
    margin: 0 0 8px;
    color: #1b1b1b;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.impact-copy p:last-child {
    max-width: 250px;
    margin: 0;
    color: #8a8a8a;
    font-size: 18px;
    line-height: 1.18;
}

.impact-image {
    width: 100%;
    height: 296px;
    overflow: hidden;
}

.impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

#quote {
    min-height: 306px;
    padding: 38px 24px 44px;
    display: grid;
    place-items: center;
    border-bottom: 0;
    background-color: #f8f8f8;
    background-image: url("bg.png");
    background-repeat: space no-repeat;
    background-position: center;
    background-size: auto 142px;
}

#quote p {
    max-width: 500px;
    margin: 0;
    color: #202124;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.24;
    text-align: center;
}

.museum-showcase {
    min-height: 430px;
    padding: 24px 0 46px;
    background: var(--paper);
    border-bottom: 0;
}

.showcase-collage {
    position: relative;
    max-width: var(--max);
    height: 360px;
    margin: 0 auto;
}

.showcase-photo {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background: #d7d7d4;
    box-shadow: none;
}

.showcase-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.showcase-main {
    z-index: 4;
    left: 24.5%;
    top: 0;
    width: 41%;
    height: 298px;
}

.showcase-main img {
    filter: none;
}

.showcase-left-top {
    z-index: 2;
    left: 0;
    top: 68px;
    width: 25%;
    height: 148px;
    transform: rotate(-14deg);
}

.showcase-left-bottom {
    z-index: 1;
    left: 14%;
    top: 205px;
    width: 22%;
    height: 126px;
    transform: rotate(10deg);
}

.showcase-right-top {
    z-index: 3;
    right: 6%;
    top: 76px;
    width: 23%;
    height: 130px;
    transform: rotate(-12deg);
}

.showcase-right-bottom {
    z-index: 2;
    right: 10%;
    top: 204px;
    width: 25%;
    height: 142px;
    transform: rotate(9deg);
}

.showcase-caption {
    position: absolute;
    z-index: 5;
    left: 67%;
    top: 0;
    color: #1f1f1f;
}

.showcase-caption p {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.1;
}

.showcase-caption span {
    display: block;
    color: #8c8c8c;
    font-size: 14px;
    line-height: 1.1;
    text-transform: uppercase;
}

#impact {
    background: #f7f7f7;
    border-bottom: 0;
    padding: 58px 24px 76px;
}

.impact-top-row {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(150px, 210px) minmax(420px, 1fr) minmax(170px, 230px);
    gap: 42px;
    align-items: center;
}

.impact-left {
    color: #050505;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}

.impact-left span {
    color: #f00000;
}

.impact-right {
    color: #7c7c7c;
    font-size: 18px;
    font-weight: 650;
    line-height: .98;
    text-align: justify;
}

.impact-image-section {
    min-width: 0;
}

.impact-image-section img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
}

.impact-bottom-image {
    max-width: 720px;
    margin: 68px auto 0;
}

.impact-bottom-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
}

.impact-map-section {
    max-width: 1120px;
    min-height: 560px;
    margin: 88px auto 0;
    display: grid;
    grid-template-columns: 210px minmax(420px, 1fr) 280px;
    gap: 48px;
    align-items: start;
}

.impact-map-left {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.impact-map-left h2,
.impact-map-left p {
    margin: 0;
    color: #030303;
    font-size: 28px;
    font-weight: 400;
    line-height: .96;
}

.impact-map-left b {
    font-weight: 800;
}

.impact-map-image {
    padding-top: 0;
}

.impact-map-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
}

.impact-map-copy {
    padding-top: 106px;
}

.impact-map-copy h3 {
    margin: 0 0 22px;
    color: #0d0d0d;
    font-size: 18px;
    font-weight: 650;
    line-height: 1;
}

.impact-map-copy p {
    margin: 0;
    color: #858585;
    font-size: 18px;
    font-weight: 650;
    line-height: .98;
    text-align: justify;
}

.artisan-story-feature {
    max-width: 1120px;
    min-height: 560px;
    margin: 72px auto 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: center;
}

.artisan-story-label h2 {
    margin: 0;
    color: #030303;
    font-size: 16px;
    font-weight: 400;
    line-height: .92;
}

.artisan-story-label b {
    font-weight: 800;
}

.artisan-story-collage {
    position: relative;
    width: min(440px, 78vw);
    height: 285px;
    margin: 24px auto 0;
}

.story-back,
.story-image {
    position: absolute;
    margin: 0;
}

.story-back-dark {
    z-index: 1;
    left: 96px;
    top: 0;
    width: 190px;
    height: 220px;
    background: #1f1f1f;
    transform: rotate(-11deg);
}

.story-back-muted {
    z-index: 2;
    left: 52px;
    top: 74px;
    width: 300px;
    height: 156px;
    background: #686260;
}

.story-image {
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}

.story-image-left {
    z-index: 3;
    left: 62px;
    top: 34px;
    width: 220px;
    height: 184px;
    transform: rotate(14deg);
}

.story-image-main {
    z-index: 4;
    right: 12px;
    top: 72px;
    width: 214px;
    height: 170px;
    transform: rotate(14deg);
}

.artisan-story-line {
    margin: 12px 0 0;
    color: #121212;
    font-size: 22px;
    font-weight: 400;
    line-height: .98;
    text-align: center;
}

.artisan-story-line b {
    font-weight: 800;
}

.cluster-detail-section {
    max-width: var(--max);
    margin: 0 auto;
    padding: 72px 24px 92px;
    display: grid;
    gap: 72px;
    border-bottom: 0;
}

.cluster-detail-card {
    display: grid;
    gap: 18px;
    scroll-margin-top: 96px;
    content-visibility: auto;
    contain-intrinsic-size: 1200px;
}

.cluster-detail-card h2 {
    margin: 0;
    color: #050505;
    font-size: 18px;
    font-weight: 760;
    line-height: 1;
}

.cluster-detail-card img {
    width: min(100%, 92vh);
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
    justify-self: center;
    object-fit: cover;
    border: 0;
    background: transparent;
    filter: none;
}

.profile-panel {
    display: grid;
    grid-template-columns: minmax(260px, .9fr) minmax(360px, 1.1fr);
    gap: 42px;
    align-items: center;
}

.cluster-orbit {
    position: relative;
    aspect-ratio: 1;
    max-width: 450px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    background:
        radial-gradient(circle at center, transparent 0 27%, var(--line) 27.2% 27.6%, transparent 27.8%),
        radial-gradient(circle at center, transparent 0 49%, var(--line) 49.2% 49.6%, transparent 49.8%),
        repeating-conic-gradient(from 0deg, rgba(0, 0, 0, .045) 0deg 1deg, transparent 1deg 30deg);
}

.orbit-node {
    position: absolute;
    width: 24%;
    aspect-ratio: 1;
    border: 8px solid var(--paper);
    border-radius: 50%;
    overflow: hidden;
    background: #cfcfcf;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
}

.orbit-node.large {
    width: 34%;
    left: 33%;
    top: 33%;
    border-color: var(--paper);
}

.node-a {
    left: 38%;
    top: 2%;
}

.node-b {
    right: 4%;
    top: 33%;
}

.node-c {
    right: 18%;
    bottom: 6%;
}

.node-d {
    left: 18%;
    bottom: 6%;
}

.node-e {
    left: 4%;
    top: 33%;
}

.profile-copy {
    gap: 90px;
    float: right;
    text-align: left;
    margin-left: 200px;
    
}

.lead {
    margin: 0;
    font-size: clamp(28px, 4vw, 58px);
    font-weight: 830;
    line-height: .96;
    text-transform: uppercase;
}

.lead .red {
    color: var(--accent);
}

.body-copy {
    max-width: 640px;
    color: #4c4c4c;
    font-size: 15px;
    line-height: 1.65;
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.fact {
    min-height: 112px;
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.fact b {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1;
}

.fact span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 720;
    line-height: 1.3;
    text-transform: uppercase;
}

.gallery {
    display: grid;
    grid-template-columns: 1.1fr .7fr .7fr;
    grid-auto-rows: 190px;
    gap: 10px;
}

.gallery .photo-slot:first-child {
    grid-row: span 2;
    min-height: 390px;
}

.map-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
    gap: 42px;
    align-items: center;
}

.presence-map {
    position: relative;
    min-height: 420px;
    border: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .035) 1px, transparent 1px) 0 0 / 58px 58px,
        linear-gradient(0deg, rgba(0, 0, 0, .035) 1px, transparent 1px) 0 0 / 58px 58px,
        rgba(255, 255, 255, .32);
}

.presence-map svg {
    position: absolute;
    inset: 11% 14%;
    width: 72%;
    height: 78%;
    fill: none;
    stroke: #b9b6ae;
    stroke-width: 1.2;
}

.pin {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(214, 34, 34, .08);
}

.pin.one {
    left: 58%;
    top: 36%;
}

.pin.two {
    left: 47%;
    top: 52%;
}

.pin.three {
    left: 64%;
    top: 63%;
}

.pin.four {
    left: 40%;
    top: 70%;
}

.timeline {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--ink);
}

.timeline div {
    position: relative;
    padding-top: 16px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 760;
    text-transform: uppercase;
}

.timeline div::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ink);
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.story-card {
    min-height: 300px;
    display: grid;
    grid-template-rows: 170px 1fr;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .26);
}

.story-card .copy {
    padding: 18px 0 0;
}

.story-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: .95;
    text-transform: uppercase;
}

.story-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.contact-band {
    background: var(--ink);
    color: white;
}

.contact-band .section-inner {
    padding-top: 92px;
    padding-bottom: 92px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(220px, .55fr) minmax(280px, .45fr);
    gap: 56px;
    align-items: center;
}

.contact-image {
    width: min(100%, 420px);
    height: auto;
    justify-self: start;
    object-fit: contain;
    filter: none;
}

.contact-title {
    margin: 0;
    max-width: 860px;
    font-size: clamp(44px, 8vw, 112px);
    font-weight: 850;
    line-height: .88;
    text-transform: uppercase;
}

.contact-title span {
    color: var(--accent);
}

.contact-list {
    display: grid;
    gap: 18px;
    color: #ddd;
    font-size: 13px;
    line-height: 1.5;
}

.contact-list b {
    display: block;
    margin-bottom: 4px;
    color: white;
    font-size: 11px;
    text-transform: uppercase;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 24px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 740;
    text-transform: uppercase;
}

[contenteditable="true"] {
    outline: 0;
}

[contenteditable="true"]:focus-visible {
    box-shadow: 0 0 0 3px rgba(214, 34, 34, .16);
    background: rgba(255, 255, 255, .45);
}

@media (max-width: 920px) {
    .nav {
        grid-template-columns: 1fr auto;
    }

    .nav-links {
        grid-column: 1 / -1;
        justify-self: stretch;
        justify-content: space-between;
        gap: 14px;
        padding-bottom: 16px;
    }

    .hero-grid,
    .profile-panel,
    .impact-inner,
    .map-story,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-rows: auto;
    }

    .hero-media {
        min-height: 360px;
    }

    .stats-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-row .kicker {
        grid-column: 1 / -1;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-title {
        position: static;
    }

    #cluster .section-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .impact-inner {
        gap: 24px;
    }

    .impact-number {
        text-align: left;
    }

    .impact-copy {
        min-height: 0;
        padding-left: 24px;
    }

    .museum-showcase {
        min-height: 760px;
    }

    .showcase-collage {
        height: 690px;
    }

    .showcase-main {
        left: 8%;
        top: 90px;
        width: 84%;
        height: 290px;
    }

    .showcase-caption {
        left: 8%;
        top: 0;
    }

    .showcase-left-top {
        left: 2%;
        top: 410px;
        width: 45%;
    }

    .showcase-left-bottom {
        left: 8%;
        top: 540px;
        width: 42%;
    }

    .showcase-right-top {
        right: 2%;
        top: 410px;
        width: 45%;
    }

    .showcase-right-bottom {
        right: 6%;
        top: 540px;
        width: 44%;
    }

    .impact-top-row {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .impact-left,
    .impact-right {
        max-width: 360px;
        justify-self: center;
        text-align: left;
    }

    .impact-map-section {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .impact-map-left {
        min-height: 0;
        gap: 28px;
    }

    .impact-map-copy {
        padding-top: 0;
    }

    .artisan-story-feature {
        min-height: 500px;
    }

    .gallery,
    .story-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .nav {
        min-height: 64px;
        padding: 0 16px;
        gap: 14px;
    }

    .brand-tag {
        display: none;
    }

    .upload-chip {
        padding: 9px 11px;
        font-size: 10px;
    }

    .section-inner,
    .impact-inner,
    .hero-grid,
    .footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-inner {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .impact-inner {
        padding-top: 52px;
        padding-bottom: 58px;
    }

    .impact-title {
        font-size: 26px;
    }

    .impact-image {
        height: 220px;
    }

    #quote {
        min-height: 260px;
        background-size: auto 110px;
    }

    #quote p {
        max-width: 360px;
        font-size: 28px;
    }

    .museum-showcase {
        min-height: 620px;
        padding-bottom: 34px;
    }

    .showcase-collage {
        height: 555px;
    }

    .showcase-main {
        left: 4%;
        width: 92%;
        height: 220px;
    }

    .showcase-left-top,
    .showcase-right-top {
        top: 350px;
        height: 100px;
    }

    .showcase-left-bottom,
    .showcase-right-bottom {
        top: 450px;
        height: 96px;
    }

    #impact {
        padding: 52px 16px 58px;
    }

    .impact-left {
        font-size: 28px;
    }

    .impact-right {
        font-size: 16px;
        line-height: 1.05;
    }

    .impact-bottom-image {
        margin-top: 44px;
    }

    .impact-map-section {
        margin-top: 58px;
    }

    .impact-map-left h2,
    .impact-map-left p {
        font-size: 26px;
    }

    .impact-map-copy p {
        font-size: 16px;
        line-height: 1.05;
    }

    .artisan-story-feature {
        margin-top: 52px;
    }

    .artisan-story-collage {
        width: min(360px, 88vw);
        height: 250px;
    }

    .story-back-dark {
        left: 78px;
        width: 150px;
        height: 190px;
    }

    .story-back-muted {
        left: 34px;
        top: 68px;
        width: 260px;
        height: 132px;
    }

    .story-image-left {
        left: 42px;
        width: 190px;
        height: 160px;
    }

    .story-image-main {
        right: 8px;
        width: 176px;
        height: 144px;
    }

    .artisan-story-line {
        font-size: 20px;
    }

    .cluster-detail-section {
        padding: 52px 16px 64px;
        gap: 48px;
    }

    .hero-copy {
        padding-bottom: 0;
    }

    .stats-row,
    .fact-grid,
    .gallery,
    .story-cards,
    .timeline {
        grid-template-columns: 1fr;
    }

    .gallery .photo-slot:first-child {
        min-height: 260px;
    }

    .photo-slot,
    .story-card .photo-slot {
        min-height: 220px;
    }

    .stat {
        min-height: 104px;
        border-radius: 999px;
    }

    .footer {
        flex-direction: column;
    }
}
