/* Design tokens: edit these to adjust the whole visual system. */
:root {
  --paper:#f4f3ef;
  --ink:#191919;
  --muted:#5b5a57;
  --line:#cccbc6;
  --accent:#5519c5;
  --space:clamp(24px,5vw,88px);
  --sans:Arial,Helvetica,sans-serif;
  --serif:Georgia,'Times New Roman',serif;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:100px;
}

body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font:16px/1.6 var(--sans);
}

a {
  color:inherit;
  text-decoration:none;
}

button {
  font:inherit;
}

img {
  display:block;
  width:100%;
  height:auto;
}

figure,p,h1,h2,h3 {
  margin:0;
}

a,button,summary {
  -webkit-tap-highlight-color:transparent;
}

a:focus-visible,button:focus-visible,summary:focus-visible {
  outline:3px solid #915cf7;
  outline-offset:6px;
}

::selection {
  background:var(--accent);
  color:#fff;
}

em {
  font-family:var(--serif);
  font-weight:400;
}

h2 {
  font-size:clamp(42px,5.6vw,86px);
  font-weight:400;
  letter-spacing:-.06em;
  line-height:1.06;
}

p {
  max-width:65ch;
}

.section {
  padding:100px var(--space);
}

.section-label {
  display:flex;
  justify-content:space-between;
  gap:24px;
  padding-bottom:28px;
  border-top:1px solid var(--line);
  padding-top:20px;
  font-size:12px;
  letter-spacing:.09em;
}

.eyebrow {
  font-size:12px;
  letter-spacing:.12em;
}

.skip-link {
  position:fixed;
  left:20px;
  top:-100px;
  background:white;
  padding:12px;
  z-index:100;
}

.skip-link:focus {
  top:12px;
}

.header {
  height:96px;
  padding:0 var(--space);
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:absolute;
  top:0;
  width:100%;
  z-index:20;
  color:white;
  border-bottom:1px solid #ffffff40;
}

.wordmark {
  font-size:40px;
  font-weight:700;
  letter-spacing:-3px;
  line-height:.85;
  display:inline-block;
}

.wordmark span {
  display:block;
  font-size:9px;
  letter-spacing:3px;
  font-weight:400;
  margin-top:11px;
  text-align:center;
}

.header nav {
  display:flex;
  gap:36px;
  font-size:14px;
}

.header nav a {
  padding:12px 0;
}

.header nav a:hover {
  text-decoration:underline;
  text-underline-offset:7px;
}

.menu-toggle {
  color:inherit;
  border:0;
  background:none;
  cursor:pointer;
  padding:12px 0;
}

.menu-toggle[hidden] {
  display:none;
}

.hero {
  position:relative;
  min-height:850px;
  min-height:max(780px,100svh);
  background:#363636;
  color:#fff;
  isolation:isolate;
  padding:130px var(--space) 30px;
  display:flex;
  flex-direction:column;
}

.hero-image {
  position:absolute;
  inset:0;
  height:100%;
  object-fit:cover;
  object-position:center 42%;
  z-index:-2;
  opacity:var(--hero-opacity,1);
  transform:translateY(var(--hero-shift,0px));
}

.hero {
  overflow:hidden;
}

.hero:after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,#0005 0%,#0001 28%,#0009 76%,#000a 100%);
  z-index:-1;
}

.hero-top {
  display:flex;
  justify-content:space-between;
  font-size:12px;
  letter-spacing:.1em;
}

.hero-copy {
  margin-top:auto;
  padding-top:150px;
}

.hero h1 {
  font-size:clamp(72px,10.2vw,164px);
  font-weight:400;
  letter-spacing:-.07em;
  line-height:.85;
  margin:26px 0 36px;
}

.hero h1 em {
  letter-spacing:-.065em;
}

.hero-bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.hero-bottom p {
  font-size:14px;
}

.circle-link {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  width:160px;
  height:160px;
  border:1px solid #fff9;
  border-radius:50%;
  font-size:14px;
  line-height:1.4;
  transition:background .25s,color .25s;
}

.circle-link>span:last-child {
  font-size:30px;
}

.circle-link:hover {
  background:var(--paper);
  color:var(--ink);
}

.scroll-cue {
  display:flex;
  justify-content:space-between;
  border-top:1px solid #fff5;
  margin-top:35px;
  padding-top:18px;
  font-size:12px;
  letter-spacing:.1em;
}

.about-grid {
  display:grid;
  grid-template-columns:1.1fr .8fr;
  gap:10%;
  align-items:center;
  padding-top:35px;
}

.about-copy h2 {
  font-size:clamp(36px,4.4vw,68px);
  margin-bottom:36px;
}

.about-copy h2 em {
  display:block;
  margin-top:14px;
}

.about-copy p,.events-copy>p:not(.eyebrow) {
  color:var(--muted);
  margin-bottom:18px;
}

.about-photo img {
  aspect-ratio:4/5;
  object-fit:cover;
}

.about-photo figcaption {
  font-size:11px;
  letter-spacing:.1em;
  margin-top:12px;
}

.text-link {
  display:flex;
  justify-content:space-between;
  gap:28px;
  max-width:360px;
  padding:18px 0;
  border-bottom:1px solid var(--ink);
  margin-top:26px;
  font-size:14px;
}

.text-link:hover {
  color:var(--accent);
}

.section-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  margin:25px 0 55px;
}

.section-heading p {
  font-size:14px;
  color:var(--muted);
}

.services {
  padding-top:25px;
}

.service-list {
  border-top:1px solid var(--line);
}

details {
  border-bottom:1px solid var(--line);
  transition:background .25s;
}

summary {
  display:flex;
  align-items:center;
  gap:30px;
  padding:30px 10px;
  cursor:pointer;
  list-style:none;
}

summary::-webkit-details-marker {
  display:none;
}

summary h3 {
  min-width:0;
  font-size:clamp(23px,3.4vw,48px);
  font-weight:400;
  letter-spacing:-.045em;
  line-height:1.15;
}

summary .number {
  font-size:12px;
  color:var(--muted);
  width:30px;
  flex-shrink:0;
}

.plus {
  flex-shrink:0;
  margin-left:auto;
  font-size:32px;
  font-weight:300;
  transition:transform .2s;
}

details[open] .plus {
  transform:rotate(45deg);
}

details[open] summary h3,summary:hover h3 {
  color:var(--accent);
}

.service-body {
  padding:0 10px 30px 70px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8%;
}

.service-body p {
  font-size:15px;
}

.service-body .tags {
  color:var(--muted);
  font-size:14px;
}

.work {
  background:#e8e7e2;
}

.work-grid {
  display:grid;
  grid-template-columns:1.25fr .8fr;
  gap:75px 7%;
}

.project .image-wrap {
  overflow:hidden;
  background:#d0cfca;
}

.project img {
  height:100%;
  object-fit:cover;
  transition:transform .7s;
}

.project:hover img {
  transform:scale(1.025);
}

.project-large .image-wrap {
  aspect-ratio:4/5;
}

.project-offset {
  margin-top:180px;
}

.project-offset .image-wrap {
  aspect-ratio:3/4;
}

.project-wide {
  grid-column:1/-1;
}

.project-wide .image-wrap {
  aspect-ratio:2.2;
}

.project-wide img {
  object-position:50% 32%;
}

.project figcaption {
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:baseline;
  margin-top:17px;
}

.project h3 {
  font-size:24px;
  font-weight:400;
  letter-spacing:-.03em;
}

.project figcaption span {
  font-size:11px;
  letter-spacing:.06em;
  text-align:right;
}

.editorial {
  background:var(--ink);
  color:var(--paper);
  overflow:hidden;
  padding-top:80px;
  padding-bottom:55px;
}

.editorial>.eyebrow {
  color:#bbb;
}

.editorial-words {
  padding:50px 0;
}

.editorial-words p {
  font-size:clamp(55px,12.6vw,190px);
  line-height:1;
  letter-spacing:-.065em;
}

.editorial-words p:nth-child(2) {
  padding-left:9%;
  color:#bda3f3;
}

.editorial-words p:nth-child(3) {
  text-align:right;
}

.editorial-footer {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  border-top:1px solid #555;
  padding-top:30px;
}

.editorial-footer>span {
  font-size:70px;
  line-height:1;
}

.editorial-footer p {
  font-size:14px;
}

.events-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9%;
  align-items:center;
  margin-top:35px;
}

.events-grid img {
  aspect-ratio:4/5;
  object-fit:cover;
  object-position:50% 35%;
}

.events-copy h2 {
  font-size:clamp(40px,4.8vw,72px);
  margin:22px 0 30px;
}

.contact {
  background:var(--accent);
  color:white;
  padding-bottom:70px;
}

.contact .section-label {
  border-color:#ffffff50;
}

.contact-intro {
  margin:50px 0 20px;
  font-size:clamp(17px,2vw,26px);
}

.contact h2 {
  font-size:clamp(64px,13.5vw,210px);
  letter-spacing:-.07em;
  line-height:1.1;
}

.contact h2 a {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.contact h2 span {
  font-size:.65em;
}

.contact h2 a:hover {
  color:#ddcef8;
}

.contact-links {
  display:flex;
  justify-content:space-between;
  gap:25px;
  border-top:1px solid #ffffff50;
  padding-top:25px;
  margin-top:45px;
  font-size:clamp(14px,1.7vw,24px);
}

.contact-links a:first-child {
  overflow-wrap:anywhere;
}

.site-footer {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:16px var(--space);
  border-top:1px solid var(--line);
}

footer p,footer>a:last-child {
  font-size:12px;
}

.footer-credits {
  min-width:0;
  text-align:center;
  line-height:1.5;
}

.footer-credits a {
  text-decoration:underline;
  text-underline-offset:3px;
}

@media(max-width:760px) {
  .footer-credits {
    order:3;
    width:100%;
    text-align:left;
  }
}

footer .wordmark {
  font-size:32px;
}

footer .wordmark span {
  font-size:8px;
  letter-spacing:2px;
}

/* Content stays visible without JS or if animation support fails. */
.motion .reveal {
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s ease,transform .7s ease;
}

.motion .reveal.is-visible {
  opacity:1;
  transform:none;
}

@media(min-width:1700px) {
  .section {
    padding-left:max(var(--space),calc((100vw - 1550px)/2));
    padding-right:max(var(--space),calc((100vw - 1550px)/2));
  }
}

@media(max-width:1000px) {
  .header nav {
    gap:22px;
  }
  .hero {
    min-height:800px;
  }
  .about-grid {
    gap:6%;
    grid-template-columns:1fr 1fr;
  }
  .section {
    padding-top:75px;
    padding-bottom:75px;
  }
  .services {
    padding-top:15px;
  }
  .events-grid {
    gap:6%;
  }
  .project-offset {
    margin-top:100px;
  }
  .circle-link {
    width:130px;
    height:130px;
  }
}

@media(max-width:760px) {
  html {
    scroll-padding-top:25px;
  }
  .header {
    height:84px;
  }
  .wordmark {
    font-size:34px;
  }
  .header nav {
    gap:12px;
    font-size:12px;
  }
  .header {
    flex-wrap:wrap;
  }
  .header:has(.menu-toggle[hidden]) {
    height:auto;
    min-height:96px;
    gap:12px;
    padding-top:15px;
    padding-bottom:15px;
  }
  .menu-toggle:not([hidden]) {
    display:block;
  }
  .header nav[data-mobile] {
    display:none;
  }
  .header nav[data-mobile].is-open {
    display:flex;
    position:fixed;
    inset:84px 0 0;
    background:var(--ink);
    padding:50px var(--space);
    flex-direction:column;
    gap:18px;
    font-size:32px;
    overflow:auto;
  }
  .header.menu-open {
    position:fixed;
    background:var(--ink);
  }
  body.menu-open {
    overflow:hidden;
  }
  .hero {
    min-height:760px;
    min-height:max(730px,100svh);
    padding-top:115px;
  }
  .hero-image {
    object-position:60% 45%;
  }
  .hero-top span:last-child {
    display:none;
  }
  .hero h1 {
    font-size:clamp(2.75rem,12.5vw,95px);
  }
  .hero-copy {
    padding-top:200px;
  }
  .hero-bottom p {
    font-size:12px;
    max-width:210px;
  }
  .circle-link {
    width:105px;
    height:105px;
    flex-shrink:0;
    font-size:12px;
    gap:8px;
  }
  .circle-link>span:last-child {
    font-size:23px;
  }
  .hero-bottom {
    gap:14px;
  }
  .section {
    padding-top:55px;
    padding-bottom:55px;
  }
  .section-label {
    font-size:10px;
    gap:18px;
  }
  .section-label span:last-child {
    text-align:right;
    max-width:47%;
  }
  .about-grid,.events-grid {
    grid-template-columns:1fr;
    gap:38px;
  }
  .about-copy h2 {
    font-size:40px;
  }
  .about-photo {
    max-width:90%;
    margin-left:auto;
  }
  .about-photo img {
    max-height:620px;
  }
  .section-heading {
    display:block;
    margin:22px 0 32px;
  }
  .section-heading p {
    margin-top:20px;
  }
  .services {
    padding-top:0;
  }
  summary {
    gap:12px;
    padding:24px 0;
  }
  summary .number {
    width:22px;
  }
  summary h3 {
    min-width:0;
    font-size:25px;
  }
  .service-body {
    padding:0 0 25px 34px;
    grid-template-columns:1fr;
    gap:16px;
  }
  .work-grid {
    grid-template-columns:1fr;
    gap:38px;
  }
  .project-offset {
    margin:0 0 0 12%;
  }
  .project-wide {
    grid-column:auto;
  }
  .project-wide .image-wrap {
    aspect-ratio:4/5;
  }
  .project-wide img {
    object-position:center;
  }
  .project h3 {
    font-size:22px;
  }
  .project figcaption span {
    font-size:10px;
  }
  .editorial-words {
    padding:45px 0;
  }
  .editorial-words p {
    font-size:clamp(45px,12vw,90px);
  }
  .events-copy h2 {
    font-size:44px;
  }
  .contact-intro {
    margin-top:25px;
  }
  .contact h2 {
    font-size:clamp(55px,14vw,106px);
  }
  .contact-links {
    flex-direction:column;
    margin-top:30px;
    gap:15px;
  }
  .site-footer {
    flex-wrap:wrap;
    gap:8px 16px;
    padding-top:12px;
    padding-bottom:12px;
  }
  footer p {
    order:3;
    width:100%;
  }
}

@media(prefers-reduced-motion:reduce) {
  .hero-image {
    opacity:1;
    transform:none;
  }
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    animation:none!important;
    transition:none!important;
  }
  .motion .reveal {
    opacity:1;
    transform:none;
  }
}

/* Keep small editorial labels readable on handheld screens. */
.brand-logo {
  display:block;
  width:150px;
  flex-shrink:0;
}

.brand-logo img {
  filter:url(#logo-black-transparent);
}

.footer-logo {
  position:relative;
  width:112px;
  height:48px;
  overflow:hidden;
}

.footer-logo img {
  position:absolute;
  width:176px;
  max-width:none;
  height:176px;
  left:-32px;
  top:-62px;
}

.back-to-top {
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:44px;
}

.site-arrow {
  display:inline-flex;
  width:1em;
  height:1em;
  flex-shrink:0;
  vertical-align:-.12em;
  align-items:center;
  justify-content:center;
}

.site-arrow svg {
  display:block;
  width:100%;
  height:100%;
}

.site-arrow-up svg {
  transform:rotate(-45deg);
}

.site-arrow-down svg {
  transform:rotate(135deg);
}

.back-to-top span {
  display:inline-block;
  transition:transform .25s ease;
}

.back-to-top:hover span,.back-to-top:focus-visible span {
  transform:translateY(-4px);
}

@media(prefers-reduced-motion:no-preference) {
  .hero-copy h1 {
    animation:brand-arrive 1s cubic-bezier(.2,.7,.2,1) both;
  }
  .hero-copy h1 em {
    display:inline-block;
    animation:brand-arrive 1.2s .15s cubic-bezier(.2,.7,.2,1) both;
  }
  .site-footer.is-visible .footer-logo img {
    animation:brand-arrive .85s cubic-bezier(.2,.7,.2,1) both;
  }
}

@keyframes brand-arrive {
  from { opacity:0; transform:translateY(14px); }
  to { opacity:1; transform:translateY(0); }
}

.logo-filters {
  position:absolute;
  pointer-events:none;
}

.header {
  background:var(--paper);
  color:var(--ink);
  border-bottom:1px solid var(--line);
}

/* Frame the original artwork without changing its proportions or source. */
.header-logo {
  position:relative;
  width:140px;
  height:80px;
  overflow:hidden;
}

.header-logo img {
  position:absolute;
  width:220px;
  max-width:none;
  height:220px;
  left:-40px;
  top:-78px;
}

@media(max-width:760px) {
  .header-logo {
    width:120px;
    height:72px;
  }
  .header-logo img {
    width:200px;
    height:200px;
    left:-40px;
    top:-72px;
  }
  .header.menu-open {
    background:var(--paper);
    color:var(--ink);
  }
  .header nav[data-mobile].is-open {
    color:var(--paper);
  }
}

.project-concept {
  grid-column:1/-1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7%;
  align-items:center;
}

.project-concept .image-wrap {
  aspect-ratio:2/3;
}

.project-concept figcaption {
  display:flex;
  flex-direction:column;
  gap:14px;
}

.project-concept h3 {
  font:italic clamp(40px,6vw,90px)/1.1 var(--serif);
}

@media(max-width:760px) {
  .project-concept {
    display:block;
  }
  .project-concept figcaption {
    flex-direction:row;
    align-items:baseline;
  }
  .project-concept h3 {
    font:400 22px/1.6 var(--sans);
  }
}

.section-label,.about-photo figcaption,.project figcaption span {
  font-size:.75rem;
}

.hero-bottom p,.service-body p {
  font-size:1rem;
}

.hero-bottom p {
  max-width:42ch;
}

@media(max-width:760px) {
  .hero-bottom p {
    font-size:.875rem;
    max-width:210px;
  }
  .hero-image {
    object-position:60% 45%;
  }
  summary h3 {
    font-size:clamp(1.25rem,6vw,1.5625rem);
  }
}


/* Featured corporate identity and direct contact channels. */
.project-concept { padding:40px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.project-concept figcaption { align-items:flex-start; gap:22px; }
.project-concept h3 { font:400 clamp(38px,4.5vw,70px)/1.06 var(--sans); letter-spacing:-.05em; }
.project-concept figcaption p { font-size:16px; color:var(--muted); max-width:42ch; }
.project-concept figcaption>.eyebrow { color:var(--accent); text-align:left; }
.project-concept .text-link { width:100%; margin-top:0; }
.contact-links { display:grid; grid-template-columns:repeat(auto-fit,minmax(min(100%,260px),1fr)); gap:32px; }
.contact-method { display:flex; flex-direction:column; gap:12px; padding:16px 0; min-width:0; }
.contact-method-title { display:flex; justify-content:space-between; gap:16px; font-size:clamp(24px,2.5vw,38px); letter-spacing:-.03em; }
.contact-method-detail { font-size:14px; overflow-wrap:anywhere; }
.contact-method:hover { color:#ddcef8; }
@media(max-width:760px) {
  .project-concept figcaption { flex-direction:column; align-items:flex-start; margin-top:28px; }
  .project-concept h3 { font-size:42px; }
  .contact-links { gap:12px; }
  .contact-method+.contact-method { border-top:1px solid #ffffff50; }
}
