:root{
    --ink:        #2b2018;
    --paper:      #f7f1e6;
    --paper-2:    #efe4d2;
    --terracotta: #a8461f;
    --terracotta-dk: #8a3a24;
    --teal:       #2f6a5e;
    --gold:       #c1922f;
    --line:       rgba(43,32,24,0.16);

    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
    --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

    --pad: clamp(1.25rem, 4vw, 3.5rem);
    --radius: 6px;
  }

  *{ box-sizing: border-box; }

  html{ scroll-behavior: smooth; }

  body{
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: clamp(1rem, 0.94rem + 0.25vw, 1.125rem);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
    *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  }

  a{ color: var(--terracotta-dk); }

  .skip-link{
    position:absolute; left:-999px; top:auto;
    background: var(--ink); color: var(--paper); padding: 0.75em 1.25em;
    z-index: 100; border-radius: var(--radius);
  }
  .skip-link:focus{ left: 1rem; top: 1rem; }

  :focus-visible{ outline: 3px solid var(--gold); outline-offset: 3px; }

  /* ---------- top identity strip ---------- */
  .identity{
    display:flex; align-items:center; justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 0.35rem;
    padding: 1rem var(--pad);
    max-width: 1180px; margin: 0 auto;
  }
  .identity .brand{
    display:flex; align-items:center; gap:0.65rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.01em;
    color: var(--ink);
    text-decoration:none;
  }
  .identity .brand .dot{
    width:.55em; height:.55em; border-radius: 50%;
    background: var(--terracotta);
    display:inline-block;
  }
  .identity .place{
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--ink) 65%, transparent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* ---------- hero ---------- */
  .hero{
    position: relative;
    max-width: 1180px;
    margin: 0.25rem auto 0;
    padding: 0 var(--pad);
  }
  .hero-frame{
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--paper-2);
    /* hexagon notch bottom-right, echoing the "esagonette" tiles */
    clip-path: polygon(
      0 0, 100% 0, 100% calc(100% - 3.2vw),
      calc(100% - 3.2vw) 100%, 0 100%
    );
  }
  .hero-frame img{
    display:block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .hero-title{
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(0.5rem, 2vw, 1rem) var(--pad) clamp(1.1rem, 3vw, 1.75rem);
  }
  .hero-title .eyebrow{
    display:block;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terracotta-dk);
    margin-bottom: 0.4rem;
  }
  .hero-title h1{
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2rem, 5vw + 0.5rem, 3.6rem);
    line-height: 1.02;
    color: var(--ink);
  }

  /* ---------- content ---------- */
  main{
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.5rem) var(--pad) 0;
  }

  .lede{
    max-width: 100%;
    font-size: clamp(1.08rem, 1rem + 0.4vw, 1.3rem);
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.5;
    color: var(--ink);
    margin: 0 0 1.75rem;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
  }
  .lede em{ font-style: italic; color: var(--terracotta-dk); }

  .body-text{
    max-width: 100%;
    color: color-mix(in srgb, var(--ink) 88%, transparent);
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
  }
  .body-text p{ margin: 0 0 1.1em; }
  .body-text q, .body-text .q{ font-style: italic; }

  /* hexagon-tile divider — the page's signature element */
  .tile-divider{
    display:flex;
    gap: clamp(0.35rem, 1.4vw, 0.6rem);
    margin: clamp(2rem, 5vw, 3rem) 0;
    max-width: 68ch;
  }
  .tile-divider span{
    flex: 1 1 0;
    max-width: 2.4rem;
    aspect-ratio: 1 / 1.05;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  }
  .tile-divider span:nth-child(6n+1){ background: var(--terracotta); }
  .tile-divider span:nth-child(6n+2){ background: var(--teal); }
  .tile-divider span:nth-child(6n+3){ background: var(--gold); }
  .tile-divider span:nth-child(6n+4){ background: var(--terracotta-dk); }
  .tile-divider span:nth-child(6n+5){ background: var(--paper-2); border: 1px solid var(--line); }
  .tile-divider span:nth-child(6n+6){ background: var(--teal); opacity: 0.6; }

  /* ---------- contact card ---------- */
  .contact{
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.25rem, 4vw, 2.25rem);
    align-items: center;
    margin: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    background: var(--paper-2);
    border-radius: var(--radius);
    border: 1px solid var(--line);
  }
  .contact .logo-frame{
    width: clamp(4.5rem, 12vw, 6.5rem);
    height: clamp(4.5rem, 12vw, 6.5rem);
    flex: none;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    display:flex; align-items:center; justify-content:center;
  }
  .contact .logo-frame img{
    width: 100%; height: 100%; object-fit: cover;
  }
  .contact-info{
    font-style: normal;
    flex: 1 1 16rem;
  }
  .contact-info .org{
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--terracotta-dk);
  }
  .contact-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .contact-list li{
    display: flex;
    align-items: center;
    gap: 0.65rem;
    line-height: 1.4;
  }
  .contact-list .ico{
    flex: none;
    width: 1.15em;
    height: 1.15em;
    color: var(--teal);
  }
  .contact-list a{
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
  }
  .contact-list a:hover{ color: var(--terracotta-dk); border-color: currentColor; }

  @media (max-width: 520px){
    .contact{ flex-direction: column; text-align: center; }
    .contact-info{ flex: none; width: 100%; }
    .contact-list{ max-width: 22rem; margin: 0 auto; text-align: left; }
    .contact-list li{ align-items: flex-start; }
    .contact-list .ico{ margin-top: 0.15em; }
  }

  footer{
    border-top: 1px solid var(--line);
    padding: 1.5rem var(--pad) 2.5rem;
    max-width: 1180px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--ink) 55%, transparent);
    display:flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
    justify-content: space-between;
  }
  footer a{
    color: inherit;
    text-decoration: underline;
    text-decoration-color: var(--line);
  }
  footer a:hover{
    color: var(--terracotta-dk);
    text-decoration-color: currentColor;
  }