:root{
  --bg: #f6f5f2;
  --ink: rgba(20,18,24,.92);
  --muted: rgba(20,18,24,.60);
  --line: rgba(20,18,24,.10);
  --max: 860px;
  --pad: 22px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  letter-spacing: .1px;
}

img, video{
  display: block;
  max-width: 100%;
  height: auto;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: .85; }

/* header */
.site-header{ border-bottom: 1px solid var(--line); }

.top{ background: rgba(246,245,242,.92); }

.top__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: lowercase;
}

.nav{
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: lowercase;
}

.header-strip{
  width: 100%;
  overflow: hidden;
}

.header-strip img{
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
}

/* full-bleed */
.full-bleed{
  width: 100%;
  overflow: hidden;
}

.full-bleed img{
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
}

/* layout container */
.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px var(--pad) 90px;
}

/* mail */
.mail{
  padding-top: 44px;
}

.mail-row{
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 26px;
  align-items: center;
  max-width: 760px;
}

.mail-img{
  width: 100%;
  max-width: 360px;
}

.mail-copy{ max-width: 42ch; }

.mail-copy p{ margin: 0 0 10px; }

/* about */
.about{
  padding-top: 70px;
}

.about-grid{
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 40px;
  align-items: start;
}

/* editorial crop (Option B) */
.about-image{
  width: 100%;
  max-width: 360px;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

/* text */
.text{
  max-width: 62ch;
  font-size: 15px;
}

.text p{ margin: 0 0 14px; }

/* links + footer */
.link{
  display: inline-block;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.footer{
  margin-top: 70px;
  font-size: 13px;
  color: var(--muted);
}

/* mobile */
@media (max-width: 700px){
  .header-strip img{ height: 110px; }
  .full-bleed img{ height: 360px; }

  .mail-row{ grid-template-columns: 1fr; }
  .mail-img{ margin: 0 auto; }

  .about-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-image{
    margin: 0 auto;
  }
}

.page{ padding-top: 44px; }

h1{
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: lowercase;
  margin: 0 0 22px;
}

.card{
  border-top: 1px solid var(--line);
  padding-top: 44px;
}

.nav a.active{
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 6px;
}

